aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/LocalFilesEditor/show_default.php
diff options
context:
space:
mode:
authorpatdenice <patdenice@piwigo.org>2008-09-25 17:46:27 +0000
committerpatdenice <patdenice@piwigo.org>2008-09-25 17:46:27 +0000
commit1eb3d18ae24a221037a44d662439d50c74e6fe9f (patch)
treebad9aae88920126457aeadf09a7a9ec55242977b /plugins/LocalFilesEditor/show_default.php
parentfd0b26af453fedf4528eaf4114914a6e5b7bc685 (diff)
- Move get_extents function to include/functions.inc.php.
- Change all plugins version to 2.0. - LocalFiles Editor can now edit and create template extension. - Editarea (for LocalFiles Editor) go to version 0.7.2.2 (chrome compatible) - Editarea activation is now saved in database with AJAX. git-svn-id: http://piwigo.org/svn/trunk@2588 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'plugins/LocalFilesEditor/show_default.php')
-rw-r--r--plugins/LocalFilesEditor/show_default.php27
1 files changed, 13 insertions, 14 deletions
diff --git a/plugins/LocalFilesEditor/show_default.php b/plugins/LocalFilesEditor/show_default.php
index 3a70f258e..79e597358 100644
--- a/plugins/LocalFilesEditor/show_default.php
+++ b/plugins/LocalFilesEditor/show_default.php
@@ -24,6 +24,7 @@
define('PHPWG_ROOT_PATH', '../../');
include_once(PHPWG_ROOT_PATH . 'include/common.inc.php');
include_once(LOCALEDIT_PATH.'functions.inc.php');
+load_language('plugin.lang', LOCALEDIT_PATH);
check_status(ACCESS_ADMINISTRATOR);
if (isset($_GET['file']))
@@ -37,22 +38,20 @@ if (isset($_GET['file']))
$template->set_filename('show_default', dirname(__FILE__) . '/show_default.tpl');
// 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));
- }
+ $editarea_options = array(
+ 'syntax' => 'php',
+ 'start_highlight' => true,
+ 'allow_toggle' => false,
+ 'is_editable' => false,
+ 'language' => substr($user['language'], 0, 2));
$file = file_get_contents(PHPWG_ROOT_PATH . $path);
-
- $template->assign(array('DEFAULT_CONTENT' => $file));
+
+ $template->assign(array(
+ 'DEFAULT_CONTENT' => $file,
+ 'LOCALEDIT_PATH' => LOCALEDIT_PATH,
+ 'LOAD_EDITAREA' => isset($conf['LocalFilesEditor']) ? $conf['LocalFilesEditor'] : 'on',
+ 'EDITAREA_OPTIONS' => $editarea_options));
$title = $path;
$page['page_banner'] = '<h1>'.str_replace('/', ' / ', $path).'</h1>';