...Человеческий поиск в разработке...
- Модуль: bizproc
- Путь к файлу: ~/bitrix/modules/bizproc/classes/general/documentservice.php
- Класс: CBPDocumentService
- Вызов: CBPDocumentService::getDocumentTypeCaption
public function getDocumentTypeCaption($parameterDocumentType) { [$moduleId, $entity, $documentType] = CBPHelper::ParseDocumentId($parameterDocumentType); if ($moduleId) { CModule::IncludeModule($moduleId); } if (class_exists($entity)) { if (method_exists($entity, 'getDocumentTypeCaption')) { return call_user_func_array([$entity, 'getDocumentTypeCaption'], [$documentType]); } } return $this->getDocumentTypeName($parameterDocumentType); }