...Человеческий поиск в разработке...
- Модуль: bizproc
- Путь к файлу: ~/bitrix/modules/bizproc/classes/general/documentservice.php
- Класс: CBPDocumentService
- Вызов: CBPDocumentService::getAllowableUserGroups
public function getAllowableUserGroups($parameterDocumentType, $withExtended = false) { [$moduleId, $entity, $documentType] = CBPHelper::ParseDocumentId($parameterDocumentType); if ($moduleId) { CModule::IncludeModule($moduleId); } if (class_exists($entity)) { $result = call_user_func_array(array($entity, "GetAllowableUserGroups"), array($documentType, $withExtended)); $result1 = array(); foreach ($result as $key => $value) $result1[mb_strtolower($key)] = $value; return $result1; } return array(); }