41 lines
1.4 KiB
PHP
41 lines
1.4 KiB
PHP
<?php
|
|
/*************************************************************************************/
|
|
/* */
|
|
/* Thelia 2 PayZen Embedded payment module */
|
|
/* */
|
|
/* Copyright (c) Lyra Networks */
|
|
/* */
|
|
/* For the full copyright and license information, please view the LICENSE.txt */
|
|
/* file that was distributed with this source code. */
|
|
/* */
|
|
/*************************************************************************************/
|
|
|
|
namespace Beds24\Form;
|
|
|
|
use Beds24\Beds24;
|
|
use Thelia\Form\BaseForm;
|
|
|
|
/**
|
|
* PayZen Embedded payment module configuration form
|
|
*
|
|
* @author Franck Allimant <franck@cqfdev.fr>
|
|
*/
|
|
class SearchForm extends BaseForm
|
|
{
|
|
use Beds24\Beds24FormFieldsTrait;
|
|
|
|
/**
|
|
* @return void|null
|
|
* @throws \Exception
|
|
*/
|
|
protected function buildForm()
|
|
{
|
|
$this->addFieldsToForm($this->getRequest(), $this->formBuilder);
|
|
}
|
|
|
|
public function getName()
|
|
{
|
|
return 'beds24_search_form';
|
|
}
|
|
}
|