3c508f67 by Kevin Burton

added company type in HTML

1 parent 51bd97bd
...@@ -278,6 +278,23 @@ class Vars { ...@@ -278,6 +278,23 @@ class Vars {
278 , 'Prof.' => 'Prof.' 278 , 'Prof.' => 'Prof.'
279 ); 279 );
280 280
281 public static $company_types = Array(
282 'advisory_firm' => "Advisory Firm"
283 , 'litigation_firm' => "Litigation Firm"
284 , 'venture_capital_firm' => "Venture Capital Firm"
285 , 'public_practice' => "Public Practice"
286 , 'government' => "Government"
287 , '' => "None"
288 , 'accounting_firm' => "Accounting Firm"
289 , 'special_valuation' => "Special Valuation"
290 , 'investment_bank' => "Investment Bank"
291 , 'academia' => "Academia"
292 , 'financial_institution' => "Financial Institution"
293 , 'pension_fund_co' => "Pension Fund Management Company"
294 , 'mutual_fund_co' => "Mutual Fund Management Company"
295 , 'merchant_bank' => "Merchant Bank"
296 );
297
281 public static $countries = Array( 298 public static $countries = Array(
282 'CA' => 'Canada' 299 'CA' => 'Canada'
283 , 'US' => 'United States' 300 , 'US' => 'United States'
......
...@@ -17,7 +17,6 @@ $uid = $_GET['uid']; ...@@ -17,7 +17,6 @@ $uid = $_GET['uid'];
17 CBV\load('CEHours'); 17 CBV\load('CEHours');
18 $cehours = CEHours\get_user_cehours($uid); 18 $cehours = CEHours\get_user_cehours($uid);
19 19
20
21 ?> 20 ?>
22 <div style="padding:10px 10px 0px 10px; min-width:760px;"> 21 <div style="padding:10px 10px 0px 10px; min-width:760px;">
23 <h2 style="margin-bottom:10px;padding-bottom:0px;">Continuing Education Hours... <a href="/wp-admin/admin-ajax.php?ajax=yes&post_action=create&action=build_cehour_form&uid=<?php echo $uid?>&indexed=0" id="admin_add_new_cehours" class="button add-new-h2">Add New</a></h2> 22 <h2 style="margin-bottom:10px;padding-bottom:0px;">Continuing Education Hours... <a href="/wp-admin/admin-ajax.php?ajax=yes&post_action=create&action=build_cehour_form&uid=<?php echo $uid?>&indexed=0" id="admin_add_new_cehours" class="button add-new-h2">Add New</a></h2>
......