Bitrix-D7 23.9
 
Загрузка...
Поиск...
Не найдено
settingsbutton.php
1<?php
2
3namespace Bitrix\UI\Buttons;
4
5class SettingsButton extends Button
6{
10 protected function getDefaultParameters()
11 {
12 return [
13 'icon' => Icon::SETTING,
14 'color' => Color::LIGHT_BORDER,
15 'dropdown' => false,
16 ];
17 }
18
22 public static function getJsClass()
23 {
24 return 'BX.UI.Button';
25 }
26}