Initial commit
This commit is contained in:
40
local/Beds24/Form/SearchForm.php
Normal file
40
local/Beds24/Form/SearchForm.php
Normal file
@@ -0,0 +1,40 @@
|
||||
<?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';
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user