But you can omit *filter* most of the time (defaults to '*myfield*=%oldvalue%') and *hisfield* if it is the *dn*, and if there is only one field you are referring to you can omit the array, so for our department example this gives us:
.. code-block:: php
<?php
'plForeignKeys' => array(
'plForeignKeys' => [
'manager' => 'user'
)
]
Which is pretty straight forward.
...
...
@@ -144,11 +144,11 @@ If you do need to specify ACL categories, you can create an acl category by spec
.. code-block:: php
<?php
'plCategory' => array(
'acl' => array(
'description' => _('ACL'),
'objectClass' => array('gosaAcl','gosaRole')
)
),
'plCategory' => [
'acl' => [
'description' => _('ACL'),
'objectClass' => ['gosaAcl','gosaRole']
]
],
An ACL category only contains a description and a list of LDAP objectClasses (for some historical reason)