aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/LocalFilesEditor/include/localconf.inc.php
diff options
context:
space:
mode:
authorpatdenice <patdenice@piwigo.org>2011-04-13 10:36:53 +0000
committerpatdenice <patdenice@piwigo.org>2011-04-13 10:36:53 +0000
commitd2da26e467aec1347ae7c314c4c8279cb4618c34 (patch)
tree62593399f01a303f03608d910a98cce98cc8b664 /plugins/LocalFilesEditor/include/localconf.inc.php
parentc01d0c1790613fd73efc3c78d0c12debdfb1cbc7 (diff)
Clean code
git-svn-id: http://piwigo.org/svn/trunk@10348 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'plugins/LocalFilesEditor/include/localconf.inc.php')
-rw-r--r--plugins/LocalFilesEditor/include/localconf.inc.php26
1 files changed, 26 insertions, 0 deletions
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 @@
+<?php
+
+if (!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!');
+
+$edited_file = PHPWG_ROOT_PATH.PWG_LOCAL_DIR . "config/config.inc.php";
+
+if (file_exists($edited_file))
+{
+ $content_file = file_get_contents($edited_file);
+}
+else
+{
+ $content_file = "<?php\n\n/* ".l10n('locfiledit_newfile')." */\n\n\n\n\n?>";
+}
+
+$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