• Модуль: intranet
  • Путь к файлу: ~/bitrix/modules/intranet/lib/controller/leftmenu.php
  • Класс: BitrixIntranetControllerLeftMenu
  • Вызов: LeftMenu::saveItemsSortAction
public function saveItemsSortAction()
{
	if (!isset($_POST['items']))
	{
		return null;
	}

	CUserOptions::SetOption(
		'intranet',
		$this->getItemsSortOptionName(),
		self::convertItemsSortFromJSToDB($_POST['items'], $_POST['version'])
	);

	if (isset($_POST['firstItemLink']))
	{
		CUserOptions::SetOption('intranet', 'left_menu_first_page_' . SITE_ID, $_POST['firstItemLink']);
	}
}