• Модуль: bizproc
  • Путь к файлу: ~/bitrix/modules/bizproc/lib/controller/globalfield.php
  • Класс: BitrixBizprocControllerGlobalField
  • Вызов: GlobalField::reloadAction
public function reloadAction($mode, $documentTypeSigned): array
{
	$documentType = CBPDocument::unSignDocumentType($documentTypeSigned);

	switch ($mode)
	{
		case 'variable':
			return ['list' => BitrixBizprocWorkflowTypeGlobalVar::getAll($documentType)];
		case 'constant':
			return ['list' => BitrixBizprocWorkflowTypeGlobalConst::getAll($documentType)];
		default:
			return [
				'error' => BitrixMainLocalizationLoc::getMessage(
					'BIZPROC_CONTROLLER_GLOBALFIELD_MODE_NOT_DEFINED'
				),
			];
	}
}