Код |
---|
if (!empty($_REQUEST['show']) && in_array($_REQUEST['show'], array('list', 'full')) === true) { $_SESSION['someentity_show'] = $_REQUEST['show']; } elseif (empty($_SESSION['someentity_show'])) { $_SESSION['someentity_show'] = 'list'; } $APPLICATION->IncludeComponent('...', $_SESSION['someentity_show'], ...); |