| Current Path : /var/www/element/data/www/revenuestory.ru/bitrix/modules/ui/lib/buttons/ |
| Current File : /var/www/element/data/www/revenuestory.ru/bitrix/modules/ui/lib/buttons/settingsbutton.php |
<?php
namespace Bitrix\UI\Buttons;
class SettingsButton extends Button
{
/**
* @return array
*/
protected function getDefaultParameters()
{
return [
'icon' => Icon::SETTING,
'color' => Color::LIGHT_BORDER,
'dropdown' => false,
];
}
/**
* @return string
*/
public static function getJsClass()
{
return 'BX.UI.Button';
}
}