Webdev/WorkerMgmt: Difference between revisions

From MozillaWiki
Jump to navigation Jump to search
(Replaced content with 'DELETE')
 
Line 1: Line 1:
= Collection Thoughts for Worker Management Intranet App =
DELETE
https://intranet.mozilla.org/workermgmt/
 
== LDAP interaction in Worker Management App  ==
 
''LDAP is used ReadOnly in Worker management App''
 
I believe these two calls could be combined into one, to return the manager list with email and bugzilla login all in one.
 
=== 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
 
== Bugzilla Interaction in Worker Management App  ==
''to be documented further''
 
=== Files Bugs based on the Hiring form submitted ===

Latest revision as of 17:22, 22 March 2010

DELETE