| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <?php
- namespace ThurData\Servers\KerioEmail\App\UI\Client\Ressource\Forms;
- use ThurData\Servers\KerioEmail\App\Libs\Product\ProductManager;
- use ThurData\Servers\KerioEmail\App\Libs\Kerio\Components\Api\Soap\Repository\ClassOfServices;
- use ThurData\Servers\KerioEmail\App\Traits\FormExtendedTrait;
- use ThurData\Servers\KerioEmail\App\UI\Admin\Custom\Forms\SortedFieldForm;
- use ThurData\Servers\KerioEmail\App\UI\Admin\Custom\Sections\RowSection;
- use ThurData\Servers\KerioEmail\App\UI\Client\Ressource\Providers\RessourceDataProvider;
- use ThurData\Servers\KerioEmail\App\UI\Client\Ressource\Providers\EditRessourceDataProvider;
- use ThurData\Servers\KerioEmail\App\UI\Client\Ressource\Sections\EditAdditionalSection;
- use ThurData\Servers\KerioEmail\App\UI\Client\Ressource\Sections\EditGeneralSection;
- use ThurData\Servers\KerioEmail\Core\UI\Interfaces\ClientArea;
- use ThurData\Servers\KerioEmail\Core\UI\Widget\Forms\Fields\Hidden;
- use ThurData\Servers\KerioEmail\Core\UI\Widget\Forms\Fields\Select;
- use ThurData\Servers\KerioEmail\Core\UI\Widget\Forms\Fields\Text;
- use ThurData\Servers\KerioEmail\Core\UI\Widget\Forms\FormConstants;
- use ThurData\Servers\KerioEmail\Core\UI\Widget\Forms\Sections\HalfPageSection;
- use ThurData\Servers\KerioEmail\Core\UI\Widget\Forms\Sections\InputGroup;
- use ThurData\Servers\KerioEmail\Core\UI\Widget\Modals\BaseEditModal;
- use ThurData\Servers\KerioEmail\Core\UI\Widget\Forms\Fields\InputGroupElements;
- /**
- *
- * Created by PhpStorm.
- * User: Tomasz Bielecki ( tomasz.bi@thurdata.com )
- * Date: 18.09.19
- * Time: 09:29
- * Class EditRessourceForm
- */
- class EditRessourceForm extends SortedFieldForm implements ClientArea
- {
- use FormExtendedTrait;
- protected $id = 'editRessourceForm';
- protected $name = 'editRessourceForm';
- protected $title = 'editRessourceForm';
- public function initContent()
- {
- $this->setFormType(FormConstants::UPDATE);
- $this->setProvider(new EditRessourceDataProvider());
- $this->initFields();
- $this->loadDataToForm();
- }
- public function initFields()
- {
- $this->addSection(new EditGeneralSection());
- $this->addSection(new EditAdditionalSection());
- }
- }
|