CBPDocumentService::getAllowableUserGroups

  1. Bitrix24 API (v. 23.675.0)
  2. bizproc
  3. CBPDocumentService
  4. getAllowableUserGroups
  • Модуль: 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();
}

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