Added industry select array

This commit is contained in:
johnnyq 2023-11-08 22:54:33 -05:00
parent cbf15f4e81
commit 89cbdd1038
1 changed files with 28 additions and 1 deletions

View File

@ -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'
);
);