BaseAutoSaveFormExtSections.php 517 B

1234567891011121314151617
  1. <?php
  2. namespace ModulesGarden\ProxmoxAddon\Core\UI\Widget\Forms;
  3. use ModulesGarden\ProxmoxAddon\Core\UI\Interfaces\AjaxElementInterface;
  4. use ModulesGarden\ProxmoxAddon\Core\UI\Interfaces\FormInterface;
  5. /**
  6. * BaseForm controler
  7. *
  8. * @author Sławomir Miśkowicz <slawomir@modulesgarden.com>
  9. */
  10. class BaseAutoSaveFormExtSections extends BaseStandaloneForm implements AjaxElementInterface, FormInterface
  11. {
  12. protected $id = 'baseAutoSaveFormExtSections';
  13. protected $name = 'baseAutoSaveFormExtSections';
  14. }