• Модуль: tasks
  • Путь к файлу: ~/bitrix/modules/tasks/classes/general/taskcomments.php
  • Класс: CTaskComments
  • Вызов: CTaskComments::CanRemoveComment
static function CanRemoveComment($taskId, $commentId, $userId, $arParams)
{
	$bCommentsCanBeRemoved = COption::GetOptionString('tasks', 'task_comment_allow_remove'); // there could be trouble

	if ( ! $bCommentsCanBeRemoved || !CModule::IncludeModule('forum'))
		return (false);

	return self::CheckUpdateRemoveCandidate($taskId, $commentId, $userId, $arParams);
}