CBPDocumentService::getAllowableOperations

  1. Bitrix24 API (v. 23.675.0)
  2. bizproc
  3. CBPDocumentService
  4. getAllowableOperations
  • Модуль: bizproc
  • Путь к файлу: ~/bitrix/modules/bizproc/classes/general/documentservice.php
  • Класс: CBPDocumentService
  • Вызов: CBPDocumentService::getAllowableOperations
public function getAllowableOperations($parameterDocumentType)
{
	[$moduleId, $entity, $documentType] = CBPHelper::ParseDocumentId($parameterDocumentType);

	if ($moduleId)
	{
		CModule::IncludeModule($moduleId);
	}

	if (class_exists($entity))
		return call_user_func_array(array($entity, "GetAllowableOperations"), array($documentType));

	return array();
}

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