diff options
author | plegall <plg@piwigo.org> | 2011-07-01 10:16:30 +0000 |
---|---|---|
committer | plegall <plg@piwigo.org> | 2011-07-01 10:16:30 +0000 |
commit | c97377ea8700519ef7cbad77269ec533ddcad287 (patch) | |
tree | 297fab01d96f0bdc8acd0857670a35c25f6de33e /plugins/LocalFilesEditor/include/css.inc.php | |
parent | d6ec70d97076bf487fee1ada58fe6130d922b7ef (diff) |
feature 2372 added: shortcut to edit CSS file from the themes page. If plugin
LocalFiles Editor is active, a link "CSS" is displayed under each active theme
and goes directly to the CSS edition page.
git-svn-id: http://piwigo.org/svn/trunk@11586 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'plugins/LocalFilesEditor/include/css.inc.php')
-rw-r--r-- | plugins/LocalFilesEditor/include/css.inc.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/plugins/LocalFilesEditor/include/css.inc.php b/plugins/LocalFilesEditor/include/css.inc.php index 83c479029..7fa129049 100644 --- a/plugins/LocalFilesEditor/include/css.inc.php +++ b/plugins/LocalFilesEditor/include/css.inc.php @@ -10,6 +10,10 @@ elseif (isset($_POST['edited_file'])) { $edited_file = $_POST['edited_file']; } +elseif (isset($_GET['theme']) and in_array($_GET['theme'], array_keys(get_pwg_themes()))) +{ + $edited_file = PHPWG_ROOT_PATH.PWG_LOCAL_DIR . 'css/'.$_GET['theme'].'-rules.css'; +} else { $edited_file = PHPWG_ROOT_PATH.PWG_LOCAL_DIR . 'css/'.get_default_theme().'-rules.css'; |