• Модуль: rest
  • Путь к файлу: ~/bitrix/modules/rest/classes/general/rest.php
  • Класс: IRestService
  • Вызов: IRestService::getNavData
static function getNavData($start, $bORM = false)
{
	if($start >= 0)
	{
		return ($bORM
			? array(
				'limit' => static::LIST_LIMIT,
				'offset' => intval($start)
			)
			: array(
				'nPageSize' => static::LIST_LIMIT,
				'iNumPage' => intval($start / static::LIST_LIMIT) + 1
			)
		);
	}
	else
	{
		return ($bORM
			? array(
				'limit' => static::LIST_LIMIT,
			)
			: array(
				'nTopCount' => static::LIST_LIMIT,
			)
		);
	}
}