int CLQuestion::GetCount( array arFilter = Array() );
The GetCount method returns the number of questions according to conditions stipulated by the filter.
| Parameter | Description |
|---|---|
| arFilter | The array array("filtered field"=>"filter
value" [, ...]). Filter description is available in CLQuestion::GetList. By default, questions are not filtered. |
The method returns the number of lessons.
<?
if (CModule::IncludeModule("learning"))
{
$COURSE_ID = 97;
$cnt = CLQuestion::GetCount(Array("ACTIVE" => "Y", "COURSE_ID" => $COURSE_ID));
echo "Number of questions: ".$cnt;
}
?>
<?
if (CModule::IncludeModule("learning"))
{
$LESSON_ID = 426;
$cnt = CLQuestion::GetCount(Array("LESSON_ID" => $LESSON_ID));
echo "Number of questions: ".$cnt;
}
?>| © 2001-2007 Bitrix | Bitrix Site Manager - Content Management & Portal Solutions |