AddOptions.php 690 B

123456789101112131415161718192021
  1. <?php
  2. namespace ModulesGarden\Servers\ProxmoxCloudVps\Packages\WhmcsService\UI\ConfigurableOption\Modals;
  3. use ModulesGarden\Servers\ProxmoxCloudVps\Core\UI\Interfaces\AdminArea;
  4. use ModulesGarden\Servers\ProxmoxCloudVps\Core\UI\Widget\Modals\BaseEditModal;
  5. use ModulesGarden\Servers\ProxmoxCloudVps\Packages\WhmcsService\UI\ConfigurableOption\Forms\AddOptions as AddOptionsForm;
  6. class AddOptions extends BaseEditModal implements AdminArea
  7. {
  8. protected $id = 'addOptionsModal';
  9. protected $name = 'addOptionsModal';
  10. protected $title = 'addOptionsModalTitle';
  11. public function initContent()
  12. {
  13. $form = new AddOptionsForm();
  14. $this->addForm($form);
  15. }
  16. }