• Модуль: tasks
  • Путь к файлу: ~/bitrix/modules/tasks/lib/access/model/templatemodel.php
  • Класс: BitrixTasksAccessModelTemplateModel
  • Вызов: TemplateModel::isRegular
public function isRegular(): bool
{
	if (is_null($this->replicate))
	{
		$template = $this->loadTemplate();
		$this->replicate = ($template['REPLICATE'] === 'Y');
	}
	return $this->replicate;
}