| 123456789101112131415161718192021222324252627 |
- <?php
- namespace ThurData\Servers\KerioEmail\Core\UI\Widget\Buttons\DropdawnButtonWrappers;
- use ThurData\Servers\KerioEmail\Core\UI\Interfaces\DropdownItemInterface;
- /**
- * base button controller
- *
- * @autor ThurData <info@thrudata.ch>
- */
- class ButtonDropdown extends \ThurData\Servers\KerioEmail\Core\UI\Widget\Buttons\ButtonBase
- {
- protected $id = 'dropdownButton';
- protected $class = ['lu-btn lu-btn--primary'];
- protected $icon = 'lu-zmdi lu-zmdi-plus';
- protected $title = 'dropdownButton';
- protected $htmlAttributes = [
- 'href' => 'javascript:;',
- 'data-toggle' => 'lu-tooltip',
- ];
-
- protected $vueComponent = true;
- protected $defaultVueComponentName = 'mg-dropdawn-btn-wrapper';
-
-
- }
|