CBPHelper::renderControlSelectorButton

  1. Bitrix24 API (v. 23.675.0)
  2. bizproc
  3. CBPHelper
  4. renderControlSelectorButton
  • Модуль: bizproc
  • Путь к файлу: ~/bitrix/modules/bizproc/classes/general/helper.php
  • Класс: CBPHelper
  • Вызов: CBPHelper::renderControlSelectorButton
static function renderControlSelectorButton($controlId, $baseType = 'string', array $options = null)
{
	$selectorProps = BitrixMainWebJson::encode(array(
		'controlId' => $controlId,
		'baseType' => $baseType
	));

	$mode = isset($options['mode']) ? $options['mode'] : '';
	$additional = array();

	if (isset($options['style']))
		$additional[] = 'style="'.htmlspecialcharsbx($options['style']).'"';

	if (isset($options['title']))
		$additional[] = 'title="'.htmlspecialcharsbx($options['title']).'"';

	return '';
}

Добавить комментарий