From d2da26e467aec1347ae7c314c4c8279cb4618c34 Mon Sep 17 00:00:00 2001 From: patdenice Date: Wed, 13 Apr 2011 10:36:53 +0000 Subject: Clean code git-svn-id: http://piwigo.org/svn/trunk@10348 68402e56-0260-453c-a942-63ccdbb3a9ee --- plugins/LocalFilesEditor/admin.php | 230 +-------------------- plugins/LocalFilesEditor/admin.tpl | 96 --------- plugins/LocalFilesEditor/functions.inc.php | 114 ---------- plugins/LocalFilesEditor/include/css.inc.php | 45 ++++ plugins/LocalFilesEditor/include/functions.inc.php | 114 ++++++++++ plugins/LocalFilesEditor/include/lang.inc.php | 53 +++++ plugins/LocalFilesEditor/include/localconf.inc.php | 26 +++ plugins/LocalFilesEditor/include/plug.inc.php | 25 +++ plugins/LocalFilesEditor/include/tpl.inc.php | 140 +++++++++++++ plugins/LocalFilesEditor/locfiledit.css | 34 --- plugins/LocalFilesEditor/show_default.php | 6 +- plugins/LocalFilesEditor/show_default.tpl | 35 ---- plugins/LocalFilesEditor/template/admin.tpl | 97 +++++++++ plugins/LocalFilesEditor/template/locfiledit.css | 32 +++ plugins/LocalFilesEditor/template/show_default.tpl | 37 ++++ 15 files changed, 580 insertions(+), 504 deletions(-) delete mode 100644 plugins/LocalFilesEditor/admin.tpl delete mode 100644 plugins/LocalFilesEditor/functions.inc.php create mode 100644 plugins/LocalFilesEditor/include/css.inc.php create mode 100644 plugins/LocalFilesEditor/include/functions.inc.php create mode 100644 plugins/LocalFilesEditor/include/lang.inc.php create mode 100644 plugins/LocalFilesEditor/include/localconf.inc.php create mode 100644 plugins/LocalFilesEditor/include/plug.inc.php create mode 100644 plugins/LocalFilesEditor/include/tpl.inc.php delete mode 100644 plugins/LocalFilesEditor/locfiledit.css delete mode 100644 plugins/LocalFilesEditor/show_default.tpl create mode 100644 plugins/LocalFilesEditor/template/admin.tpl create mode 100644 plugins/LocalFilesEditor/template/locfiledit.css create mode 100644 plugins/LocalFilesEditor/template/show_default.tpl (limited to 'plugins/LocalFilesEditor') diff --git a/plugins/LocalFilesEditor/admin.php b/plugins/LocalFilesEditor/admin.php index cd2c5b301..a0e679378 100644 --- a/plugins/LocalFilesEditor/admin.php +++ b/plugins/LocalFilesEditor/admin.php @@ -23,7 +23,7 @@ if (!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!'); include_once(PHPWG_ROOT_PATH.'admin/include/tabsheet.class.php'); -include_once(LOCALEDIT_PATH.'functions.inc.php'); +include_once(LOCALEDIT_PATH.'include/functions.inc.php'); load_language('plugin.lang', LOCALEDIT_PATH); $my_base_url = get_root_url().'admin.php?page=plugin-'.basename(dirname(__FILE__)); @@ -54,221 +54,7 @@ $tabsheet->add('plug', $tabsheet->select($page['tab']); $tabsheet->assign(); - -// +-----------------------------------------------------------------------+ -// | Variables init -// +-----------------------------------------------------------------------+ -$edited_file = isset($_POST['edited_file']) ? $_POST['edited_file'] : ''; -$content_file = ''; -$new_file['localconf'] = ""; -$new_file['css'] = "/* " . l10n('locfiledit_newfile') . " */\n\n"; -$new_file['tpl'] = "{* " . l10n('locfiledit_newfile') . " *}\n\n"; -$new_file['lang'] = $new_file['localconf']; -$new_file['plug'] = ""; -$newfile_page = isset($_GET['newfile']) ? true : false; - -// Edit selected file for CSS, template and language -if ((isset($_POST['edit'])) and !is_numeric($_POST['file_to_edit'])) -{ - $edited_file = $_POST['file_to_edit']; - $content_file = file_exists($edited_file) ? - file_get_contents($edited_file) : $new_file[$page['tab']]; -} - -// Edit new tpl file -if (isset($_POST['create_tpl'])) -{ - $filename = $_POST['tpl_name']; - if (empty($filename)) - { - array_push($page['errors'], l10n('locfiledit_empty_filename')); - } - if (get_extension($filename) != 'tpl') - { - $filename .= '.tpl'; - } - if (!preg_match('/^[a-zA-Z0-9-_.]+$/', $filename)) - { - array_push($page['errors'], l10n('locfiledit_filename_error')); - } - if (is_numeric($_POST['tpl_model']) and $_POST['tpl_model'] != '0') - { - array_push($page['errors'], l10n('locfiledit_model_error')); - } - if (file_exists($_POST['tpl_parent'] . '/' . $filename)) - { - array_push($page['errors'], l10n('locfiledit_file_already_exists')); - } - if (!empty($page['errors'])) - { - $newfile_page = true; - } - else - { - $edited_file = $_POST['tpl_parent'] . '/' . $filename; - $content_file = ($_POST['tpl_model'] == '0') ? $new_file['tpl'] : file_get_contents($_POST['tpl_model']); - } -} - -// +-----------------------------------------------------------------------+ -// | Process tabsheet -// +-----------------------------------------------------------------------+ -switch ($page['tab']) -{ - case 'localconf': - $edited_file = PHPWG_ROOT_PATH.PWG_LOCAL_DIR . "config/config.inc.php"; - $content_file = file_exists($edited_file) ? - file_get_contents($edited_file) : $new_file['localconf']; - - $template->assign('show_default' , array( - array('SHOW_DEFAULT' => LOCALEDIT_PATH - . 'show_default.php?file=include/config_default.inc.php', - 'FILE' => 'config_default.inc.php'))); - $codemirror_mode = 'application/x-httpd-php'; - break; - - case 'css': - $selected = 0; - $options[] = l10n('locfiledit_choose_file'); - $options[] = '----------------------'; - $value = PHPWG_ROOT_PATH.PWG_LOCAL_DIR . "css/rules.css"; - $options[$value] = 'local / css / rules.css'; - if ($edited_file == $value) $selected = $value; - $options[] = '----------------------'; - - foreach (get_dirs($conf['themes_dir']) as $theme_id) - { - $value = PHPWG_ROOT_PATH.PWG_LOCAL_DIR . 'css/'.$theme_id.'-rules.css'; - $options[$value] = 'local / css / '.$theme_id.'-rules.css'; - if ($edited_file == $value) $selected = $value; - } - $template->assign('css_lang_tpl', array( - 'OPTIONS' => $options, - 'SELECTED' => $selected)); - $codemirror_mode = 'text/css'; - break; - - case 'tpl': - // New file form creation - if ($newfile_page) - { - $filename = isset($_POST['tpl_name']) ? $_POST['tpl_name'] : ''; - $selected['model'] = isset($_POST['tpl_model']) ? $_POST['tpl_model'] : '0'; - $selected['parent'] = isset($_POST['tpl_parent']) ? $_POST['tpl_parent'] : PHPWG_ROOT_PATH . 'template-extension'; - - // Parent directories list - $options['parent'] = array(PHPWG_ROOT_PATH . 'template-extension' => 'template-extension'); - $options['parent'] = array_merge($options['parent'], get_rec_dirs(PHPWG_ROOT_PATH . 'template-extension')); - - $options['model'][] = l10n('locfiledit_empty_page'); - $options['model'][] = '----------------------'; - $i = 0; - foreach (get_extents() as $pwg_template) - { - $value = PHPWG_ROOT_PATH . 'template-extension/' . $pwg_template; - $options['model'][$value] = 'template-extension / ' . str_replace('/', ' / ', $pwg_template); - $i++; - } - foreach (get_dirs($conf['themes_dir']) as $theme_id) - { - if ($i) - { - $options['model'][] = '----------------------'; - $i = 0; - } - $dir = $conf['themes_dir'] . '/' . $theme_id . '/template/'; - if (is_dir($dir) and $content = opendir($dir)) - { - while ($node = readdir($content)) - { - if (is_file($dir.$node) and get_extension($node) == 'tpl') - { - $value = $dir . $node; - $options['model'][$value] = $theme_id . ' / ' . $node; - $i++; - } - } - } - } - if (end($options['model']) == '----------------------') - { - array_pop($options['model']); - } - // Assign variables to template - $template->assign('create_tpl', array( - 'NEW_FILE_NAME' => $filename, - 'MODEL_OPTIONS' => $options['model'], - 'MODEL_SELECTED' => $selected['model'], - 'PARENT_OPTIONS' => $options['parent'], - 'PARENT_SELECTED' => $selected['parent'])); - break; - } - // List existing template extensions - $selected = 0; - $options[] = l10n('locfiledit_choose_file'); - $options[] = '----------------------'; - foreach (get_extents() as $pwg_template) - { - $value = './template-extension/' . $pwg_template; - $options[$value] = str_replace('/', ' / ', $pwg_template); - if ($edited_file == $value) $selected = $value; - } - if ($selected == 0 and !empty($edited_file)) - { - $options[$edited_file] = str_replace(array('./template-extension/', '/'), array('', ' / '), $edited_file); - $selected = $edited_file; - } - $template->assign('css_lang_tpl', array( - 'OPTIONS' => $options, - 'SELECTED' => $selected, - 'NEW_FILE_URL' => $my_base_url.'-tpl&newfile', - 'NEW_FILE_CLASS' => empty($edited_file) ? '' : 'top_right')); - - $codemirror_mode = 'text/html'; - break; - - case 'lang': - $selected = 0; - $options[] = l10n('locfiledit_choose_file'); - $options[] = '----------------------'; - foreach (get_languages() as $language_code => $language_name) - { - $value = PHPWG_ROOT_PATH.PWG_LOCAL_DIR.'language/'.$language_code.'.lang.php'; - if ($edited_file == $value) - { - $selected = $value; - $template->assign('show_default', array( - array('SHOW_DEFAULT' => LOCALEDIT_PATH - . 'show_default.php?file=' - . 'language/'.$language_code.'/common.lang.php', - 'FILE' => 'common.lang.php'), - array('SHOW_DEFAULT' => LOCALEDIT_PATH - . 'show_default.php?file=' - . 'language/'.$language_code.'/admin.lang.php', - 'FILE' => 'admin.lang.php'))); - } - $options[$value] = $language_name; - } - $template->assign('css_lang_tpl', array( - 'OPTIONS' => $options, - 'SELECTED' => $selected)); - $codemirror_mode = 'application/x-httpd-php'; - break; - - case 'plug': - $edited_file = PHPWG_PLUGINS_PATH . "PersonalPlugin/main.inc.php"; - $content_file = file_exists($edited_file) ? - file_get_contents($edited_file) : $new_file['plug']; - $codemirror_mode = 'application/x-httpd-php'; - break; -} +include_once(LOCALEDIT_PATH.'include/'.$page['tab'].'.inc.php'); // +-----------------------------------------------------------------------+ // | Load backup file @@ -334,7 +120,7 @@ if (isset($_POST['submit'])) // | template initialization // +-----------------------------------------------------------------------+ $template->set_filenames(array( - 'plugin_admin_content' => dirname(__FILE__) . '/admin.tpl')); + 'plugin_admin_content' => dirname(__FILE__) . '/template/admin.tpl')); if (!empty($edited_file)) { @@ -343,9 +129,12 @@ if (!empty($edited_file)) $content_file = stripslashes($_POST['text']); } $template->assign('zone_edit', - array('EDITED_FILE' => $edited_file, - 'CONTENT_FILE' => htmlspecialchars($content_file), - 'FILE_NAME' => trim($edited_file, './\\'))); + array( + 'EDITED_FILE' => $edited_file, + 'CONTENT_FILE' => htmlspecialchars($content_file), + 'FILE_NAME' => trim($edited_file, './\\') + ) + ); if (file_exists(get_bak_file($edited_file))) { $template->assign('restore', true); @@ -354,7 +143,6 @@ if (!empty($edited_file)) { $template->assign('restore_infos', true); } - } $template->assign(array( diff --git a/plugins/LocalFilesEditor/admin.tpl b/plugins/LocalFilesEditor/admin.tpl deleted file mode 100644 index d59df2f27..000000000 --- a/plugins/LocalFilesEditor/admin.tpl +++ /dev/null @@ -1,96 +0,0 @@ -{combine_script id="codemirror" path="plugins/LocalFilesEditor/codemirror/lib/codemirror.js"} -{combine_script id="codemirror.xml" require="codemirror" path="plugins/LocalFilesEditor/codemirror/mode/xml/xml.js"} -{combine_script id="codemirror.javascript" require="codemirror" path="plugins/LocalFilesEditor/codemirror/mode/javascript/javascript.js"} -{combine_script id="codemirror.css" require="codemirror" path="plugins/LocalFilesEditor/codemirror/mode/css/css.js"} -{combine_script id="codemirror.clike" require="codemirror" path="plugins/LocalFilesEditor/codemirror/mode/clike/clike.js"} -{combine_script id="codemirror.htmlmixed" require="codemirror.xml,codemirror.javascript,codemirror.css" path="plugins/LocalFilesEditor/codemirror/mode/htmlmixed/htmlmixed.js"} -{combine_script id="codemirror.php" require="codemirror.xml,codemirror.javascript,codemirror.css,codemirror.clike" path="plugins/LocalFilesEditor/codemirror/mode/php/php.js"} - -{combine_css path="plugins/LocalFilesEditor/codemirror/lib/codemirror.css"} -{combine_css path="plugins/LocalFilesEditor/codemirror/mode/xml/xml.css"} -{combine_css path="plugins/LocalFilesEditor/codemirror/mode/javascript/javascript.css"} -{combine_css path="plugins/LocalFilesEditor/codemirror/mode/css/css.css"} -{combine_css path="plugins/LocalFilesEditor/codemirror/mode/clike/clike.css"} -{combine_css path="plugins/LocalFilesEditor/locfiledit.css"} - -{footer_script} -if (document.getElementById("text") != null) - var editor = CodeMirror.fromTextArea(document.getElementById("text"), {ldelim} - matchBrackets: true, - mode: "{$CODEMIRROR_MODE}", - tabMode: "shift" - }); -{/footer_script} - -
-

LocalFiles Editor

-
- -
- -
- - - -{if isset ($create_tpl)} - - - - - - - - - - - - - -
{'locfiledit_new_filename'|@translate}
{'locfiledit_parent_directory'|@translate}{html_options name=tpl_parent options=$create_tpl.PARENT_OPTIONS selected=$create_tpl.PARENT_SELECTED}
{'locfiledit_model'|@translate}{html_options name=tpl_model options=$create_tpl.MODEL_OPTIONS selected=$create_tpl.MODEL_SELECTED}
-

- -{/if} - -{if isset ($css_lang_tpl)} -{html_options name=file_to_edit options=$css_lang_tpl.OPTIONS selected=$css_lang_tpl.SELECTED} - -

- {if isset ($css_lang_tpl.NEW_FILE_URL)} - - {'locfiledit_new_tpl'|@translate} - - {/if} -{/if} - -
{* top bar buttons *} -{if !empty($show_default)} -{foreach from=$show_default item=file name=default_loop} - -{'locfiledit_show_default'|@translate} "{$file.FILE}" - -{if !($smarty.foreach.default_loop.last)}
{/if} -{/foreach} -{/if} - -{if isset ($zone_edit)} -{$zone_edit.FILE_NAME} - -
{* top bar buttons *} - - - -
- - -{if isset ($restore)} - -{/if} - -{if isset ($restore_infos)} -

-{'locfiledit_save_bak'|@translate} -{/if} - -{/if} -
-
diff --git a/plugins/LocalFilesEditor/functions.inc.php b/plugins/LocalFilesEditor/functions.inc.php deleted file mode 100644 index b85887852..000000000 --- a/plugins/LocalFilesEditor/functions.inc.php +++ /dev/null @@ -1,114 +0,0 @@ -'), '', $code); - if (function_exists('token_get_all')) - { - $b = 0; - foreach (token_get_all($code) as $token) - { - if ('{' == $token) ++$b; - else if ('}' == $token) --$b; - } - if ($b) return false; - else - { - ob_start(); - $eval = eval('if(0){' . $code . '}'); - ob_end_clean(); - if ($eval === false) return false; - } - } - return ''; -} - -/** - * returns true or false if $str is bool - * returns $str if $str is integer - * else "$str" - * - * @param string - */ -function editarea_quote($value) -{ - switch (gettype($value)) - { - case "boolean": - return $value ? 'true' : 'false'; - case "integer": - return $value; - default: - return '"'.$value.'"'; - } -} - -/** - * returns bak file for restore - * @param string - */ -function get_bak_file($file) -{ - if (get_extension($file) == 'php') - { - return substr_replace($file, '.bak', strrpos($file , '.'), 0); - } - else - { - return $file . '.bak'; - } -} - -/** - * returns dirs and subdirs - * retun array - * @param string - */ -function get_rec_dirs($path='') -{ - $options = array(); - if (is_dir($path)) - { - $fh = opendir($path); - while ($file = readdir($fh)) - { - $pathfile = $path . '/' . $file; - if ($file != '.' and $file != '..' and $file != '.svn' and is_dir($pathfile)) - { - $options[$pathfile] = str_replace(array('./', '/'), array('', ' / '), $pathfile); - $options = array_merge($options, get_rec_dirs($pathfile)); - } - } - closedir($fh); - } - return $options; -} - -?> \ No newline at end of file diff --git a/plugins/LocalFilesEditor/include/css.inc.php b/plugins/LocalFilesEditor/include/css.inc.php new file mode 100644 index 000000000..42c6b6920 --- /dev/null +++ b/plugins/LocalFilesEditor/include/css.inc.php @@ -0,0 +1,45 @@ +assign('css_lang_tpl', array( + 'OPTIONS' => $options, + 'SELECTED' => $selected + ) +); + +$codemirror_mode = 'text/css'; + +?> \ No newline at end of file diff --git a/plugins/LocalFilesEditor/include/functions.inc.php b/plugins/LocalFilesEditor/include/functions.inc.php new file mode 100644 index 000000000..b85887852 --- /dev/null +++ b/plugins/LocalFilesEditor/include/functions.inc.php @@ -0,0 +1,114 @@ +'), '', $code); + if (function_exists('token_get_all')) + { + $b = 0; + foreach (token_get_all($code) as $token) + { + if ('{' == $token) ++$b; + else if ('}' == $token) --$b; + } + if ($b) return false; + else + { + ob_start(); + $eval = eval('if(0){' . $code . '}'); + ob_end_clean(); + if ($eval === false) return false; + } + } + return ''; +} + +/** + * returns true or false if $str is bool + * returns $str if $str is integer + * else "$str" + * + * @param string + */ +function editarea_quote($value) +{ + switch (gettype($value)) + { + case "boolean": + return $value ? 'true' : 'false'; + case "integer": + return $value; + default: + return '"'.$value.'"'; + } +} + +/** + * returns bak file for restore + * @param string + */ +function get_bak_file($file) +{ + if (get_extension($file) == 'php') + { + return substr_replace($file, '.bak', strrpos($file , '.'), 0); + } + else + { + return $file . '.bak'; + } +} + +/** + * returns dirs and subdirs + * retun array + * @param string + */ +function get_rec_dirs($path='') +{ + $options = array(); + if (is_dir($path)) + { + $fh = opendir($path); + while ($file = readdir($fh)) + { + $pathfile = $path . '/' . $file; + if ($file != '.' and $file != '..' and $file != '.svn' and is_dir($pathfile)) + { + $options[$pathfile] = str_replace(array('./', '/'), array('', ' / '), $pathfile); + $options = array_merge($options, get_rec_dirs($pathfile)); + } + } + closedir($fh); + } + return $options; +} + +?> \ No newline at end of file diff --git a/plugins/LocalFilesEditor/include/lang.inc.php b/plugins/LocalFilesEditor/include/lang.inc.php new file mode 100644 index 000000000..fe5a4f85c --- /dev/null +++ b/plugins/LocalFilesEditor/include/lang.inc.php @@ -0,0 +1,53 @@ +"; + } +} + +$selected = 0; +$options[] = l10n('locfiledit_choose_file'); +$options[] = '----------------------'; +foreach (get_languages() as $language_code => $language_name) +{ + $value = PHPWG_ROOT_PATH.PWG_LOCAL_DIR.'language/'.$language_code.'.lang.php'; + if ($edited_file == $value) + { + $selected = $value; + $template->assign('show_default', array( + array( + 'URL' => LOCALEDIT_PATH.'show_default.php?file=language/'.$language_code.'/common.lang.php', + 'FILE' => 'common.lang.php' + ), + array( + 'URL' => LOCALEDIT_PATH.'show_default.php?file=language/'.$language_code.'/admin.lang.php', + 'FILE' => 'admin.lang.php' + ) + ) + ); + } + $options[$value] = $language_name; +} + +$template->assign('css_lang_tpl', array( + 'OPTIONS' => $options, + 'SELECTED' => $selected + ) + ); + +$codemirror_mode = 'application/x-httpd-php'; + +?> \ No newline at end of file diff --git a/plugins/LocalFilesEditor/include/localconf.inc.php b/plugins/LocalFilesEditor/include/localconf.inc.php new file mode 100644 index 000000000..b801db236 --- /dev/null +++ b/plugins/LocalFilesEditor/include/localconf.inc.php @@ -0,0 +1,26 @@ +"; +} + +$template->assign('show_default', array( + array( + 'URL' => LOCALEDIT_PATH.'show_default.php?file=include/config_default.inc.php', + 'FILE' => 'config_default.inc.php' + ) + ) +); + +$codemirror_mode = 'application/x-httpd-php'; + +?> \ No newline at end of file diff --git a/plugins/LocalFilesEditor/include/plug.inc.php b/plugins/LocalFilesEditor/include/plug.inc.php new file mode 100644 index 000000000..55c4b2dde --- /dev/null +++ b/plugins/LocalFilesEditor/include/plug.inc.php @@ -0,0 +1,25 @@ +"; +} + +$codemirror_mode = 'application/x-httpd-php'; + +?> \ No newline at end of file diff --git a/plugins/LocalFilesEditor/include/tpl.inc.php b/plugins/LocalFilesEditor/include/tpl.inc.php new file mode 100644 index 000000000..aea29ed9d --- /dev/null +++ b/plugins/LocalFilesEditor/include/tpl.inc.php @@ -0,0 +1,140 @@ + 'template-extension'); + $options['parent'] = array_merge($options['parent'], get_rec_dirs(PHPWG_ROOT_PATH . 'template-extension')); + + $options['model'][] = l10n('locfiledit_empty_page'); + $options['model'][] = '----------------------'; + $i = 0; + foreach (get_extents() as $pwg_template) + { + $value = PHPWG_ROOT_PATH . 'template-extension/' . $pwg_template; + $options['model'][$value] = 'template-extension / ' . str_replace('/', ' / ', $pwg_template); + $i++; + } + foreach (get_dirs($conf['themes_dir']) as $theme_id) + { + if ($i) + { + $options['model'][] = '----------------------'; + $i = 0; + } + $dir = $conf['themes_dir'] . '/' . $theme_id . '/template/'; + if (is_dir($dir) and $content = opendir($dir)) + { + while ($node = readdir($content)) + { + if (is_file($dir.$node) and get_extension($node) == 'tpl') + { + $value = $dir . $node; + $options['model'][$value] = $theme_id . ' / ' . $node; + $i++; + } + } + } + } + if (end($options['model']) == '----------------------') + { + array_pop($options['model']); + } + // Assign variables to template + $template->assign('create_tpl', array( + 'NEW_FILE_NAME' => $filename, + 'MODEL_OPTIONS' => $options['model'], + 'MODEL_SELECTED' => $selected['model'], + 'PARENT_OPTIONS' => $options['parent'], + 'PARENT_SELECTED' => $selected['parent'] + ) + ); +} +else +{ + // List existing template extensions + $selected = 0; + $options[] = l10n('locfiledit_choose_file'); + $options[] = '----------------------'; + foreach (get_extents() as $pwg_template) + { + $value = './template-extension/' . $pwg_template; + $options[$value] = str_replace('/', ' / ', $pwg_template); + if ($edited_file == $value) $selected = $value; + } + if ($selected == 0 and !empty($edited_file)) + { + $options[$edited_file] = str_replace(array('./template-extension/', '/'), array('', ' / '), $edited_file); + $selected = $edited_file; + } + $template->assign('css_lang_tpl', array( + 'OPTIONS' => $options, + 'SELECTED' => $selected, + 'NEW_FILE_URL' => $my_base_url.'-tpl&newfile', + 'NEW_FILE_CLASS' => empty($edited_file) ? '' : 'top_right' + ) + ); +} + +$codemirror_mode = 'text/html'; + +?> \ No newline at end of file diff --git a/plugins/LocalFilesEditor/locfiledit.css b/plugins/LocalFilesEditor/locfiledit.css deleted file mode 100644 index bb59ec40c..000000000 --- a/plugins/LocalFilesEditor/locfiledit.css +++ /dev/null @@ -1,34 +0,0 @@ -#LocalFilesEditor { - text-align: center; - margin: 0 2em; -} - -#LocalFilesEditor .top_right { - float: right; - margin-right: 1%; -} - -#LocalFilesEditor B { - float: left; -} - -#LocalFilesEditor TEXTAREA { - margin: 0.5em 0; - width: 99%; - height: 500px; - float: left; -} - -#LocalFilesEditor TD { - padding: 0.5em; -} - -.CodeMirror { - background-color: #EEEEEE; - font-size: 1.3em; - border: 1px solid #999999; - margin: 0.5em 0; - width: 99%; - min-height: 500px; - height: auto; -} diff --git a/plugins/LocalFilesEditor/show_default.php b/plugins/LocalFilesEditor/show_default.php index 14e2ad70d..c3ec7fa1a 100644 --- a/plugins/LocalFilesEditor/show_default.php +++ b/plugins/LocalFilesEditor/show_default.php @@ -24,7 +24,7 @@ define('PHPWG_ROOT_PATH', '../../'); define('IN_ADMIN', true); include_once(PHPWG_ROOT_PATH . 'include/common.inc.php'); -include_once(LOCALEDIT_PATH.'functions.inc.php'); +include_once(LOCALEDIT_PATH.'include/functions.inc.php'); load_language('plugin.lang', LOCALEDIT_PATH); check_status(ACCESS_ADMINISTRATOR); @@ -36,7 +36,7 @@ if (isset($_GET['file'])) die('Hacking attempt!'); } - $template->set_filename('show_default', dirname(__FILE__) . '/show_default.tpl'); + $template->set_filename('show_default', dirname(__FILE__) . '/template/show_default.tpl'); $file = file_get_contents(PHPWG_ROOT_PATH . $path); $title = str_replace('/', ' / ', $path); @@ -44,8 +44,6 @@ if (isset($_GET['file'])) $template->assign(array( 'TITLE' => $title, 'DEFAULT_CONTENT' => $file, - 'LOCALEDIT_PATH' => LOCALEDIT_PATH, - 'CODEMIRROR_MODE' => 'application/x-httpd-php' ) ); diff --git a/plugins/LocalFilesEditor/show_default.tpl b/plugins/LocalFilesEditor/show_default.tpl deleted file mode 100644 index ef6970d41..000000000 --- a/plugins/LocalFilesEditor/show_default.tpl +++ /dev/null @@ -1,35 +0,0 @@ -{html_head} - -{/html_head} -{combine_script id="jquery"} - -{combine_script id="codemirror" path="plugins/LocalFilesEditor/codemirror/lib/codemirror.js"} -{combine_script id="codemirror.xml" require="codemirror" path="plugins/LocalFilesEditor/codemirror/mode/xml/xml.js"} -{combine_script id="codemirror.javascript" require="codemirror" path="plugins/LocalFilesEditor/codemirror/mode/javascript/javascript.js"} -{combine_script id="codemirror.css" require="codemirror" path="plugins/LocalFilesEditor/codemirror/mode/css/css.js"} -{combine_script id="codemirror.clike" require="codemirror" path="plugins/LocalFilesEditor/codemirror/mode/clike/clike.js"} -{combine_script id="codemirror.htmlmixed" require="codemirror.xml,codemirror.javascript,codemirror.css" path="plugins/LocalFilesEditor/codemirror/mode/htmlmixed/htmlmixed.js"} -{combine_script id="codemirror.php" require="codemirror.xml,codemirror.javascript,codemirror.css,codemirror.clike" path="plugins/LocalFilesEditor/codemirror/mode/php/php.js"} - -{combine_css path="plugins/LocalFilesEditor/codemirror/lib/codemirror.css"} -{combine_css path="plugins/LocalFilesEditor/codemirror/mode/xml/xml.css"} -{combine_css path="plugins/LocalFilesEditor/codemirror/mode/javascript/javascript.css"} -{combine_css path="plugins/LocalFilesEditor/codemirror/mode/css/css.css"} -{combine_css path="plugins/LocalFilesEditor/codemirror/mode/clike/clike.css"} -{combine_css path="plugins/LocalFilesEditor/locfiledit.css"} - -{footer_script} -var editor = CodeMirror.fromTextArea(document.getElementById("text"), {ldelim} - matchBrackets: true, - readOnly: true, - mode: "{$CODEMIRROR_MODE}", - tabMode: "shift" -}); -{/footer_script} - -
-
{$TITLE}
- - - -
diff --git a/plugins/LocalFilesEditor/template/admin.tpl b/plugins/LocalFilesEditor/template/admin.tpl new file mode 100644 index 000000000..1761951d2 --- /dev/null +++ b/plugins/LocalFilesEditor/template/admin.tpl @@ -0,0 +1,97 @@ +{combine_script id="codemirror" path="plugins/LocalFilesEditor/codemirror/lib/codemirror.js"} +{combine_script id="codemirror.xml" require="codemirror" path="plugins/LocalFilesEditor/codemirror/mode/xml/xml.js"} +{combine_script id="codemirror.javascript" require="codemirror" path="plugins/LocalFilesEditor/codemirror/mode/javascript/javascript.js"} +{combine_script id="codemirror.css" require="codemirror" path="plugins/LocalFilesEditor/codemirror/mode/css/css.js"} +{combine_script id="codemirror.clike" require="codemirror" path="plugins/LocalFilesEditor/codemirror/mode/clike/clike.js"} +{combine_script id="codemirror.htmlmixed" require="codemirror.xml,codemirror.javascript,codemirror.css" path="plugins/LocalFilesEditor/codemirror/mode/htmlmixed/htmlmixed.js"} +{combine_script id="codemirror.php" require="codemirror.xml,codemirror.javascript,codemirror.css,codemirror.clike" path="plugins/LocalFilesEditor/codemirror/mode/php/php.js"} + +{combine_css path="plugins/LocalFilesEditor/codemirror/lib/codemirror.css"} +{combine_css path="plugins/LocalFilesEditor/codemirror/mode/xml/xml.css"} +{combine_css path="plugins/LocalFilesEditor/codemirror/mode/javascript/javascript.css"} +{combine_css path="plugins/LocalFilesEditor/codemirror/mode/css/css.css"} +{combine_css path="plugins/LocalFilesEditor/codemirror/mode/clike/clike.css"} +{combine_css path="plugins/LocalFilesEditor/template/locfiledit.css"} + +{footer_script} +if (document.getElementById("text") != null) + var editor = CodeMirror.fromTextArea(document.getElementById("text"), {ldelim} + matchBrackets: true, + mode: "{$CODEMIRROR_MODE}", + tabMode: "shift" + }); +{/footer_script} + +
+

LocalFiles Editor

+
+ +
+ +
+ + + +{if isset ($create_tpl)} + + + + + + + + + + + + + +
{'locfiledit_new_filename'|@translate}
{'locfiledit_parent_directory'|@translate}{html_options name=tpl_parent options=$create_tpl.PARENT_OPTIONS selected=$create_tpl.PARENT_SELECTED}
{'locfiledit_model'|@translate}{html_options name=tpl_model options=$create_tpl.MODEL_OPTIONS selected=$create_tpl.MODEL_SELECTED}
+

+ +{/if} + +{if isset ($css_lang_tpl)} +{html_options name=file_to_edit options=$css_lang_tpl.OPTIONS selected=$css_lang_tpl.SELECTED} + +

+ {if isset ($css_lang_tpl.NEW_FILE_URL)} + + {'locfiledit_new_tpl'|@translate} + + {/if} +{/if} + +{if isset ($zone_edit)} +
+{/if} + +{if !empty($show_default)} +{foreach from=$show_default item=file name=default_loop} + +{'locfiledit_show_default'|@translate} "{$file.FILE}" + +{if !($smarty.foreach.default_loop.last)}
{/if} +{/foreach} +{/if} + +{if isset ($zone_edit)} +{$zone_edit.FILE_NAME} +
{* title_bar *} + + +
+ + +{if isset ($restore)} + +{/if} + +{if isset ($restore_infos)} +

+{'locfiledit_save_bak'|@translate} +{/if} + +{/if} {* zone_edit *} +
+
diff --git a/plugins/LocalFilesEditor/template/locfiledit.css b/plugins/LocalFilesEditor/template/locfiledit.css new file mode 100644 index 000000000..10589bcec --- /dev/null +++ b/plugins/LocalFilesEditor/template/locfiledit.css @@ -0,0 +1,32 @@ +#LocalFilesEditor { + text-align: center; + margin: 0 2em; +} + +#LocalFilesEditor #title_bar { + overflow: auto; +} + +#LocalFilesEditor .file_name { + font-weight: bold; + float: left; +} + +#LocalFilesEditor .default_file { + float: right; +} + +#LocalFilesEditor TD { + padding: 0.5em; +} + +#LocalFilesEditor TEXTAREA, .CodeMirror { + background-color: #EEEEEE; + font-family: monospace,Arial,sans-serif; + font-size: 1.2em; + border: 1px solid #999999; + margin: 0.5em 0; + width: 100%; + min-height: 500px; + height: auto; +} \ No newline at end of file diff --git a/plugins/LocalFilesEditor/template/show_default.tpl b/plugins/LocalFilesEditor/template/show_default.tpl new file mode 100644 index 000000000..cd6c3f318 --- /dev/null +++ b/plugins/LocalFilesEditor/template/show_default.tpl @@ -0,0 +1,37 @@ +{combine_script id="codemirror" path="plugins/LocalFilesEditor/codemirror/lib/codemirror.js"} +{combine_script id="codemirror.xml" require="codemirror" path="plugins/LocalFilesEditor/codemirror/mode/xml/xml.js"} +{combine_script id="codemirror.javascript" require="codemirror" path="plugins/LocalFilesEditor/codemirror/mode/javascript/javascript.js"} +{combine_script id="codemirror.css" require="codemirror" path="plugins/LocalFilesEditor/codemirror/mode/css/css.js"} +{combine_script id="codemirror.clike" require="codemirror" path="plugins/LocalFilesEditor/codemirror/mode/clike/clike.js"} +{combine_script id="codemirror.htmlmixed" require="codemirror.xml,codemirror.javascript,codemirror.css" path="plugins/LocalFilesEditor/codemirror/mode/htmlmixed/htmlmixed.js"} +{combine_script id="codemirror.php" require="codemirror.xml,codemirror.javascript,codemirror.css,codemirror.clike" path="plugins/LocalFilesEditor/codemirror/mode/php/php.js"} + +{combine_css path="plugins/LocalFilesEditor/codemirror/lib/codemirror.css"} +{combine_css path="plugins/LocalFilesEditor/codemirror/mode/xml/xml.css"} +{combine_css path="plugins/LocalFilesEditor/codemirror/mode/javascript/javascript.css"} +{combine_css path="plugins/LocalFilesEditor/codemirror/mode/css/css.css"} +{combine_css path="plugins/LocalFilesEditor/codemirror/mode/clike/clike.css"} +{combine_css path="plugins/LocalFilesEditor/template/locfiledit.css"} + +{footer_script} +var editor = CodeMirror.fromTextArea(document.getElementById("text"), {ldelim} + readOnly: true, + mode: "application/x-httpd-php" +}); +{/footer_script} + +{html_head} + +{/html_head} + +
+ +
+ {$TITLE} +
+ + + +
-- cgit v1.2.3