summaryrefslogtreecommitdiffstats
path: root/pages/content/Pages.xml
diff options
context:
space:
mode:
authorneoraider <devnull@localhost>2006-12-14 01:06:02 +0100
committerneoraider <devnull@localhost>2006-12-14 01:06:02 +0100
commit543336aef16562369c01992817f58e17144c9cad (patch)
treed49cd8549a836c740df7096ddcf7788ed7920c37 /pages/content/Pages.xml
parent93e1133ee88b03e7cae7318cb19761e698e57b86 (diff)
downloadneon-543336aef16562369c01992817f58e17144c9cad.tar
neon-543336aef16562369c01992817f58e17144c9cad.zip
Base-Type durch Subst-Erweiterungen unnoetig gemacht; Type-Konzept entfernt.
Diffstat (limited to 'pages/content/Pages.xml')
-rw-r--r--pages/content/Pages.xml44
1 files changed, 0 insertions, 44 deletions
diff --git a/pages/content/Pages.xml b/pages/content/Pages.xml
deleted file mode 100644
index 6db0710..0000000
--- a/pages/content/Pages.xml
+++ /dev/null
@@ -1,44 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" ?>
-<page>
- <info>
- <name>Pages</name>
- <template>phpexec</template>
- <access>0:0</access>
- <type>c</type>
- </info>
- <data>
- <code>
- <![CDATA[
-<?PHP
- Uses('links', 'pages');
-
-
- $title = '{{Pages}}';
-
- echo '<h2>{{Pages}}</h2>';
-
- echo '<form method="post" action="' . $GLOBALS['links']->GetNeonLink('Pages:Handle') . '">';
-
- echo '<input type="hidden" name="type" value="c" />';
-
- echo '<select name="name" size="15" class="pagelist spaced-bottom">';
-
- foreach($GLOBALS['pages']->GetList() as $page)
- if($page[strlen($page)-1] == 'c')
- echo '<option>' . substr($page, 0, -2) . '</option>';
-
- echo '</select>';
- echo '<br />';
- echo '<input type="submit" name="view" value="{{Display}}" /> ';
- echo '<input type="submit" name="new" value="{{New}}" /> ';
- echo '<input type="submit" name="edit" value="{{Edit}}" /> ';
- echo '<input type="submit" name="privs" value="{{Change access}}" /> ';
- echo '<input type="submit" name="copy" value="{{Copy}}" /> ';
- echo '<input type="submit" name="rename" value="{{Rename}}" /> ';
- echo '<input type="submit" name="delete" value="{{Delete}}" />';
- echo '</form>';
-?>
- ]]>
- </code>
- </data>
-</page>