• Модуль: subscribe
  • Путь к файлу: ~/bitrix/modules/subscribe/classes/general/posting.php
  • Класс: CPostingGeneral
  • Вызов: CPostingGeneral::GetRubricList
static function GetRubricList($ID)
{
	global $DB;
	$ID = intval($ID);

	$strSql = "
		SELECT
			R.ID
			,R.NAME
			,R.SORT
			,R.LID
			,R.ACTIVE
		FROM
			b_list_rubric R
			,b_posting_rubric PR
		WHERE
			R.ID=PR.LIST_RUBRIC_ID
			AND PR.POSTING_ID=".$ID."
		ORDER BY
			R.LID, R.SORT, R.NAME
	";

	return $DB->Query($strSql, false, "File: ".__FILE__."
Line: ".__LINE__); }