$params = Array(
"DISPLAY_DATE" => "Y",
...
"SEF_FOLDER" => "/news/",
"SEF_URL_TEMPLATES" => Array(
"news" => "/news/",
"section" => "",
"detail" => "#ELEMENT_ID#/"
)
);
$key = false;
if($USER->IsAdmin()) $key = true;
else{
$filter = Array("ID" => $USER->GetID(), "GROUPS_ID" => Array(6));
$rsUsers = CUser::GetList(($by="personal_country"), ($order="desc"), $filter);
while($rsUsers->NavNext()) : $key = true; endwhile;
}
if($key) $params["CHECK_DATES"] = "N";
$APPLICATION->IncludeComponent(
"bitrix:news",
"web20",
$params
);
|