• Модуль: learning
  • Путь к файлу: ~/bitrix/modules/learning/classes/general/attempt.php
  • Класс: CAllTestAttempt
  • Вызов: CAllTestAttempt::GetCount
static function GetCount($TEST_ID, $STUDENT_ID)
{
	global $DB;

	$strSql =
	"SELECT COUNT(*) as C ".
	"FROM b_learn_attempt A ".
	"WHERE A.TEST_ID = '".intval($TEST_ID)."' AND A.STUDENT_ID = '".intval($STUDENT_ID)."'";

	$res = $DB->Query($strSql, false, "File: ".__FILE__."
Line: ".__LINE__); $res_cnt = $res->Fetch(); return intval($res_cnt["C"]); }