Webdev/WorkerMgmt: Difference between revisions
< Webdev
Jump to navigation
Jump to search
(Created page with '== Use of LDAP in Worker Management App == LDAP is used ReadOnly in Worker management App === <br> LDAP->fetch_attribute === in newhire and contractor form $manager_na…') |
No edit summary |
||
Line 1: | Line 1: | ||
== | = Collection Thoughts for Worker Management Intranet App = | ||
https://intranet.mozilla.org/workermgmt/ | |||
== LDAP interaction in Worker Management App == | |||
LDAP is used ReadOnly in Worker management App | LDAP is used ReadOnly in Worker management App | ||
Line 18: | Line 21: | ||
Same in both, used to populate manager select list | Same in both, used to populate manager select list | ||
== Bugzilla Interaction in Worker Management App == |
Revision as of 16:48, 22 March 2010
Collection Thoughts for Worker Management Intranet App
https://intranet.mozilla.org/workermgmt/
LDAP interaction in Worker Management App
LDAP is used ReadOnly in Worker management App
LDAP->fetch_attribute
in newhire and contractor form
$manager_name = $ldap->fetchAttribute($fm->input('manager'), 'cn'); //where $fm->input('manager') is the ldap users email
Same in both, added to $form_input and sent to $bz_helper->newhire_filing($form_input);
LDAP->manager_list
in newhire and contractor form
$manager_list = $ldap->manager_list();
Same in both, used to populate manager select list