-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathportal_data.php
More file actions
138 lines (138 loc) · 5.56 KB
/
Copy pathportal_data.php
File metadata and controls
138 lines (138 loc) · 5.56 KB
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
<?php
$portal_data = [
"External" => [
[
"url" => "http://aegee.org",
"title" => "AEGEE Website",
"description" => "Official website",
"img" => "default-blue.png",
"color" => "#1468C5",
],
[
"url" => "http://aegee.blogactiv.eu/",
"title" => "External blog",
"description" => "Blog hosted on Blogactiv platform",
"img" => "default-blue.png",
"color" => "#1468C5",
],
[
"url" => "http://aegee.us7.list-manage.com/subscribe?u=7a170c64e0d3990f3f6629d21&id=fc8908d780",
"title" => "External newsletter",
"description" => "Bi-monthly newsletter for Partners & Supporters",
"img" => "default-blue.png",
"color" => "#1468C5",
],
[
"url" => "http://aegee.org/press/publications/key-to-europe/",
"title" => "Key to Europe",
"description" => "Yearbook - the annual report publication",
"img" => "none.png",
"color" => "#1468C5",
],
],
"Members" => [
[
"url" => "http://intranet.aegee.org",
"title" => "Intranet",
"description" => "European Events and internal documents ",
"img" => "default-yellow.png",
"color" => "#FBBA00",
],
[
"url" => "http://www.zeus.aegee.org/portal/",
"title" => "Internal News",
"description" => "Open calls and news from European Bodies",
"img" => "members-portal.png",
"color" => "#FBBA00",
],
[
"url" => "https://lists.aegee.org/join/AEGEENEWS-L",
"title" => "Internal Newsletter",
"description" => "Bi-weekly internal newsletter",
"img" => "default-yellow.png",
"color" => "#FBBA00",
],
[
"url" => "http://www.zeus.aegee.org/magazine/",
"title" => "The AEGEEan Magazine",
"description" => "AEGEE's online Magazine",
"img" => "none.png",
"color" => "#FBBA00",
],
[
"url" => "http://aegee.org/wiki",
"title" => "AEGEE Wiki",
"description" => "A collaborative knowledge backbone of AEGEE",
"img" => "wiki.png",
"color" => "#931991",
],
[
"url" => "https://www.zeus.aegee.org/forum",
"title" => "Forum",
"description" => "Place for structured discussions ",
"img" => "default-purple.png",
"color" => "#931991",
],
[
"url" => "https://lists.aegee.org/?HOME",
"title" => "Mailing lists",
"description" => "AEGEE mailing lists",
"img" => "default-purple.png",
"color" => "#931991",
],
[
"url" => "https://www.facebook.com/groups/aegeeans/",
"title" => "Facebook group",
"description" => "AEGEE's official group on Facebook",
"img" => "facebook.png",
"color" => "#931991",
],
],
"Statutory" => [
[
"url" => "https://www.zeus.aegee.org/statutory/",
"title" => "Statutory",
"description" => "Register for Statutory Events - Agorae and EPM",
"img" => "none.png",
"color" => "#A0C514",
],
[
"url" => "https://www.zeus.aegee.org/statutoryvote/jc/",
"title" => "Online voting",
"description" => "Online Voting for Agorae/General Assembly",
"img" => "none.png",
"color" => "#A0C514",
],
[
"url" => "http://www.zeus.aegee.org/portal/wp-content/uploads/CIA_General-Rules_v27.1.pdf",
"title" => "CIA",
"description" => "Statutes, regulation, working formats and motions",
"img" => "none.png",
"color" => "#A0C514",
],
[
"url" => "https://site2.aegee.org/wp-content/uploads/2017/07/CIA_General-Rules_v27.1.pdf/",
"title" => "Strategic Planning",
"description" => "Strategic Plan 2017-2020 and Action Agenda 2017-2018",
"img" => "none.png",
"color" => "#A0C514",
],
],
"Resources" => [
[
"url" => "http://www.zeus.aegee.org/portal/resources/pr-materials/",
"title" => "Visual Identity",
"description" => "Manual, logos, PR materials and more",
"img" => "default-red.png",
"color" => "#C51C13",
],
[
"url" => "http://www.zeus.aegee.org/portal/resources/pr-materials/",
"title" => "Booklets",
"description" => "Members Manual, LTC packages, guides etc.",
"img" => "default-red.png",
"color" => "#C51C13",
],
],
];
?>