| 12345678910111213141516171819202122232425262728 |
- <?php
- namespace ModulesGarden\ProxmoxAddon\App\UI\CloudInitScriptCreate\Sections;
- use ModulesGarden\ProxmoxAddon\Core\UI\Widget\Forms\Fields\Hidden;
- use ModulesGarden\ProxmoxAddon\Core\UI\Widget\Forms\Fields\Text;
- use ModulesGarden\ProxmoxAddon\Core\UI\Widget\Forms\Fields\Textarea;
- use ModulesGarden\ProxmoxAddon\Core\UI\Widget\Forms\Sections\BoxSection;
- class GeneralSection extends BoxSection
- {
- public function initContent()
- {
- //id
- $field = new Hidden("id");
- $this->addField($field);
- //name
- $field = new Text("name");
- $field->notEmpty();
- $field->setLabelWidth(12);
- $this->addField($field);
- //script
- $field = new Textarea("script");
- $field->notEmpty();
- $field->setLabelWidth(12);
- $this->addField($field);
- }
- }
|