...Человеческий поиск в разработке...
- Модуль: 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; }