2009-07-29 05:51:51 +04:00
|
|
|
<?php
|
|
|
|
$orgs = array (
|
|
|
|
'C' => "Mozilla Corporation",
|
|
|
|
'F' => "Mozilla Foundation",
|
|
|
|
'J' => "Mozilla Japan",
|
|
|
|
'M' => "Mozilla Messaging",
|
|
|
|
'O' => "Mozilla Online",
|
|
|
|
'D' => "DISABLED"
|
|
|
|
);
|
|
|
|
|
|
|
|
$emp_type = array (
|
|
|
|
'E' => "Employee",
|
|
|
|
'C' => "Contractor",
|
|
|
|
'I' => "Intern",
|
|
|
|
'D' => "DISABLED"
|
|
|
|
);
|
|
|
|
|
|
|
|
$editable_fields = array(
|
2014-06-11 18:47:38 +04:00
|
|
|
'cn', 'title', 'telephoneNumber', 'mobile', 'description',
|
2009-09-05 22:56:42 +04:00
|
|
|
'other', 'im', 'mail', 'emailAlias', 'physicalDeliveryOfficeName',
|
2016-09-27 20:55:44 +03:00
|
|
|
'employeeType', 'bugzillaEmail', 'shirtsize', 'b2gNumber', 'roomNumber', 'githubProfile', 'workdayTimezone'
|
2009-07-29 05:51:51 +04:00
|
|
|
);
|
|
|
|
|
2016-09-08 06:52:56 +03:00
|
|
|
$deleteable_fields = array(
|
|
|
|
'emailAlias', 'mobile', 'im',
|
|
|
|
);
|
|
|
|
|
2009-07-29 05:51:51 +04:00
|
|
|
$office_cities = array(
|
2011-10-03 18:35:21 +04:00
|
|
|
'Mountain View' => 'US',
|
|
|
|
'San Francisco' => 'US',
|
|
|
|
'Auckland' => 'NZ',
|
|
|
|
'Beijing' => 'CN',
|
2011-10-05 00:48:47 +04:00
|
|
|
'Copenhagen' => 'DK',
|
|
|
|
'London' => 'GB',
|
2011-10-03 18:35:21 +04:00
|
|
|
'Paris' => 'FR',
|
|
|
|
'Tokyo' => 'JP',
|
2011-10-05 00:48:47 +04:00
|
|
|
'Toronto' => 'CA',
|
|
|
|
'Vancouver' => 'CA',
|
2011-10-18 22:49:14 +04:00
|
|
|
'Taipei' => 'TW',
|
2011-10-18 22:50:11 +04:00
|
|
|
'Portland' => 'US',
|
2012-05-17 16:17:07 +04:00
|
|
|
'Boston' => 'US',
|
2012-06-28 16:31:06 +04:00
|
|
|
'Berlin' => 'DE',
|
2011-10-03 18:35:21 +04:00
|
|
|
'Other' => 'Other'
|
2009-07-29 05:51:51 +04:00
|
|
|
);
|
|
|
|
|
2011-09-02 03:24:11 +04:00
|
|
|
$shirt_sizes = array(
|
|
|
|
'XS (M)',
|
|
|
|
'S (M)',
|
|
|
|
'M (M)',
|
|
|
|
'L (M)',
|
|
|
|
'XL (M)',
|
|
|
|
'XXL (M)',
|
|
|
|
'XXXL (M)',
|
|
|
|
'XS (F)',
|
|
|
|
'S (MF)',
|
|
|
|
'M (F)',
|
|
|
|
'L (F)',
|
2011-10-05 00:48:43 +04:00
|
|
|
'XL (F)',
|
2011-09-02 03:24:11 +04:00
|
|
|
'XXL (F)',
|
|
|
|
'XXXL (F)'
|
|
|
|
);
|
2011-10-05 02:54:51 +04:00
|
|
|
|
|
|
|
// Valid output formats. Must correspond to an output-{something}.inc file.
|
|
|
|
$output_formats = array(
|
|
|
|
'html',
|
|
|
|
'json',
|
|
|
|
'vcard',
|
|
|
|
);
|
2014-06-19 21:52:11 +04:00
|
|
|
$MONKEY_FREE_ARRAY = array('cn');
|