• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/sitebutton/manager.php
  • Класс: Bitrix\Crm\SiteButton\Manager
  • Вызов: Manager::isInUse
static function isInUse()
{
	$resultDb = Internals\ButtonTable::getList(array(
		'select' => array('ID'),
		'limit' => 1
	));
	if ($resultDb->fetch())
	{
		return true;
	}
	else
	{
		return false;
	}
}