| 1234567891011121314151617181920212223 |
- <?php
- namespace ModulesGarden\Servers\ProxmoxCloudVps\Core\UI\Widget\Buttons;
- use \ModulesGarden\Servers\ProxmoxCloudVps\Core\UI\Builder\BaseContainer;
- /**
- * base button controller
- *
- * @author Sławomir Miśkowicz <slawomir@modulesgarden.com>
- */
- class ButtonBase extends BaseContainer
- {
- protected $id = 'ButtonBase';
- protected $name = 'ButtonBase';
- protected $class = ['lu-btn lu-btn-circle lu-btn-outline lu-btn-inverse lu-btn-success lu-btn-icon-only'];
- protected $icon = 'lu-zmdi lu-zmdi-plus';
- protected $title = 'ButtonBase';
- protected $htmlAttributes = [
- 'href' => 'javascript:;',
- 'data-toggle' => 'lu-tooltip'
- ];
- }
|