|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
function getRandomArticles($IBLOCK_ID, $count = 4){ $res = CIBlockElement::GetList ( Array("RAND" => "ASC"), Array("IBLOCK_ID" => $IBLOCK_ID, "ACTIVE_DATE" => "Y", "ACTIVE" => "Y"), false, Array ("nTopCount" => $count), Array("ID", "NAME", "DATE_ACTIVE_FROM", "DETAIL_PAGE_URL") ); while ($ob = $res->GetNextElement()) { $arFields[] = $ob->GetFields(); } return $arFields; } |
