mirror of https://github.com/itflow-org/itflow
Added industry select array
This commit is contained in:
parent
cbf15f4e81
commit
89cbdd1038
|
|
@ -212,6 +212,32 @@ $ticket_status_array = array (
|
|||
'Closed'
|
||||
);
|
||||
|
||||
$industry_select_array = array(
|
||||
"Accounting",
|
||||
"Agriculture",
|
||||
"Automotive",
|
||||
"Construction",
|
||||
"Education",
|
||||
"Entertainent",
|
||||
"Finance",
|
||||
"Government",
|
||||
"Healthcare",
|
||||
"Hospititality",
|
||||
"Information Technology",
|
||||
"Insurance",
|
||||
"Pharmacy",
|
||||
"Law",
|
||||
"Manufacturing",
|
||||
"Marketing & Advertising",
|
||||
"Military",
|
||||
"Non-Profit",
|
||||
"Real Estate",
|
||||
"Retail",
|
||||
"Services",
|
||||
"Transportation",
|
||||
"Other" // An 'Other' option for industries not listed
|
||||
);
|
||||
|
||||
$start_page_select_array = array (
|
||||
'dashboard.php'=>'Personal Dashboard',
|
||||
'dashboard_financial.php'=>'Administrative Dashboard',
|
||||
|
|
@ -219,4 +245,5 @@ $start_page_select_array = array (
|
|||
'clients.php'=> 'Client Management',
|
||||
'tickets.php'=> 'Support Tickets',
|
||||
'invoices.php' => 'Invoices'
|
||||
);
|
||||
);
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue