summaryrefslogtreecommitdiffstats
path: root/pages/content/Users.xml
diff options
context:
space:
mode:
Diffstat (limited to 'pages/content/Users.xml')
-rw-r--r--pages/content/Users.xml42
1 files changed, 0 insertions, 42 deletions
diff --git a/pages/content/Users.xml b/pages/content/Users.xml
deleted file mode 100644
index 9833701..0000000
--- a/pages/content/Users.xml
+++ /dev/null
@@ -1,42 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" ?>
-<page>
- <info>
- <name>Users</name>
- <template>phpexec</template>
- <access>0:0</access>
- <type>c</type>
- </info>
- <data>
- <code>
- <![CDATA[
-<?PHP
- Uses('links');
-
-
- $title = 'Benutzer';
-
- echo '<h2>Benutzer</h2>';
-
- $res = $GLOBALS['db']->Execute('SELECT id, user FROM users ORDER BY user');
-
- echo '<form method="post" action="' . $GLOBALS['links']->GetNeonLink('Users:Handle') . '">';
-
- echo '<select name="id" size="15" class="userlist spaced-bottom">';
-
- while($row = $res->FetchRow()) {
- echo '<option value="' . $row[0] . '">' . $row[1] . '</option>';
- }
-
- echo '</select>';
- echo '<br />';
- echo '<input type="submit" name="new" value="{{New}}" /> ';
- echo '<input type="submit" name="group" value="{{Change group}}" /> ';
- echo '<input type="submit" name="password" value="{{Change password}}" /> ';
- echo '<input type="submit" name="rename" value="{{Rename}}" /> ';
- echo '<input type="submit" name="delete" value="{{Delete}}" />';
- echo '</form>';
-?>
- ]]>
- </code>
- </data>
-</page>