'default', 'page_layout' => 'article', 'page_title' => '(missing)', 'page_description' => '(missing)', 'page_keywords' => '(missing)' ); $ini_path="content/$path/$name/props.ini"; $res=write_ini_file($props, $ini_path, false); } return $res; } // Config loading $site_conf = load_ini_site_conf("content/site_conf.ini"); if ( ! is_array($site_conf) ) trigger_error("Error parsing site_conf.ini", E_USER_ERROR); // Localization Init l10n_init($site_conf['site_admin_lang']); // URL parameter parsing $kind = sanitize($_GET, 'kind', RE_IDENTIFIER_CLEANER, 'page'); /* Could be : page, media */ $action=sanitize($_GET, 'action', RE_IDENTIFIER_CLEANER, 'preview'); /* Could be : none, add_fold, add_item */ $path = sanitize($_GET, 'path', RE_RELPATH_CLEANER, ''); $name = sanitize($_GET, 'name', RE_IDENTIFIER_CLEANER, ''); // Pre-computed because used twice $page_title = _('Admin') . ' - ' . ( ($kind=='media')?_('Add or remove a media'):_('Add or remove a page') ); $res=null; switch ($action) { case 'add_fold': $res=add_fold($kind,$path,$name); break; case 'add_item': if ( $kind=='media' ) { $res=add_media($path,$name); } else { $res=add_page($path,$name); } break; } ?>