| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <?php
- namespace ModulesGarden\Servers\KerioEmail\App\UI\Client\Ressource\Sections;
- use ModulesGarden\Servers\KerioEmail\App\Traits\FormExtendedTrait;
- use ModulesGarden\Servers\KerioEmail\App\UI\Admin\Custom\Sections\FreeFieldsSection;
- use ModulesGarden\Servers\KerioEmail\Core\UI\Widget\Forms\Fields\Text;
- /**
- *
- * Created by PhpStorm.
- * User: Tomasz Bielecki ( tomasz.bi@modulesgarden.com )
- * Date: 12.11.19
- * Time: 13:52
- * Class EditAdditionalSection
- */
- class EditAdditionalSection extends FreeFieldsSection
- {
- protected $id = 'editAdditionalSection';
- protected $name = 'editAdditionalSection';
- use FormExtendedTrait;
- public function initContent()
- {
- $this->generateDoubleSection([new Text('contact'), new Text('site')]);
- $this->generateDoubleSection([new Text('contact_mail'), new Text('contact_phone')]);
- $this->generateDoubleSection([new Text('street'), new Text('building')]);
- $this->generateDoubleSection([new Text('floor'), new Text('room')]);
- $this->generateDoubleSection([new Text('post_code'), new Text('town')]);
- $this->generateDoubleSection([new Text('state'), new Text('county')]);
- }
- }
|