• Модуль: ui
  • Путь к файлу: ~/bitrix/modules/ui/lib/buttons/buttonattributes.php
  • Класс: BitrixUIButtonsButtonAttributes
  • Вызов: ButtonAttributes::removeClass
public function removeClass($className)
{
	if (!isset($this['class']))
	{
		$this['class'] = [];
	}

	$index = array_search($className, $this['class'], true);
	if ($index !== false)
	{
		unset($this['class'][$index]);
	}

	return $this;
}