Setting up the mapping array for groups: mapping-group
Set up which items and columns for groups to synchronize with FormFlow.
Example:
'mapping-group' => array(
'NAME_GROU' => 'cn', // group name
'PARENT_GROU' => 'manager', //immediate superior setting
'MANAGER_GROU' => 'memberboss', // group manager setting – the attributes might differ
),
Setting up the immediate superior and managers: synchro-group-mapp-parent-global-to-setting
Set up which of the values determines the selection of user or group to be the immediate superior.
'synchro-group-mapp-parent-global-to-setting'=>array(
/*DN_NAME_SUSY, NAME_GROU, GID_GROU*/
'PARENT_GROU' => 'DN_NAME_SUSY',
'MANAGER_GROU' => 'DN_NAME_SUSY'
),
If the value of the immediate superior parameter is in the following form:
cn=Admin,o=Software602
it is a dn name, and therefore you should assign PARENT_GROU DN_NAME_SUSY.
The parameter may also have the value of Software602, then it is most likely a NAME_GROU.
Setting up the mapping array for groups' first synchronization: first-synchro-group
Set up which attributes to use when synchronizing a group that is present both in the Directory and FormFlow, but has not been synchronized yet.
To synchronize groups using the name only, enter the following:
'NAME_GROU' => 'cn'
Example:
'first-synchro-group'=>array(
'NAME_GROU' => 'cn'
),