• Модуль: mobileapp
  • Путь к файлу: ~/bitrix/modules/mobileapp/lib/designer/configmap.php
  • Класс: BitrixMobileAppDesignerConfigMap
  • Вызов: ConfigMap::getParamDescription
public function getParamDescription($name, $type)
{
	if(is_array($type))
	{
		$typeParam = ParameterType::getDesc($type["type"]);
		$desc = array_merge($type,$typeParam);
	}
	else
	{
		$desc = ParameterType::getDesc($type);
	}

	if (!self::isGroup($name))
	{
		$desc["parent"] = $this->getGroupByParam($name);
	}

	return $desc;
}