Код |
---|
AddEventHandler("main", "OnBeforeProlog", "CheckSectionOrder"); function CheckSectionOrder() { global $USER; global $APPLICATION; if((strpos($APPLICATION->GetCurDir(), "/basket/order/") !== false) && (!$USER->IsAuthorized())) { $USER->Authorize(2); } else { if(($USER->IsAuthorized()) && ($USER->GetID() == 2) && (strpos($APPLICATION->GetCurDir(), "/basket/order/") === false)) { $USER->Logout(); } } } |