• Модуль: rest
  • Путь к файлу: ~/bitrix/modules/rest/classes/general/rest.php
  • Класс: IRestService
  • Вызов: IRestService::getDescription
public function getDescription()
{
	$arMethods = get_class_methods($this);

	$arResult = array();

	foreach ($arMethods as $name)
	{
		if($name != 'getDescription')
		{
			$arResult[$name] = array($this, $name);
		}
	}

	return $arResult;
}