| 1234567891011121314151617181920212223242526 |
- <?php
- namespace ThurData\Servers\KerioEmail\App\UI\Client\Ressource\Buttons;
- use ThurData\Servers\KerioEmail\App\UI\Client\Ressource\Modals\AddRessourceModal;
- use ThurData\Servers\KerioEmail\Core\UI\Interfaces\ClientArea;
- use ThurData\Servers\KerioEmail\Core\UI\Widget\Buttons\ButtonCreate;
- /**
- *
- * Created by PhpStorm.
- * User: Tomasz Bielecki ( tomasz.bi@thurdata.com )
- * Date: 10.09.19
- * Time: 13:06
- * Class AddRessourceButton
- */
- class AddRessourceButton extends ButtonCreate implements ClientArea
- {
- protected $id = 'addRessourceButton';
- protected $title = 'addRessourceButton';
- public function initContent()
- {
- $this->initLoadModalAction(new AddRessourceModal());
- }
- }
|