summaryrefslogtreecommitdiffstats
path: root/templates/phpexec.inc.php
diff options
context:
space:
mode:
authorneoraider <devnull@localhost>2006-12-04 01:11:05 +0100
committerneoraider <devnull@localhost>2006-12-04 01:11:05 +0100
commit3b7d2cb2fd40d744a2415a470b4e323d13dd1b63 (patch)
tree45dc49f5501c13d0e967e41bafb54e9f0dfad0a9 /templates/phpexec.inc.php
parenta55cccfbc9ba53fb4b4b28586cfeb9e5e035a6a7 (diff)
downloadneon-3b7d2cb2fd40d744a2415a470b4e323d13dd1b63.tar
neon-3b7d2cb2fd40d744a2415a470b4e323d13dd1b63.zip
Nav-Seiten durch Inserts ersetzt; Editor-Seiten jetzt in Templates.
Diffstat (limited to 'templates/phpexec.inc.php')
-rw-r--r--templates/phpexec.inc.php19
1 files changed, 18 insertions, 1 deletions
diff --git a/templates/phpexec.inc.php b/templates/phpexec.inc.php
index 3e542df..18c33be 100644
--- a/templates/phpexec.inc.php
+++ b/templates/phpexec.inc.php
@@ -2,7 +2,7 @@
Uses('message', 'links');
class phpexec_template {
- function Get($data) {
+ function GetPage($data) {
$title = strtr($data['_page'], array(':' => ' - '));
ob_start();
@@ -14,6 +14,23 @@
return array('title' => $title, 'content' => $content);
}
+
+ function GetEditor($data) {
+ $title = 'Edit \'' . $data['_page'] . '\'';
+
+ $content = '<h2>' . $title . '</h2>';
+ $content .= '<form method="post" action="' . $GLOBALS['links']->GetNeonLink('Pages:Edit') . '">';
+ $content .= '<input type="hidden" name="name" value="' . $data['_page'] . '" />';
+ $content .= '<input type="hidden" name="type" value="' . $data['_type'] . '" />';
+ $content .= '<input type="hidden" name="backlink" value="' . htmlspecialchars($data['_backlink']) . '" />';
+ $content .= '<textarea name="data_code" class="pageedit spaced-bottom" rows="25" cols="70">';
+ $content .= htmlspecialchars($data['code']) . '</textarea><br />';
+ $content .= '<input type="submit" value="Änderungen übernehmen" />';
+ $content .= '<input type="submit" name="back" value="Zurück" />';
+ $content .= '</form>';
+
+ return array('title' => $title, 'content' => $content);
+ }
}
$GLOBALS['templates']['phpexec'] = new phpexec_template;