• Модуль: form
  • Путь к файлу: ~/bitrix/modules/form/classes/mysql/form_cform.php
  • Класс: CForm
  • Вызов: CForm::GetFormTemplateByID
static function GetFormTemplateByID($ID, $GET_BY_SID="N")
{
	$err_mess = (CForm::err_mess())."
Function: GetFormTemplateByID
Line: "; global $DB, $strError; $where = ($GET_BY_SID=="N") ? " F.ID = '".intval($ID)."' " : " F.SID='".$DB->ForSql($ID,50)."' "; $strSql = " SELECT F.FORM_TEMPLATE FT FROM b_form F WHERE $where "; $res = $DB->Query($strSql, false, $err_mess.__LINE__); if ($arRes = $res->Fetch()) return $arRes["FT"]; else return ""; }