CBP::getRestRobots

  1. Bitrix24 API (v. 23.675.0)
  2. bizproc
  3. CBP
  4. getRestRobots
  • Модуль: bizproc
  • Путь к файлу: ~/bitrix/modules/bizproc/classes/general/runtime.php
  • Класс: CBP
  • Вызов: CBP::getRestRobots
public function getRestRobots($lang = false, $documentType = null)
{
	$result = array();
	$iterator = RestActivityTable::getList(array(
		'filter' => array('=IS_ROBOT' => 'Y')
	));

	while ($activity = $iterator->fetch())
	{
		$result[static::REST_ACTIVITY_PREFIX.$activity['INTERNAL_CODE']] = $this->makeRestRobotDescription($activity, $lang, $documentType);
	}

	return $result;
}

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