diff options
author | plegall <plg@piwigo.org> | 2011-02-23 09:24:43 +0000 |
---|---|---|
committer | plegall <plg@piwigo.org> | 2011-02-23 09:24:43 +0000 |
commit | e28cbddada5a2568e1f5e2a011d3c3bc660b2d48 (patch) | |
tree | f036e237cac2eb81fa9721994849792cc376d8ad | |
parent | 45c4b7681f25c2aa167544fc8d0c5c62e1507c97 (diff) |
feature 2200 added: clean alias for plugin administration pages
git-svn-id: http://piwigo.org/svn/trunk@9357 68402e56-0260-453c-a942-63ccdbb3a9ee
-rw-r--r-- | admin.php | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -78,6 +78,18 @@ if (mt_rand(0,9)==0) // | variables init | // +-----------------------------------------------------------------------+ +// ?page=plugin-community-pendings is an clean alias of +// ?page=plugin§ion=community/admin.php&tab=pendings +if (preg_match('/^plugin-([^-]*)(?:-(.*))?$/', $_GET['page'], $matches)) +{ + $_GET['page'] = 'plugin'; + $_GET['section'] = $matches[1].'/admin.php'; + if (isset($matches[2])) + { + $_GET['tab'] = $matches[2]; + } +} + if (isset($_GET['page']) and preg_match('/^[a-z_]*$/', $_GET['page']) and is_file(PHPWG_ROOT_PATH.'admin/'.$_GET['page'].'.php')) |