New table for menu structure
authorJoey Schulze <joey@infodrom.org>
Wed, 24 Feb 2010 18:07:23 +0000 (19:07 +0100)
committerJoey Schulze <joey@infodrom.org>
Wed, 24 Feb 2010 18:07:23 +0000 (19:07 +0100)
masks/sys_menu.php [new file with mode: 0644]

diff --git a/masks/sys_menu.php b/masks/sys_menu.php
new file mode 100644 (file)
index 0000000..f754e8a
--- /dev/null
@@ -0,0 +1,33 @@
+<?php
+
+$mask = array(
+             'table' => 'sys_menu',
+             'list' => array(
+                             'id' => array(
+                                           'name' => 'ID',
+                                           'visible' => false,
+                                           ),
+                             'name' => array(
+                                           'name' => 'Name',
+                                           'width' => 150,
+                                           ),
+                             'priority' => array(
+                                           'name' => 'Priorität',
+                                           'width' => 30,
+                                           'type' => 'number',
+                                           'specs' => "ClassName: 'alignright'",
+                                           ),
+                             'sys_user' => array(
+                                           'name' => 'Edit',
+                                           'width' => 50,
+                                           ),
+                             'sys_edit' => array(
+                                           'name' => 'Datum',
+                                           'width' => 80,
+                                           'type' => 'date',
+                                           ),
+                             ),
+             'rows' => 20,
+             );
+
+?>