Complete the simple person object.
authorGunnar Wrobel <p@rdus.de>
Mon, 6 Apr 2009 14:56:39 +0000 (16:56 +0200)
committerGunnar Wrobel <p@rdus.de>
Mon, 6 Apr 2009 14:56:39 +0000 (16:56 +0200)
koward/config/labels.php
koward/config/objects.php

index d119491..8cba862 100644 (file)
@@ -8,3 +8,4 @@ $labels['sn'] = _("Last name");
 $labels['snsuffix'] = _("Name suffix");
 $labels['personalTitle'] = _("Title");
 $labels['userPassword'] = _("Password");
+$labels['telephoneNumber'] = _("Phone");
index 27b00d4..9715a03 100644 (file)
@@ -31,6 +31,7 @@ $objects['person'] = array(
         'cn' => array(
             'title' => _("Common name"),
             'width' => 40,
+            'link_view'=> true,
         ),
         'sn' => array(
             'title' => _("Last name"),
@@ -41,15 +42,22 @@ $objects['person'] = array(
         'hide' => array(
             'objectClass',
             'id',
+           'cn',
+           'seeAlso',
+           'description',
         ),
         'order' => array(
             'sn' => 5,
             'snsuffix' => 6,
+            'userPassword' => 7,
         ),
         'fields' => array(
             'cn' => array(
                 'required' => false,
             ),
+            'userPassword' => array(
+                'required' => true,
+            ),
         ),
     ),
 );