• Модуль: forum
  • Путь к файлу: ~/bitrix/modules/forum/classes/general/points.php
  • Класс: CAllForumPoints2Post
  • Вызов: CAllForumPoints2Post::GetByID
static function GetByID($ID)
{
	global $DB;

	$ID = intval($ID);
	$strSql =
		"SELECT FR.ID, FR.MIN_NUM_POSTS, FR.POINTS_PER_POST ".
		"FROM b_forum_points2post FR ".
		"WHERE FR.ID = ".$ID."";
	$db_res = $DB->Query($strSql, false, "File: ".__FILE__."
Line: ".__LINE__); if ($res = $db_res->Fetch()) { return $res; } return False; }