| 12345678910111213141516171819 |
- <?php
- namespace ThurData\Servers\KerioEmail\Core\UI\Widget\Buttons;
- /**
- * Description of Button Create
- *
- * @autor ThurData <info@thurdata.ch>
- */
- class ButtonCreate extends ButtonModal
- {
- protected $id = 'buttonCreate';
- protected $class = ['lu-btn lu-btn--primary'];
- protected $icon = 'lu-btn__icon lu-zmdi lu-zmdi-plus';
- protected $title = 'buttonCreate';
- protected $htmlAttributes = [
- 'href' => 'javascript:;'
- ];
- }
|