diff options
author | patdenice <patdenice@piwigo.org> | 2008-03-25 23:30:23 +0000 |
---|---|---|
committer | patdenice <patdenice@piwigo.org> | 2008-03-25 23:30:23 +0000 |
commit | 6aa72e141a0b651f35e6d4dc08777d715aed2e71 (patch) | |
tree | 87d7ac32a669d0708a7ed8108d939474df3df5e2 /plugins/LocalFilesEditor/show_default.php | |
parent | ee70a108bea04c718b7a6edb97aec56f2dae2679 (diff) |
Add editarea to LocalFiles Editor.
git-svn-id: http://piwigo.org/svn/trunk@2291 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | plugins/LocalFilesEditor/show_default.php | 27 |
1 files changed, 21 insertions, 6 deletions
diff --git a/plugins/LocalFilesEditor/show_default.php b/plugins/LocalFilesEditor/show_default.php index 22e74630b..8c1f433a4 100644 --- a/plugins/LocalFilesEditor/show_default.php +++ b/plugins/LocalFilesEditor/show_default.php @@ -26,6 +26,7 @@ define('PHPWG_ROOT_PATH', '../../'); include_once(PHPWG_ROOT_PATH . 'include/common.inc.php'); +include_once(LOCALEDIT_PATH.'functions.inc.php'); check_status(ACCESS_ADMINISTRATOR); if (isset($_GET['file'])) @@ -37,19 +38,33 @@ if (isset($_GET['file'])) } $template->set_filename('show_default', dirname(__FILE__) . '/show_default.tpl'); - - $file = file_get_contents(PHPWG_ROOT_PATH . $path); - - $template->assign(array('DEFAULT_CONTENT' => nl2br($file))); + // Editarea + if (!isset($conf['editarea_options']) or $conf['editarea_options'] !== false) + { + $editarea = array( + 'syntax' => 'php', + 'start_highlight' => true, + 'is_editable' => false, + 'language' => substr($user['language'], 0, 2)); + + $template->assign('editarea', array( + 'URL' => LOCALEDIT_PATH . 'editarea/edit_area_full.js', + 'OPTIONS' => $editarea)); + } + + $file = file_get_contents(PHPWG_ROOT_PATH . $path); + + $template->assign(array('DEFAULT_CONTENT' => $file)); + $title = $path; $page['page_banner'] = '<h1>'.str_replace('/', ' / ', $path).'</h1>'; $page['body_id'] = 'thePopuphelpPage'; include(PHPWG_ROOT_PATH.'include/page_header.php'); - + $template->pparse('show_default'); - + include(PHPWG_ROOT_PATH.'include/page_tail.php'); } |