forked from PurdueIEEE/old-IEEE-Website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_committees.php
26 lines (24 loc) · 860 Bytes
/
_committees.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?php
/**
* Created by IntelliJ IDEA.
* User: Erik
* Date: 8/16/2018
* Time: 4:20 PM
*/
$committee_list = array(
'COMPUTER_SOCIETY' => array('Computer Society', '/csociety'),
'EMBS' => array('EMBS', '/embs'),
'GENERAL' => array('Purdue IEEE', '/'),
'GROWTH' => array('Growth & Engagement', '/growth'),
'INDUSTRIAL_RELATIONS' => array('Industrial Relations', '/ir'),
'LEARNING' => array('Learning', '/learning'),
'MTTS' => array('MTT-S', '/mtts'),
'PARTIEEE' => array('PARTIEEE', '/partieee'),
'ROV' => array('ROV', '/rov'),
'SOCIAL' => array('Social', '/social'),
'RACING' => array('Racing', '/racing'),
'SOFTWARE_SATURDAYS' => array('Software Saturdays', '/software')
);
foreach ($committee_list as $name => $url) {
define($name, '<a href="'.$url[1].'">'.$url[0].'</a>');
}