summaryrefslogtreecommitdiffstats
path: root/templates/phpexec.inc.php
diff options
context:
space:
mode:
authorneoraider <devnull@localhost>2006-04-11 20:34:03 +0200
committerneoraider <devnull@localhost>2006-04-11 20:34:03 +0200
commit3634676b7fab1da7ffb5f3d32bc4608a6f339305 (patch)
treef9a8e5cf5f78c2a76cda3152ee8b58cf286a4292 /templates/phpexec.inc.php
parent2fe04a4707412ff2f4f8df5f5524bb1b2dcbb3d7 (diff)
downloadneon-3634676b7fab1da7ffb5f3d32bc4608a6f339305.tar
neon-3634676b7fab1da7ffb5f3d32bc4608a6f339305.zip
Handler hei?en jetzt Templates.
Diffstat (limited to 'templates/phpexec.inc.php')
-rw-r--r--templates/phpexec.inc.php21
1 files changed, 21 insertions, 0 deletions
diff --git a/templates/phpexec.inc.php b/templates/phpexec.inc.php
new file mode 100644
index 0000000..0d0404d
--- /dev/null
+++ b/templates/phpexec.inc.php
@@ -0,0 +1,21 @@
+<?PHP
+ require_once('code/message.inc.php');
+ require_once('code/links.inc.php');
+
+ class phpexec_template {
+ function Get($data) {
+ $title = strtr($data['_page'], array(':' => ' - '));
+
+ ob_start();
+
+ eval('?>' . $data['code']);
+
+ $content = ob_get_contents();
+ ob_end_clean();
+
+ return array('title' => $title, 'content' => $content);
+ }
+ }
+
+ $GLOBALS['templates']['phpexec'] = new phpexec_template;
+?>