• Модуль: tasks
  • Путь к файлу: ~/bitrix/modules/tasks/lib/util/restriction/bitrix24restriction/limit/scrumlimit.php
  • Класс: BitrixTasksUtilRestrictionBitrix24RestrictionLimitScrumLimit
  • Вызов: ScrumLimit::getSidePanelId
static function getSidePanelId(int $limit = 0): string
{
	$sidePanelId = 'limit_tasks_scrum';

	if (Loader::includeModule('bitrix24'))
	{
		$limit = ($limit > 0 ? $limit : static::getLimit());

		if ($limit === 0)
		{
			$sidePanelId = 'limit_tasks_scrum_restriction';
		}
	}

	return $sidePanelId;
}