'template path' $squelettes = array( '2008'=>'squelettes/2008', '2007'=>'squelettes/2007', ); // If a particular set of templates are requested (and exist), set a cookie, otherwise delete the cookie if (isset($_GET['var_skel'])) { if (isset($squelettes[$_GET['var_skel']])) setcookie('spip_skel', $_COOKIE['spip_skel'] = $_GET['var_skel'], NULL, '/'); else setcookie('spip_skel', $_COOKIE['spip_skel'] = '', -24*3600, '/'); } // If a particular template path is permitted, define it as the templates folder if (isset($_COOKIE['spip_skel']) AND isset($squelettes[$_COOKIE['spip_skel']])) $GLOBALS['dossier_squelettes'] = $squelettes[$_COOKIE['spip_skel']]; ?>