Failed Conditions
Pull Request — master (#1327)
by Nick
69:15 queued 59:17
created
www/includes/easyparliament/member.php 4 patches
Doc Comments   +7 added lines patch added patch discarded remove patch
@@ -489,6 +489,10 @@  discard block
 block discarded – undo
489 489
     public function house_text($house) {
490 490
         return $this->houses_pretty[$house];
491 491
     }
492
+
493
+    /**
494
+     * @return string
495
+     */
492 496
     public function constituency() { return $this->constituency; }
493 497
     public function party() { return $this->party; }
494 498
     public function party_text($party = null) {
@@ -607,6 +611,9 @@  discard block
 block discarded – undo
607 611
         }
608 612
     }
609 613
 
614
+    /**
615
+     * @param string $direction
616
+     */
610 617
     private function _previous_future_mps_query($direction) {
611 618
         $entered_house = $this->entered_house(HOUSE_TYPE_COMMONS);
612 619
         if (is_null($entered_house)) return '';
Please login to merge, or discard this patch.
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -362,7 +362,7 @@  discard block
 block discarded – undo
362 362
         $this->extra_info = array();
363 363
 
364 364
         $q = $this->db->query('SELECT * FROM moffice WHERE person=:person_id ORDER BY from_date DESC, moffice_id',
365
-                              array(':person_id' => $this->person_id));
365
+                                array(':person_id' => $this->person_id));
366 366
         for ($row=0; $row<$q->rows(); $row++) {
367 367
             $this->extra_info['office'][] = $q->row($row);
368 368
         }
@@ -450,7 +450,7 @@  discard block
 block discarded – undo
450 450
         $q = $this->db->query('select bill_id,session,title,sum(attending) as a,sum(chairman) as c
451 451
             from pbc_members, bills
452 452
             where bill_id = bills.id and person_id = ' . $this->person_id()
453
-             . ' group by bill_id order by session desc');
453
+                . ' group by bill_id order by session desc');
454 454
         $this->extra_info['pbc'] = array();
455 455
         for ($i=0; $i<$q->rows(); $i++) {
456 456
             $bill_id = $q->field($i, 'bill_id');
Please login to merge, or discard this patch.
Spacing   +36 added lines, -36 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-include_once INCLUDESPATH."easyparliament/glossary.php";
3
+include_once INCLUDESPATH . "easyparliament/glossary.php";
4 4
 
5 5
 class MEMBER {
6 6
 
@@ -112,15 +112,15 @@  discard block
 block discarded – undo
112 112
 
113 113
         $this->house_disp = 0;
114 114
         $last_party = null;
115
-        for ($row=0; $row<$q->rows(); $row++) {
115
+        for ($row = 0; $row < $q->rows(); $row++) {
116 116
             $house          = $q->field($row, 'house');
117 117
             if (!in_array($house, $this->houses)) $this->houses[] = $house;
118 118
             $const          = $q->field($row, 'constituency');
119
-            $party		= $q->field($row, 'party');
120
-            $entered_house	= $q->field($row, 'entered_house');
121
-            $left_house	= $q->field($row, 'left_house');
122
-            $entered_reason	= $q->field($row, 'entered_reason');
123
-            $left_reason	= $q->field($row, 'left_reason');
119
+            $party = $q->field($row, 'party');
120
+            $entered_house = $q->field($row, 'entered_house');
121
+            $left_house = $q->field($row, 'left_house');
122
+            $entered_reason = $q->field($row, 'entered_reason');
123
+            $left_reason = $q->field($row, 'left_reason');
124 124
 
125 125
             if (!isset($this->entered_house[$house]) || $entered_house < $this->entered_house[$house]['date']) {
126 126
                 $this->entered_house[$house] = array(
@@ -140,22 +140,22 @@  discard block
 block discarded – undo
140 140
                 );
141 141
             }
142 142
 
143
-            if ( $house==HOUSE_TYPE_ROYAL 					# The Monarch
144
-                || (!$this->house_disp && $house==HOUSE_TYPE_SCOTLAND)	# MSPs and
145
-                || (!$this->house_disp && $house==HOUSE_TYPE_NI)	# MLAs have lowest priority
146
-                || ($this->house_disp!=HOUSE_TYPE_LORDS && $house==HOUSE_TYPE_LORDS)	# Lords have highest priority
147
-                || (!$this->house_disp && $house==HOUSE_TYPE_COMMONS) # MPs
143
+            if ($house == HOUSE_TYPE_ROYAL 					# The Monarch
144
+                || (!$this->house_disp && $house == HOUSE_TYPE_SCOTLAND)	# MSPs and
145
+                || (!$this->house_disp && $house == HOUSE_TYPE_NI)	# MLAs have lowest priority
146
+                || ($this->house_disp != HOUSE_TYPE_LORDS && $house == HOUSE_TYPE_LORDS)	# Lords have highest priority
147
+                || (!$this->house_disp && $house == HOUSE_TYPE_COMMONS) # MPs
148 148
             ) {
149 149
                 $this->house_disp = $house;
150 150
                 $this->constituency = $const;
151 151
                 $this->party = $party;
152 152
 
153
-                $this->member_id	= $q->field($row, 'member_id');
154
-                $this->title		= $q->field($row, 'title');
153
+                $this->member_id = $q->field($row, 'member_id');
154
+                $this->title = $q->field($row, 'title');
155 155
                 $this->given_name = $q->field($row, 'given_name');
156 156
                 $this->family_name = $q->field($row, 'family_name');
157 157
                 $this->lordofname = $q->field($row, 'lordofname');
158
-                $this->person_id	= $q->field($row, 'person_id');
158
+                $this->person_id = $q->field($row, 'person_id');
159 159
             }
160 160
 
161 161
             if (($last_party && $party && $party != $last_party) || $left_reason == 'changed_party') {
@@ -199,13 +199,13 @@  discard block
 block discarded – undo
199 199
         }
200 200
     }
201 201
 
202
-    public function postcode_to_person_id($postcode, $house=null) {
203
-        twfy_debug ('MP', "postcode_to_person_id converting postcode to person");
202
+    public function postcode_to_person_id($postcode, $house = null) {
203
+        twfy_debug('MP', "postcode_to_person_id converting postcode to person");
204 204
         $constituency = strtolower(MySociety\TheyWorkForYou\Utility\Postcode::postcodeToConstituency($postcode));
205 205
         return $this->constituency_to_person_id($constituency, $house);
206 206
     }
207 207
 
208
-    public function constituency_to_person_id($constituency, $house=null) {
208
+    public function constituency_to_person_id($constituency, $house = null) {
209 209
         if ($constituency == '') {
210 210
             throw new MySociety\TheyWorkForYou\MemberException('Sorry, no constituency was found.');
211 211
         }
@@ -244,7 +244,7 @@  discard block
 block discarded – undo
244 244
         }
245 245
     }
246 246
 
247
-    public function name_to_person_id($name, $const='') {
247
+    public function name_to_person_id($name, $const = '') {
248 248
         global $this_page;
249 249
         if ($name == '') {
250 250
             throw new MySociety\TheyWorkForYou\MemberException('Sorry, no name was found.');
@@ -294,7 +294,7 @@  discard block
 block discarded – undo
294 294
 
295 295
         # More than one person ID matching the given name
296 296
         $person_ids = array();
297
-        for ($i=0; $i<$q->rows; ++$i) {
297
+        for ($i = 0; $i < $q->rows; ++$i) {
298 298
             $pid = $q->field($i, 'person_id');
299 299
             $person_ids[$pid] = 1;
300 300
         }
@@ -324,7 +324,7 @@  discard block
 block discarded – undo
324 324
         $q = $this->db->query($q, $params);
325 325
         if ($q->rows > 1) {
326 326
             $person_ids = array();
327
-            for ($i=0; $i<$q->rows(); ++$i) {
327
+            for ($i = 0; $i < $q->rows(); ++$i) {
328 328
                 $person_ids[$q->field($i, 'person_id')] = $q->field($i, 'constituency');
329 329
             }
330 330
             throw new MySociety\TheyWorkForYou\MemberMultipleException($person_ids);
@@ -342,7 +342,7 @@  discard block
 block discarded – undo
342 342
         global $THEUSER;
343 343
         if (is_object($THEUSER) && $THEUSER->postcode_is_set() && $this->current_member(1)) {
344 344
             $pc = $THEUSER->postcode();
345
-            twfy_debug ('MP', "set_users_mp converting postcode to person");
345
+            twfy_debug('MP', "set_users_mp converting postcode to person");
346 346
             $constituency = strtolower(MySociety\TheyWorkForYou\Utility\Postcode::postcodeToConstituency($pc));
347 347
             if ($constituency == strtolower($this->constituency())) {
348 348
                 $this->the_users_mp = true;
@@ -363,7 +363,7 @@  discard block
 block discarded – undo
363 363
 
364 364
         $q = $this->db->query('SELECT * FROM moffice WHERE person=:person_id ORDER BY from_date DESC, moffice_id',
365 365
                               array(':person_id' => $this->person_id));
366
-        for ($row=0; $row<$q->rows(); $row++) {
366
+        for ($row = 0; $row < $q->rows(); $row++) {
367 367
             $this->extra_info['office'][] = $q->row($row);
368 368
         }
369 369
 
@@ -418,9 +418,9 @@  discard block
 block discarded – undo
418 418
 
419 419
         if (isset($this->extra_info['public_whip_attendrank'])) {
420 420
             $prefix = ($this->house(HOUSE_TYPE_LORDS) ? 'L' : '');
421
-            $this->extra_info[$prefix.'public_whip_division_attendance_rank'] = $this->extra_info['public_whip_attendrank'];
422
-            $this->extra_info[$prefix.'public_whip_division_attendance_rank_outof'] = $this->extra_info['public_whip_attendrank_outof'];
423
-            $this->extra_info[$prefix.'public_whip_division_attendance_quintile'] = floor($this->extra_info['public_whip_attendrank'] / ($this->extra_info['public_whip_attendrank_outof']+1) * 5);
421
+            $this->extra_info[$prefix . 'public_whip_division_attendance_rank'] = $this->extra_info['public_whip_attendrank'];
422
+            $this->extra_info[$prefix . 'public_whip_division_attendance_rank_outof'] = $this->extra_info['public_whip_attendrank_outof'];
423
+            $this->extra_info[$prefix . 'public_whip_division_attendance_quintile'] = floor($this->extra_info['public_whip_attendrank'] / ($this->extra_info['public_whip_attendrank_outof'] + 1) * 5);
424 424
         }
425 425
         if ($this->house(HOUSE_TYPE_LORDS) && isset($this->extra_info['public_whip_division_attendance'])) {
426 426
             $this->extra_info['Lpublic_whip_division_attendance'] = $this->extra_info['public_whip_division_attendance'];
@@ -428,7 +428,7 @@  discard block
 block discarded – undo
428 428
         }
429 429
 
430 430
         if ($display && array_key_exists('register_member_interests_html', $this->extra_info) && ($this->extra_info['register_member_interests_html'] != '')) {
431
-            $args = array (
431
+            $args = array(
432 432
                 "sort" => "regexp_replace"
433 433
             );
434 434
             $GLOSSARY = new GLOSSARY($args);
@@ -436,7 +436,7 @@  discard block
 block discarded – undo
436 436
         $GLOSSARY->glossarise($this->extra_info['register_member_interests_html']);
437 437
         }
438 438
 
439
-        $q = $this->db->query('select count(*) as c from alerts where criteria like "%speaker:'.$this->person_id.'%" and confirmed and not deleted');
439
+        $q = $this->db->query('select count(*) as c from alerts where criteria like "%speaker:' . $this->person_id . '%" and confirmed and not deleted');
440 440
         $this->extra_info['number_of_alerts'] = $q->field(0, 'c');
441 441
 
442 442
         if (isset($this->extra_info['reading_ease'])) {
@@ -452,16 +452,16 @@  discard block
 block discarded – undo
452 452
             where bill_id = bills.id and person_id = ' . $this->person_id()
453 453
              . ' group by bill_id order by session desc');
454 454
         $this->extra_info['pbc'] = array();
455
-        for ($i=0; $i<$q->rows(); $i++) {
455
+        for ($i = 0; $i < $q->rows(); $i++) {
456 456
             $bill_id = $q->field($i, 'bill_id');
457
-            $c = $this->db->query('select count(*) as c from hansard where major=6 and minor='.$bill_id.' and htype=10');
457
+            $c = $this->db->query('select count(*) as c from hansard where major=6 and minor=' . $bill_id . ' and htype=10');
458 458
             $c = $c->field(0, 'c');
459 459
             $title = $q->field($i, 'title');
460 460
             $attending = $q->field($i, 'a');
461 461
             $chairman = $q->field($i, 'c');
462 462
             $this->extra_info['pbc'][$bill_id] = array(
463 463
                 'title' => $title, 'session' => $q->field($i, 'session'),
464
-                'attending'=>$attending, 'chairman'=>($chairman>0), 'outof' => $c
464
+                'attending'=>$attending, 'chairman'=>($chairman > 0), 'outof' => $c
465 465
             );
466 466
         }
467 467
 
@@ -476,7 +476,7 @@  discard block
 block discarded – undo
476 476
     public function family_name() { return $this->family_name; }
477 477
     public function full_name($no_mp_title = false) {
478 478
         $title = $this->title;
479
-        if ($no_mp_title && ($this->house_disp==HOUSE_TYPE_COMMONS || $this->house_disp==HOUSE_TYPE_NI || $this->house_disp==HOUSE_TYPE_SCOTLAND))
479
+        if ($no_mp_title && ($this->house_disp == HOUSE_TYPE_COMMONS || $this->house_disp == HOUSE_TYPE_NI || $this->house_disp == HOUSE_TYPE_SCOTLAND))
480 480
             $title = '';
481 481
         return member_full_name($this->house_disp, $title, $this->given_name, $this->family_name, $this->lordofname);
482 482
     }
@@ -509,9 +509,9 @@  discard block
 block discarded – undo
509 509
     public function entered_house_text($entered_house) {
510 510
         if (!$entered_house) return '';
511 511
         list($year, $month, $day) = explode('-', $entered_house);
512
-        if ($month==1 && $day==1 && $this->house(HOUSE_TYPE_LORDS)) {
512
+        if ($month == 1 && $day == 1 && $this->house(HOUSE_TYPE_LORDS)) {
513 513
             return $year;
514
-        } elseif ($month==0 && $day==0) {
514
+        } elseif ($month == 0 && $day == 0) {
515 515
             return $year;
516 516
         } elseif (checkdate($month, $day, $year) && $year != '9999') {
517 517
             return format_date($entered_house, LONGDATEFORMAT);
@@ -531,7 +531,7 @@  discard block
 block discarded – undo
531 531
         list($year, $month, $day) = explode('-', $left_house);
532 532
         if (checkdate($month, $day, $year) && $year != '9999') {
533 533
             return format_date($left_house, LONGDATEFORMAT);
534
-        } elseif ($month==0 && $day==0) {
534
+        } elseif ($month == 0 && $day == 0) {
535 535
             # Left house date is stored as 1942-00-00 to mean "at some point in 1941"
536 536
             return $year - 1;
537 537
         } else {
@@ -633,7 +633,7 @@  discard block
 block discarded – undo
633 633
             $name = $q->field($r, 'given_name') . ' ' . $q->field($r, 'family_name');
634 634
             if ($last_pid != $pid) {
635 635
                 $mships[] = array(
636
-                    'href' => WEBPATH . 'mp/?pid='.$pid,
636
+                    'href' => WEBPATH . 'mp/?pid=' . $pid,
637 637
                     'text' => $name
638 638
                 );
639 639
                 $last_pid = $pid;
Please login to merge, or discard this patch.
Braces   +116 added lines, -60 removed lines patch added patch discarded remove patch
@@ -71,15 +71,19 @@  discard block
 block discarded – undo
71 71
         $person_id = '';
72 72
         if (isset($args['member_id']) && is_numeric($args['member_id'])) {
73 73
             $person_id = $this->member_id_to_person_id($args['member_id']);
74
-        } elseif (isset($args['name'])) {
74
+        }
75
+        elseif (isset($args['name'])) {
75 76
             $con = isset($args['constituency']) ? $args['constituency'] : '';
76 77
             $person_id = $this->name_to_person_id($args['name'], $con);
77
-        } elseif (isset($args['constituency'])) {
78
+        }
79
+        elseif (isset($args['constituency'])) {
78 80
             $still_in_office = isset($args['still_in_office']) ? $args['still_in_office'] : false;
79 81
             $person_id = $this->constituency_to_person_id($args['constituency'], $house, $still_in_office);
80
-        } elseif (isset($args['postcode'])) {
82
+        }
83
+        elseif (isset($args['postcode'])) {
81 84
             $person_id = $this->postcode_to_person_id($args['postcode'], $house);
82
-        } elseif (isset($args['person_id']) && is_numeric($args['person_id'])) {
85
+        }
86
+        elseif (isset($args['person_id']) && is_numeric($args['person_id'])) {
83 87
             $person_id = $args['person_id'];
84 88
             $q = $this->db->query("SELECT gid_to FROM gidredirect
85 89
                     WHERE gid_from = :gid_from",
@@ -114,7 +118,9 @@  discard block
 block discarded – undo
114 118
         $last_party = null;
115 119
         for ($row=0; $row<$q->rows(); $row++) {
116 120
             $house          = $q->field($row, 'house');
117
-            if (!in_array($house, $this->houses)) $this->houses[] = $house;
121
+            if (!in_array($house, $this->houses)) {
122
+                $this->houses[] = $house;
123
+            }
118 124
             $const          = $q->field($row, 'constituency');
119 125
             $party		= $q->field($row, 'party');
120 126
             $entered_house	= $q->field($row, 'entered_house');
@@ -194,7 +200,8 @@  discard block
 block discarded – undo
194 200
         }
195 201
         if ($q->rows > 0) {
196 202
             return $q->field(0, 'person_id');
197
-        } else {
203
+        }
204
+        else {
198 205
             throw new MySociety\TheyWorkForYou\MemberException('Sorry, there is no member with a member ID of "' . _htmlentities($member_id) . '".');
199 206
         }
200 207
     }
@@ -215,7 +222,9 @@  discard block
 block discarded – undo
215 222
         }
216 223
 
217 224
         $normalised = MySociety\TheyWorkForYou\Utility\Constituencies::normaliseConstituencyName($constituency);
218
-        if ($normalised) $constituency = $normalised;
225
+        if ($normalised) {
226
+            $constituency = $normalised;
227
+        }
219 228
 
220 229
         $params = array();
221 230
 
@@ -239,7 +248,8 @@  discard block
 block discarded – undo
239 248
 
240 249
         if ($q->rows > 0) {
241 250
             return $q->field(0, 'person_id');
242
-        } else {
251
+        }
252
+        else {
243 253
             throw new MySociety\TheyWorkForYou\MemberException('Sorry, there is no current member for the "' . _htmlentities(ucwords($constituency)) . '" constituency.');
244 254
         }
245 255
     }
@@ -254,10 +264,12 @@  discard block
 block discarded – undo
254 264
         $q = "SELECT person_id FROM person_names WHERE type = 'name' ";
255 265
         if ($this_page == 'peer') {
256 266
             $success = preg_match('#^(.*?) (.*?) of (.*?)$#', $name, $m);
257
-            if (!$success)
258
-                $success = preg_match('#^(.*?)() of (.*?)$#', $name, $m);
259
-            if (!$success)
260
-                $success = preg_match('#^(.*?) (.*?)()$#', $name, $m);
267
+            if (!$success) {
268
+                            $success = preg_match('#^(.*?)() of (.*?)$#', $name, $m);
269
+            }
270
+            if (!$success) {
271
+                            $success = preg_match('#^(.*?) (.*?)()$#', $name, $m);
272
+            }
261 273
             if (!$success) {
262 274
                 throw new MySociety\TheyWorkForYou\MemberException('Sorry, that name was not recognised.');
263 275
             }
@@ -265,10 +277,12 @@  discard block
 block discarded – undo
265 277
             $params[':family_name'] = $m[2];
266 278
             $params[':lordofname'] = $m[3];
267 279
             $q .= "AND title = :title AND family_name = :family_name AND lordofname = :lordofname";
268
-        } elseif ($this_page == 'msp' || $this_page == 'mla' || strstr($this_page, 'mp')) {
280
+        }
281
+        elseif ($this_page == 'msp' || $this_page == 'mla' || strstr($this_page, 'mp')) {
269 282
             $success = preg_match('#^(.*?) (.*?) (.*?)$#', $name, $m);
270
-            if (!$success)
271
-                $success = preg_match('#^(.*?)() (.*)$#', $name, $m);
283
+            if (!$success) {
284
+                            $success = preg_match('#^(.*?)() (.*)$#', $name, $m);
285
+            }
272 286
             if (!$success) {
273 287
                 throw new MySociety\TheyWorkForYou\MemberException('Sorry, that name was not recognised.');
274 288
             }
@@ -288,7 +302,8 @@  discard block
 block discarded – undo
288 302
         $q = $this->db->query($q, $params);
289 303
         if (!$q->rows) {
290 304
             throw new MySociety\TheyWorkForYou\MemberException('Sorry, we could not find anyone with that name.');
291
-        } elseif ($q->rows == 1) {
305
+        }
306
+        elseif ($q->rows == 1) {
292 307
             return $q->field(0, 'person_id');
293 308
         }
294 309
 
@@ -303,13 +318,17 @@  discard block
 block discarded – undo
303 318
         $params = array();
304 319
         if ($this_page == 'peer') {
305 320
             $params[':house'] = HOUSE_TYPE_LORDS;
306
-        } elseif ($this_page == 'msp') {
321
+        }
322
+        elseif ($this_page == 'msp') {
307 323
             $params[':house'] = HOUSE_TYPE_SCOTLAND;
308
-        } elseif ($this_page == 'mla') {
324
+        }
325
+        elseif ($this_page == 'mla') {
309 326
             $params[':house'] = HOUSE_TYPE_NI;
310
-        } elseif ($this_page == 'royal') {
327
+        }
328
+        elseif ($this_page == 'royal') {
311 329
             $params[':house'] = HOUSE_TYPE_ROYAL;
312
-        } else {
330
+        }
331
+        else {
313 332
             $params[':house'] = HOUSE_TYPE_COMMONS;
314 333
         }
315 334
 
@@ -328,11 +347,14 @@  discard block
 block discarded – undo
328 347
                 $person_ids[$q->field($i, 'person_id')] = $q->field($i, 'constituency');
329 348
             }
330 349
             throw new MySociety\TheyWorkForYou\MemberMultipleException($person_ids);
331
-        } elseif ($q->rows > 0) {
350
+        }
351
+        elseif ($q->rows > 0) {
332 352
             return $q->field(0, 'person_id');
333
-        } elseif ($const) {
353
+        }
354
+        elseif ($const) {
334 355
             return $this->name_to_person_id($name);
335
-        } else {
356
+        }
357
+        else {
336 358
             throw new MySociety\TheyWorkForYou\MemberException('Sorry, there is no current member with that name.');
337 359
         }
338 360
     }
@@ -403,16 +425,21 @@  discard block
 block discarded – undo
403 425
         if (array_key_exists('public_whip_rebellions', $this->extra_info)) {
404 426
             $rebellions = $this->extra_info['public_whip_rebellions'];
405 427
             $rebel_desc = "<unknown>";
406
-            if ($rebellions == 0)
407
-                $rebel_desc = "never";
408
-            elseif ($rebellions <= 1)
409
-                $rebel_desc = "hardly ever";
410
-            elseif ($rebellions <= 3)
411
-                $rebel_desc = "occasionally";
412
-            elseif ($rebellions <= 5)
413
-                $rebel_desc = "sometimes";
414
-            elseif ($rebellions > 5)
415
-                $rebel_desc = "quite often";
428
+            if ($rebellions == 0) {
429
+                            $rebel_desc = "never";
430
+            }
431
+            elseif ($rebellions <= 1) {
432
+                            $rebel_desc = "hardly ever";
433
+            }
434
+            elseif ($rebellions <= 3) {
435
+                            $rebel_desc = "occasionally";
436
+            }
437
+            elseif ($rebellions <= 5) {
438
+                            $rebel_desc = "sometimes";
439
+            }
440
+            elseif ($rebellions > 5) {
441
+                            $rebel_desc = "quite often";
442
+            }
416 443
             $this->extra_info['public_whip_rebel_description'] = $rebel_desc;
417 444
         }
418 445
 
@@ -476,8 +503,9 @@  discard block
 block discarded – undo
476 503
     public function family_name() { return $this->family_name; }
477 504
     public function full_name($no_mp_title = false) {
478 505
         $title = $this->title;
479
-        if ($no_mp_title && ($this->house_disp==HOUSE_TYPE_COMMONS || $this->house_disp==HOUSE_TYPE_NI || $this->house_disp==HOUSE_TYPE_SCOTLAND))
480
-            $title = '';
506
+        if ($no_mp_title && ($this->house_disp==HOUSE_TYPE_COMMONS || $this->house_disp==HOUSE_TYPE_NI || $this->house_disp==HOUSE_TYPE_SCOTLAND)) {
507
+                    $title = '';
508
+        }
481 509
         return member_full_name($this->house_disp, $title, $this->given_name, $this->family_name, $this->lordofname);
482 510
     }
483 511
     public function houses() {
@@ -493,48 +521,62 @@  discard block
 block discarded – undo
493 521
     public function party() { return $this->party; }
494 522
     public function party_text($party = null) {
495 523
         global $parties;
496
-        if (!$party)
497
-            $party = $this->party;
524
+        if (!$party) {
525
+                    $party = $this->party;
526
+        }
498 527
         if (isset($parties[$party])) {
499 528
             return $parties[$party];
500
-        } else {
529
+        }
530
+        else {
501 531
             return $party;
502 532
         }
503 533
     }
504 534
 
505 535
     public function entered_house($house = 0) {
506
-        if ($house) return array_key_exists($house, $this->entered_house) ? $this->entered_house[$house] : null;
536
+        if ($house) {
537
+            return array_key_exists($house, $this->entered_house) ? $this->entered_house[$house] : null;
538
+        }
507 539
         return $this->entered_house;
508 540
     }
509 541
     public function entered_house_text($entered_house) {
510
-        if (!$entered_house) return '';
542
+        if (!$entered_house) {
543
+            return '';
544
+        }
511 545
         list($year, $month, $day) = explode('-', $entered_house);
512 546
         if ($month==1 && $day==1 && $this->house(HOUSE_TYPE_LORDS)) {
513 547
             return $year;
514
-        } elseif ($month==0 && $day==0) {
548
+        }
549
+        elseif ($month==0 && $day==0) {
515 550
             return $year;
516
-        } elseif (checkdate($month, $day, $year) && $year != '9999') {
551
+        }
552
+        elseif (checkdate($month, $day, $year) && $year != '9999') {
517 553
             return format_date($entered_house, LONGDATEFORMAT);
518
-        } else {
554
+        }
555
+        else {
519 556
             return "n/a";
520 557
         }
521 558
     }
522 559
 
523 560
     public function left_house($house = null) {
524
-        if (!is_null($house))
525
-            return array_key_exists($house, $this->left_house) ? $this->left_house[$house] : null;
561
+        if (!is_null($house)) {
562
+                    return array_key_exists($house, $this->left_house) ? $this->left_house[$house] : null;
563
+        }
526 564
         return $this->left_house;
527 565
     }
528 566
 
529 567
     public function left_house_text($left_house) {
530
-        if (!$left_house) return '';
568
+        if (!$left_house) {
569
+            return '';
570
+        }
531 571
         list($year, $month, $day) = explode('-', $left_house);
532 572
         if (checkdate($month, $day, $year) && $year != '9999') {
533 573
             return format_date($left_house, LONGDATEFORMAT);
534
-        } elseif ($month==0 && $day==0) {
574
+        }
575
+        elseif ($month==0 && $day==0) {
535 576
             # Left house date is stored as 1942-00-00 to mean "at some point in 1941"
536 577
             return $year - 1;
537
-        } else {
578
+        }
579
+        else {
538 580
             return "n/a";
539 581
         }
540 582
     }
@@ -543,7 +585,8 @@  discard block
 block discarded – undo
543 585
     public function entered_reason_text($entered_reason) {
544 586
         if (isset($this->reasons[$entered_reason])) {
545 587
             return $this->reasons[$entered_reason];
546
-        } else {
588
+        }
589
+        else {
547 590
             return $entered_reason;
548 591
         }
549 592
     }
@@ -557,13 +600,16 @@  discard block
 block discarded – undo
557 600
                 $max = $q->field(0, 'max');
558 601
                 if ($max == $left_house) {
559 602
                     return $left_reason[0];
560
-                } else {
603
+                }
604
+                else {
561 605
                     return $left_reason[1];
562 606
                 }
563
-            } else {
607
+            }
608
+            else {
564 609
                 return $left_reason;
565 610
             }
566
-        } else {
611
+        }
612
+        else {
567 613
             return $left_reason;
568 614
         }
569 615
     }
@@ -576,7 +622,9 @@  discard block
 block discarded – undo
576 622
             $lh = $this->left_house($h);
577 623
             $current[$h] = ($lh['date'] == '9999-12-31');
578 624
         }
579
-        if ($house) return $current[$house];
625
+        if ($house) {
626
+            return $current[$house];
627
+        }
580 628
         return $current;
581 629
     }
582 630
 
@@ -586,13 +634,17 @@  discard block
 block discarded – undo
586 634
         $house = $this->house_disp;
587 635
         if ($house == HOUSE_TYPE_COMMONS) {
588 636
             $URL = new \MySociety\TheyWorkForYou\Url('mp');
589
-        } elseif ($house == HOUSE_TYPE_LORDS) {
637
+        }
638
+        elseif ($house == HOUSE_TYPE_LORDS) {
590 639
             $URL = new \MySociety\TheyWorkForYou\Url('peer');
591
-        } elseif ($house == HOUSE_TYPE_NI) {
640
+        }
641
+        elseif ($house == HOUSE_TYPE_NI) {
592 642
             $URL = new \MySociety\TheyWorkForYou\Url('mla');
593
-        } elseif ($house == HOUSE_TYPE_SCOTLAND) {
643
+        }
644
+        elseif ($house == HOUSE_TYPE_SCOTLAND) {
594 645
             $URL = new \MySociety\TheyWorkForYou\Url('msp');
595
-        } elseif ($house == HOUSE_TYPE_ROYAL) {
646
+        }
647
+        elseif ($house == HOUSE_TYPE_ROYAL) {
596 648
             $URL = new \MySociety\TheyWorkForYou\Url('royal');
597 649
         }
598 650
         $member_url = make_member_url($this->full_name(true), $this->constituency(), $house, $this->person_id());
@@ -602,17 +654,21 @@  discard block
 block discarded – undo
602 654
                 $protocol = 'http://';
603 655
             }
604 656
             return $protocol . DOMAIN . $URL->generate('none') . $member_url;
605
-        } else {
657
+        }
658
+        else {
606 659
             return $URL->generate('none') . $member_url;
607 660
         }
608 661
     }
609 662
 
610 663
     private function _previous_future_mps_query($direction) {
611 664
         $entered_house = $this->entered_house(HOUSE_TYPE_COMMONS);
612
-        if (is_null($entered_house)) return '';
665
+        if (is_null($entered_house)) {
666
+            return '';
667
+        }
613 668
         if ($direction == '>') {
614 669
             $order = '';
615
-        } else {
670
+        }
671
+        else {
616 672
             $order = 'DESC';
617 673
         }
618 674
         $q = $this->db->query('SELECT *
Please login to merge, or discard this patch.
classes/FacebookLogin.php 5 patches
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -23,6 +23,9 @@
 block discarded – undo
23 23
         return $this->fb;
24 24
     }
25 25
 
26
+    /**
27
+     * @return string
28
+     */
26 29
     public function getLoginURL() {
27 30
         $helper = $this->getFacebookObject()->getRedirectLoginHelper();
28 31
         $permissions = ['email'];
Please login to merge, or discard this patch.
Indentation   +24 added lines, -24 removed lines patch added patch discarded remove patch
@@ -13,11 +13,11 @@  discard block
 block discarded – undo
13 13
 
14 14
     public function getFacebookObject() {
15 15
         if (!isset($this->fb)) {
16
-          $this->fb = new \Facebook\Facebook([
16
+            $this->fb = new \Facebook\Facebook([
17 17
             'app_id' => FACEBOOK_APP_ID,
18 18
             'app_secret' => FACEBOOK_APP_SECRET,
19 19
             'default_graph_version' => 'v2.2',
20
-          ]);
20
+            ]);
21 21
         }
22 22
 
23 23
         return $this->fb;
@@ -30,46 +30,46 @@  discard block
 block discarded – undo
30 30
     }
31 31
 
32 32
     public function handleFacebookRedirect() {
33
-      $helper = $this->getFacebookObject()->getRedirectLoginHelper();
33
+        $helper = $this->getFacebookObject()->getRedirectLoginHelper();
34 34
 
35
-      $data = array('login_url' => $this->getLoginURL());
35
+        $data = array('login_url' => $this->getLoginURL());
36 36
 
37
-      try {
37
+        try {
38 38
         $accessToken = $helper->getAccessToken();
39
-      } catch(\Facebook\Exceptions\FacebookResponseException $e) {
39
+        } catch(\Facebook\Exceptions\FacebookResponseException $e) {
40 40
         $data['error'] = 'Graph returned an error: ' . $e->getMessage();
41 41
         return $data;
42
-      } catch(\Facebook\Exceptions\FacebookSDKException $e) {
42
+        } catch(\Facebook\Exceptions\FacebookSDKException $e) {
43 43
         $data['error'] = 'Facebook SDK returned an error: ' . $e->getMessage();
44 44
         return $data;
45
-      }
45
+        }
46 46
 
47
-      $token = $this->checkAccessToken($accessToken);
47
+        $token = $this->checkAccessToken($accessToken);
48 48
 
49
-      if ($token) {
50
-          return array('token' => $token);
51
-      } else {
52
-          $data['error'] = 'Problem getting Facebook token';
53
-          return $data;
54
-      }
49
+        if ($token) {
50
+            return array('token' => $token);
51
+        } else {
52
+            $data['error'] = 'Problem getting Facebook token';
53
+            return $data;
54
+        }
55 55
     }
56 56
 
57 57
 
58 58
     private function checkAccessToken($accessToken) {
59
-      if (!isset($accessToken)) {
60
-          return False;
61
-      }
59
+        if (!isset($accessToken)) {
60
+            return False;
61
+        }
62 62
 
63
-      if (! $accessToken->isLongLived()) {
63
+        if (! $accessToken->isLongLived()) {
64 64
         $oAuth2Client = $this->getFacebookObject()->getOAuth2Client();
65 65
         try {
66
-          $accessToken = $oAuth2Client->getLongLivedAccessToken($accessToken);
66
+            $accessToken = $oAuth2Client->getLongLivedAccessToken($accessToken);
67 67
         } catch (\Facebook\Exceptions\FacebookSDKException $e) {
68
-          return False;
68
+            return False;
69
+        }
69 70
         }
70
-      }
71 71
 
72
-      return $accessToken;
72
+        return $accessToken;
73 73
     }
74 74
 
75 75
     public function loginUser($accessToken) {
@@ -158,7 +158,7 @@  discard block
 block discarded – undo
158 158
             'optin' => $THEUSER->optin(),
159 159
             'emailpublic' => False,
160 160
             'password' => '',
161
-         );
161
+            );
162 162
 
163 163
         $THEUSER->update_self_no_confirm($details);
164 164
     }
Please login to merge, or discard this patch.
Upper-Lower-Casing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
 
58 58
     private function checkAccessToken($accessToken) {
59 59
       if (!isset($accessToken)) {
60
-          return False;
60
+          return false;
61 61
       }
62 62
 
63 63
       if (! $accessToken->isLongLived()) {
@@ -65,7 +65,7 @@  discard block
 block discarded – undo
65 65
         try {
66 66
           $accessToken = $oAuth2Client->getLongLivedAccessToken($accessToken);
67 67
         } catch (\Facebook\Exceptions\FacebookSDKException $e) {
68
-          return False;
68
+          return false;
69 69
         }
70 70
       }
71 71
 
@@ -86,7 +86,7 @@  discard block
 block discarded – undo
86 86
         $expires = intval($accessToken->getExpiresAt()->format('U'));
87 87
         twfy_debug("THEUSER", "Facebook access token expires at " . $expires);
88 88
 
89
-        $success = False;
89
+        $success = false;
90 90
         if ($user_id) {
91 91
             twfy_debug("THEUSER", "Faceook user exists in the database: " . $user_id);
92 92
             $success = $THEUSER->init($user_id);
@@ -112,7 +112,7 @@  discard block
 block discarded – undo
112 112
             return $logged_in;
113 113
         }
114 114
 
115
-        return False;
115
+        return false;
116 116
     }
117 117
 
118 118
     public function createUser($accessToken, $user) {
@@ -128,9 +128,9 @@  discard block
 block discarded – undo
128 128
             'url' => '',
129 129
             'status' => '',
130 130
             'password' => '',
131
-            'optin' => False,
132
-            'emailpublic' => False,
133
-            'mp_alert' => False,
131
+            'optin' => false,
132
+            'emailpublic' => false,
133
+            'mp_alert' => false,
134 134
             'facebook_id' => $user['id']
135 135
         );
136 136
         $added = $THEUSER->add($details, false);
@@ -156,7 +156,7 @@  discard block
 block discarded – undo
156 156
             'postcode' => $THEUSER->postcode(),
157 157
             'url' => $THEUSER->url(),
158 158
             'optin' => $THEUSER->optin(),
159
-            'emailpublic' => False,
159
+            'emailpublic' => false,
160 160
             'password' => '',
161 161
          );
162 162
 
Please login to merge, or discard this patch.
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -36,10 +36,10 @@  discard block
 block discarded – undo
36 36
 
37 37
       try {
38 38
         $accessToken = $helper->getAccessToken();
39
-      } catch(\Facebook\Exceptions\FacebookResponseException $e) {
39
+      } catch (\Facebook\Exceptions\FacebookResponseException $e) {
40 40
         $data['error'] = 'Graph returned an error: ' . $e->getMessage();
41 41
         return $data;
42
-      } catch(\Facebook\Exceptions\FacebookSDKException $e) {
42
+      } catch (\Facebook\Exceptions\FacebookSDKException $e) {
43 43
         $data['error'] = 'Facebook SDK returned an error: ' . $e->getMessage();
44 44
         return $data;
45 45
       }
@@ -60,7 +60,7 @@  discard block
 block discarded – undo
60 60
           return False;
61 61
       }
62 62
 
63
-      if (! $accessToken->isLongLived()) {
63
+      if (!$accessToken->isLongLived()) {
64 64
         $oAuth2Client = $this->getFacebookObject()->getOAuth2Client();
65 65
         try {
66 66
           $accessToken = $oAuth2Client->getLongLivedAccessToken($accessToken);
Please login to merge, or discard this patch.
Braces   +4 added lines, -2 removed lines patch added patch discarded remove patch
@@ -48,7 +48,8 @@  discard block
 block discarded – undo
48 48
 
49 49
       if ($token) {
50 50
           return array('token' => $token);
51
-      } else {
51
+      }
52
+      else {
52 53
           $data['error'] = 'Problem getting Facebook token';
53 54
           return $data;
54 55
       }
@@ -95,7 +96,8 @@  discard block
 block discarded – undo
95 96
                 $THEUSER->add_facebook_id($user['id']);
96 97
             }
97 98
             twfy_debug("THEUSER", "inited user has id : " . $THEUSER->user_id());
98
-        } else {
99
+        }
100
+        else {
99 101
             twfy_debug("THEUSER", "Faceook user does not exist in the database");
100 102
             $success = $this->createUser($accessToken, $user);
101 103
         }
Please login to merge, or discard this patch.
classes/Model/Featured.php 4 patches
Doc Comments   +8 added lines patch added patch discarded remove patch
@@ -52,6 +52,11 @@  discard block
 block discarded – undo
52 52
         $this->_set('featured_related', $related);
53 53
     }
54 54
 
55
+    /**
56
+     * @param string $key
57
+     *
58
+     * @return string
59
+     */
55 60
     private function _get($key) {
56 61
         $text = NULL;
57 62
 
@@ -72,6 +77,9 @@  discard block
 block discarded – undo
72 77
         return $text;
73 78
     }
74 79
 
80
+    /**
81
+     * @param string $key
82
+     */
75 83
     private function _set($key, $value) {
76 84
         if ( trim($value) == '' ) {
77 85
             $value = NULL;
Please login to merge, or discard this patch.
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -64,7 +64,7 @@  discard block
 block discarded – undo
64 64
 
65 65
         if ($q->rows) {
66 66
             $text = $q->field(0, 'value');
67
-            if ( trim($text) == '' ) {
67
+            if (trim($text) == '') {
68 68
                 $text = NULL;
69 69
             }
70 70
         }
@@ -73,7 +73,7 @@  discard block
 block discarded – undo
73 73
     }
74 74
 
75 75
     private function _set($key, $value) {
76
-        if ( trim($value) == '' ) {
76
+        if (trim($value) == '') {
77 77
             $value = NULL;
78 78
         }
79 79
         $check_q = $this->db->query(
@@ -82,7 +82,7 @@  discard block
 block discarded – undo
82 82
                 ':key' => $key
83 83
             )
84 84
         );
85
-        if ( $check_q->rows ) {
85
+        if ($check_q->rows) {
86 86
             $set_q = $this->db->query("UPDATE editorial set value = :value WHERE item = :key",
87 87
                 array(
88 88
                     ':key' => $key,
@@ -98,7 +98,7 @@  discard block
 block discarded – undo
98 98
             );
99 99
         }
100 100
 
101
-        if ( $set_q->success() ) {
101
+        if ($set_q->success()) {
102 102
             return true;
103 103
         }
104 104
         return false;
Please login to merge, or discard this patch.
Upper-Lower-Casing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
     }
54 54
 
55 55
     private function _get($key) {
56
-        $text = NULL;
56
+        $text = null;
57 57
 
58 58
         $q = $this->db->query(
59 59
             "SELECT value FROM editorial WHERE item = :key",
@@ -65,7 +65,7 @@  discard block
 block discarded – undo
65 65
         if ($q->rows) {
66 66
             $text = $q->field(0, 'value');
67 67
             if ( trim($text) == '' ) {
68
-                $text = NULL;
68
+                $text = null;
69 69
             }
70 70
         }
71 71
 
@@ -74,7 +74,7 @@  discard block
 block discarded – undo
74 74
 
75 75
     private function _set($key, $value) {
76 76
         if ( trim($value) == '' ) {
77
-            $value = NULL;
77
+            $value = null;
78 78
         }
79 79
         $check_q = $this->db->query(
80 80
             "SELECT value FROM editorial WHERE item = :key",
Please login to merge, or discard this patch.
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -89,7 +89,8 @@
 block discarded – undo
89 89
                     ':value' => $value
90 90
                 )
91 91
             );
92
-        } else {
92
+        }
93
+        else {
93 94
             $set_q = $this->db->query("INSERT INTO editorial (item, value ) VALUES (:key, :value)",
94 95
                 array(
95 96
                     ':key' => $key,
Please login to merge, or discard this patch.
www/includes/test/utility_test.php 2 patches
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -12,11 +12,11 @@
 block discarded – undo
12 12
 
13 13
 class UtilityTest extends UnitTestCase{
14 14
 
15
-  public function testVerpEnvelopeSenderCanCreateStandardSender() {
15
+    public function testVerpEnvelopeSenderCanCreateStandardSender() {
16 16
     $sender = twfy_verp_envelope_sender('[email protected]');
17 17
     $expected_sender = 'twfy+aperson=a.nother.dom@' + EMAILDOMAIN;
18 18
     $this->assertEqual($sender, $expected_sender, 'verp_envelope_sender can create a sender for a standard address');
19
-  }
19
+    }
20 20
 
21 21
 }
22 22
 
Please login to merge, or discard this patch.
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -3,18 +3,18 @@
 block discarded – undo
3 3
  * SimpleTest tests for the functions in utility.php
4 4
  * $Id: utility_test.php,v 1.3 2009-06-25 12:23:58 louise Exp $
5 5
  */
6
-error_reporting (E_ALL);
6
+error_reporting(E_ALL);
7 7
 ini_set("display_errors", 1);
8 8
 include_once dirname(__FILE__) . '/../../../conf/general';
9 9
 include_once '../utility.php';
10 10
 include_once 'simpletest/unit_tester.php';
11 11
 include_once 'simpletest/reporter.php';
12 12
 
13
-class UtilityTest extends UnitTestCase{
13
+class UtilityTest extends UnitTestCase {
14 14
 
15 15
   public function testVerpEnvelopeSenderCanCreateStandardSender() {
16 16
     $sender = twfy_verp_envelope_sender('[email protected]');
17
-    $expected_sender = 'twfy+aperson=a.nother.dom@' + EMAILDOMAIN;
17
+    $expected_sender = 'twfy+aperson=a.nother.dom@' +EMAILDOMAIN;
18 18
     $this->assertEqual($sender, $expected_sender, 'verp_envelope_sender can create a sender for a standard address');
19 19
   }
20 20
 
Please login to merge, or discard this patch.
www/includes/easyparliament/metadata.php 2 patches
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -530,7 +530,7 @@  discard block
 block discarded – undo
530 530
         'url'			=> 'peer/'
531 531
     ),
532 532
     'peers' => array (
533
-         'menu'			=> array (
533
+            'menu'			=> array (
534 534
             'text'			=> 'Lords',
535 535
             'title'			=> "List of all Lords"
536 536
         ),
@@ -539,7 +539,7 @@  discard block
 block discarded – undo
539 539
         'url'			=> 'peers/'
540 540
     ),
541 541
 'overview' => array (
542
-     'menu'			=> array (
542
+        'menu'			=> array (
543 543
         'text'			=> 'Overview',
544 544
         'title'			=> "Overview of the UK Parliament"
545 545
     ),
@@ -591,7 +591,7 @@  discard block
 block discarded – undo
591 591
         'url'			=> 'rss/mp/'
592 592
     ),
593 593
     'mps' => array (
594
-         'menu'			=> array (
594
+            'menu'			=> array (
595 595
             'text'			=> 'MPs',
596 596
             'title'			=> "List of all Members of Parliament (MPs)"
597 597
         ),
Please login to merge, or discard this patch.
Spacing   +235 added lines, -235 removed lines patch added patch discarded remove patch
@@ -65,10 +65,10 @@  discard block
 block discarded – undo
65 65
 
66 66
 */
67 67
 
68
-$this->page = array (
68
+$this->page = array(
69 69
 
70 70
 // Things used on EVERY page, unless overridden for a page:
71
-    'default' => array (
71
+    'default' => array(
72 72
         'parent'	=> '',
73 73
         'session_vars' => array('super_debug'),
74 74
         'sitetitle'		=> 'TheyWorkForYou',
@@ -78,117 +78,117 @@  discard block
 block discarded – undo
78 78
 
79 79
 // KEEP THE PAGES IN ALPHABETICAL ORDER! TA.
80 80
 
81
-    'about' => array (
81
+    'about' => array(
82 82
         'title'			=> 'About us',
83 83
         'url'			=> 'about/'
84 84
     ),
85
-    'parliaments' => array (
85
+    'parliaments' => array(
86 86
         'title' 	=> 'Parliaments and assemblies',
87 87
         'url'       => 'parliaments/'
88 88
     ),
89 89
 
90
-    'alert_stats' => array (
90
+    'alert_stats' => array(
91 91
         'title'			=> 'Email alerts statistics',
92 92
         'parent'		=> 'admin',
93 93
         'url'			=> 'admin/alert_stats.php',
94 94
     ),
95
-    'admin_badusers' => array (
95
+    'admin_badusers' => array(
96 96
         'title'			=> 'Bad users',
97 97
         'parent'		=> 'admin',
98 98
         'url'			=> 'admin/badusers.php'
99 99
     ),
100
-    'admin_home' => array (
100
+    'admin_home' => array(
101 101
         'title'			=> 'Home',
102 102
         'parent'		=> 'admin',
103 103
         'url'			=> 'admin/'
104 104
     ),
105
-    'admin_comments' => array (
105
+    'admin_comments' => array(
106 106
         'title'			=> 'Recent comments',
107 107
         'parent'		=> 'admin',
108 108
         'url'			=> 'admin/comments.php'
109 109
     ),
110
-    'admin_commentreport' => array (
110
+    'admin_commentreport' => array(
111 111
         'title'			=> 'Processing a comment report',
112 112
         'parent'		=> 'admin',
113 113
         'url'			=> 'admin/report.php',
114
-        'session_vars'	=> array ('rid', 'cid')
114
+        'session_vars'	=> array('rid', 'cid')
115 115
     ),
116
-    'admin_commentreports' => array (
116
+    'admin_commentreports' => array(
117 117
         'title'			=> 'Outstanding comment reports',
118 118
         'parent'		=> 'admin',
119 119
         'url'			=> 'admin/reports.php'
120 120
     ),
121
-    'admin_failedsearches' => array (
121
+    'admin_failedsearches' => array(
122 122
         'title'			=> 'Failed searches',
123 123
         'parent'		=> 'admin',
124 124
         'url'			=> 'admin/failedsearches.php'
125 125
     ),
126
-    'admin_glossary' => array (
126
+    'admin_glossary' => array(
127 127
         'title'			=> 'Manage glossary entries',
128 128
         'parent'		=> 'admin',
129 129
         'url'			=> 'admin/glossary.php'
130 130
     ),
131
-    'admin_glossary_pending' => array (
131
+    'admin_glossary_pending' => array(
132 132
         'title'			=> 'Review pending glossary entries',
133 133
         'parent'		=> 'admin',
134 134
         'url'			=> 'admin/glossary_pending.php'
135 135
     ),
136
-    'admin_searchlogs' => array (
136
+    'admin_searchlogs' => array(
137 137
         'title'			=> 'Recent searches',
138 138
         'parent'		=> 'admin',
139 139
         'url'			=> 'admin/searchlogs.php'
140 140
     ),
141
-    'admin_popularsearches' => array (
141
+    'admin_popularsearches' => array(
142 142
         'title'			=> 'Popular searches in last 30 days (first 1000)',
143 143
         'parent'		=> 'admin',
144 144
         'url'			=> 'admin/popularsearches.php'
145 145
     ),
146
-    'admin_statistics' => array (
146
+    'admin_statistics' => array(
147 147
         'title'			=> 'General statistics',
148 148
         'parent'		=> 'admin',
149 149
         'url'			=> 'admin/statistics.php'
150 150
     ),
151
-    'admin_reportstats' => array (
151
+    'admin_reportstats' => array(
152 152
         'title'			=> 'Reporting statistics',
153 153
         'parent'		=> 'admin',
154 154
         'url'			=> 'admin/reporting_stats.php'
155 155
     ),
156
-    'admin_trackbacks' => array (
156
+    'admin_trackbacks' => array(
157 157
         'title'			=> 'Recent trackbacks',
158 158
         'parent'		=> 'admin',
159 159
         'url'			=> 'admin/trackbacks.php'
160 160
     ),
161
-    'admin_photos' => array (
161
+    'admin_photos' => array(
162 162
         'title'			=> 'Photo upload/attribution',
163 163
         'parent'		=> 'admin',
164 164
         'url'			=> 'admin/photos.php',
165 165
     ),
166
-    'admin_mpurls' => array (
166
+    'admin_mpurls' => array(
167 167
         'title'			=> 'MP Websites',
168 168
         'parent'		=> 'admin',
169 169
         'url'			=> 'admin/websites.php',
170 170
     ),
171
-    'admin_policies' => array (
171
+    'admin_policies' => array(
172 172
         'title'			=> 'MP Policy details',
173 173
         'parent'		=> 'admin',
174 174
         'url'			=> 'admin/policies.php',
175 175
     ),
176
-    'admin_banner' => array (
176
+    'admin_banner' => array(
177 177
         'title'			=> 'Edit Banner',
178 178
         'parent'		=> 'admin',
179 179
         'url'			=> 'admin/banner.php',
180 180
     ),
181
-    'admin_featured' => array (
181
+    'admin_featured' => array(
182 182
         'title'			=> 'Featured debates',
183 183
         'parent'		=> 'admin',
184 184
         'url'			=> 'admin/featured.php',
185 185
     ),
186
-    'admin_topics' => array (
186
+    'admin_topics' => array(
187 187
         'title'			=> 'Topics',
188 188
         'parent'		=> 'admin',
189 189
         'url'			=> 'admin/topics.php',
190 190
     ),
191
-    'admin_edittopics' => array (
191
+    'admin_edittopics' => array(
192 192
         'title'			=> 'Edit Topic',
193 193
         'parent'		=> 'admin_topics',
194 194
         'url'			=> 'admin/edittopic.php',
@@ -196,8 +196,8 @@  discard block
 block discarded – undo
196 196
 
197 197
 // Added by Richard Allan for email alert functions
198 198
 
199
-    'alert' => array (
200
-        'menu'			=> array (
199
+    'alert' => array(
200
+        'menu'			=> array(
201 201
             'text'			=> 'Email Alerts',
202 202
             'title'			=> "Set up alerts for updates on an MP or Peer by email",
203 203
             'sidebar'		=> 'alert'
@@ -206,30 +206,30 @@  discard block
 block discarded – undo
206 206
         'title'			=> 'TheyWorkForYou Email Alerts',
207 207
         'url'			=> 'alert/',
208 208
     ),
209
-    'alertwelcome' => array (
209
+    'alertwelcome' => array(
210 210
         'title'			=> 'Email Alerts',
211 211
         'url'			=> 'alert/',
212 212
     ),
213 213
 
214 214
 // End of ALERTS additions
215 215
 
216
-    'api_front'		=> array (
217
-        'menu'			=> array (
216
+    'api_front'		=> array(
217
+        'menu'			=> array(
218 218
             'text'			=> 'API',
219 219
             'title'			=> 'Access our data'
220 220
         ),
221 221
         'title'			=> 'TheyWorkForYou API',
222 222
         'url'			=> 'api/'
223 223
     ),
224
-    'api_doc_front'		=> array (
225
-        'menu'			=> array (
224
+    'api_doc_front'		=> array(
225
+        'menu'			=> array(
226 226
             'text'			=> 'API',
227 227
             'title'			=> 'Access our data'
228 228
         ),
229 229
         'parent'		=> 'api_front',
230 230
         'url'			=> 'api/'
231 231
     ),
232
-    'api_key'		=> array (
232
+    'api_key'		=> array(
233 233
         'title'			=> 'API Keys',
234 234
         'parent'		=> 'api_front',
235 235
         'url'			=> 'api/key'
@@ -240,69 +240,69 @@  discard block
 block discarded – undo
240 240
         'url' => 'boundaries/',
241 241
     ),
242 242
 
243
-    'calendar_summary' => array (
244
-        'menu'			=> array (
243
+    'calendar_summary' => array(
244
+        'menu'			=> array(
245 245
             'text'			=> 'Upcoming',
246 246
             'title'			=> '',
247 247
         ),
248 248
         'parent'		=> 'hansard',
249 249
         'url'			=> 'calendar/'
250 250
     ),
251
-    'calendar_future_head' => array (
251
+    'calendar_future_head' => array(
252 252
         'parent'		=> 'calendar_summary',
253 253
         'title'			=> 'Upcoming business',
254 254
         'url'			=> 'calendar/'
255 255
     ),
256
-    'calendar_future' => array (
256
+    'calendar_future' => array(
257 257
         'parent'		=> 'calendar_future_head',
258 258
         'url'			=> 'calendar/'
259 259
     ),
260
-    'calendar_today_head' => array (
260
+    'calendar_today_head' => array(
261 261
         'parent'		=> 'calendar_summary',
262 262
         'title'			=> 'Today&rsquo;s business',
263 263
         'url'			=> 'calendar/'
264 264
     ),
265
-    'calendar_today' => array (
265
+    'calendar_today' => array(
266 266
         'parent'		=> 'calendar_today_head',
267 267
         'url'			=> 'calendar/'
268 268
     ),
269
-    'calendar_past_head' => array (
269
+    'calendar_past_head' => array(
270 270
         'parent'		=> 'calendar_summary',
271 271
         'title'			=> 'Previous business',
272 272
         'url'			=> 'calendar/'
273 273
     ),
274
-    'calendar_past' => array (
274
+    'calendar_past' => array(
275 275
         'parent'		=> 'calendar_past_head',
276 276
         'url'			=> 'calendar/'
277 277
     ),
278 278
 
279
-    'cards' => array (
279
+    'cards' => array(
280 280
         'title'			=> 'MP Stats Cards',
281 281
         'url'			=> 'cards/'
282 282
     ),
283 283
 
284
-    'campaign_foi' => array (
284
+    'campaign_foi' => array(
285 285
         'title'			=> 'Freedom of Information (Parliament) Order 2009',
286 286
         'url'			=> 'foiorder2009/'
287 287
     ),
288
-    'campaign' => array (
288
+    'campaign' => array(
289 289
         'title'			=> '', #Free Our Bills!',
290 290
         'url'			=> 'freeourbills/'
291 291
     ),
292
-    'campaign_edm' => array (
292
+    'campaign_edm' => array(
293 293
         'title'			=> 'Early Day Motion',
294 294
         'parent'		=> 'campaign',
295 295
         'url'			=> 'freeourbills/'
296 296
     ),
297 297
 
298
-    'commentreport' => array (
298
+    'commentreport' => array(
299 299
         'title'			=> 'Reporting a comment',
300 300
         'url'			=> 'report/',
301
-        'session_vars'	=> array ('id')
301
+        'session_vars'	=> array('id')
302 302
     ),
303 303
 
304
-    'comments_recent' => array (
305
-        'menu'			=> array (
304
+    'comments_recent' => array(
305
+        'menu'			=> array(
306 306
             'text'			=> 'Recent comments',
307 307
             'title'			=> "Recently posted comments"
308 308
         ),
@@ -311,8 +311,8 @@  discard block
 block discarded – undo
311 311
         'url'			=> 'comments/recent/'
312 312
     ),
313 313
 
314
-    'contact' => array (
315
-        'menu'			=> array (
314
+    'contact' => array(
315
+        'menu'			=> array(
316 316
             'text'			=> 'Contact',
317 317
             'title'			=> '',
318 318
         ),
@@ -323,23 +323,23 @@  discard block
 block discarded – undo
323 323
         'title' => 'News',
324 324
         'url' => 'https://www.mysociety.org/category/projects/theyworkforyou/'
325 325
     ),
326
-    'debate'  => array (
326
+    'debate'  => array(
327 327
         'parent'		=> 'debatesfront',
328 328
         'url'			=> 'debates/',
329
-        'session_vars'	=> array ('id'),
329
+        'session_vars'	=> array('id'),
330 330
     ),
331
-    'debates'  => array (
331
+    'debates'  => array(
332 332
         'parent'		=> 'debatesfront',
333 333
         'url'			=> 'debates/',
334
-        'session_vars'	=> array ('id'),
334
+        'session_vars'	=> array('id'),
335 335
     ),
336
-    'debatesday' => array (
336
+    'debatesday' => array(
337 337
         'parent'		=> 'debatesfront',
338
-        'session_vars'	=> array ('d'),
338
+        'session_vars'	=> array('d'),
339 339
         'url'			=> 'debates/',
340 340
     ),
341
-    'alldebatesfront' => array (
342
-        'menu'			=> array (
341
+    'alldebatesfront' => array(
342
+        'menu'			=> array(
343 343
             'text'			=> 'Debates',
344 344
             'title'			=> "Debates in the House of Commons, Westminster Hall, and the House of Lords"
345 345
         ),
@@ -348,8 +348,8 @@  discard block
 block discarded – undo
348 348
         'rss'			=> 'rss/debates.rss',
349 349
         'url'			=> 'debates/'
350 350
     ),
351
-    'debatesfront' => array (
352
-        'menu'			=> array (
351
+    'debatesfront' => array(
352
+        'menu'			=> array(
353 353
             'text'			=> 'Commons debates',
354 354
             'title'			=> "Debates in the House of Commons"
355 355
         ),
@@ -358,12 +358,12 @@  discard block
 block discarded – undo
358 358
         'rss'			=> 'rss/debates.rss',
359 359
         'url'			=> 'debates/'
360 360
     ),
361
-    'debatesyear' => array (
361
+    'debatesyear' => array(
362 362
         'parent'		=> 'debatesfront',
363 363
         'url'			=> 'debates/'
364 364
     ),
365
-    'divisions_recent' => array (
366
-        'menu'			=> array (
365
+    'divisions_recent' => array(
366
+        'menu'			=> array(
367 367
             'text'			=> 'Recent Votes',
368 368
             'title'			=> ''
369 369
         ),
@@ -371,12 +371,12 @@  discard block
 block discarded – undo
371 371
         'title'			=> 'Recent Votes',
372 372
         'url'			=> 'divisions/'
373 373
     ),
374
-    'divisions_vote' => array (
374
+    'divisions_vote' => array(
375 375
         'parent'		=> 'divisions_recent',
376 376
         'title'			=> 'Vote',
377 377
         'url'			=> 'divisions/division.php'
378 378
     ),
379
-    'epvote' => array (
379
+    'epvote' => array(
380 380
         'url'			=> 'vote/'
381 381
     ),
382 382
 
@@ -385,19 +385,19 @@  discard block
 block discarded – undo
385 385
         'title'			=> 'TheyWorkForYou Google gadget',
386 386
     ),
387 387
 
388
-    'glossary' => array (
388
+    'glossary' => array(
389 389
         'heading'		=> 'Glossary',
390 390
         'parent'		=> 'help_us_out',
391 391
         'url'			=> 'glossary/'
392 392
     ),
393
-    'glossary_item' => array (
393
+    'glossary_item' => array(
394 394
         'heading'		=> 'Glossary heading',
395 395
         'parent'		=> 'help_us_out',
396 396
         'url'			=> 'glossary/',
397
-        'session_vars'	=> array ('g')
397
+        'session_vars'	=> array('g')
398 398
     ),
399
-    'hansard' => array (
400
-        'menu'			=> array (
399
+    'hansard' => array(
400
+        'menu'			=> array(
401 401
             'text'			=> 'UK Parliament',
402 402
             'title'			=> "Houses of Parliament debates, Written Answers, Statements, Westminster Hall debates, and Bill Committees"
403 403
         ),
@@ -405,16 +405,16 @@  discard block
 block discarded – undo
405 405
         'url'			=> ''
406 406
     ),
407 407
         // Hansard landing page
408
-        'hansard_landing' => array (
408
+        'hansard_landing' => array(
409 409
                 'title'                 => 'Hansard',
410 410
                 'url'                   => 'search-hansard/',
411 411
         ),
412
-    'help' => array (
412
+    'help' => array(
413 413
         'title'			=> 'Help - Frequently Asked Questions',
414 414
         'url'			=> 'help/'
415 415
     ),
416
-    'help_us_out' => array (
417
-        'menu'			=> array (
416
+    'help_us_out' => array(
417
+        'menu'			=> array(
418 418
             'text'			=> 'Glossary',
419 419
             'title'			=> "Parliament's jargon explained"
420 420
         ),
@@ -423,88 +423,88 @@  discard block
 block discarded – undo
423 423
         'url'			=> 'addterm/',
424 424
         'sidebar'		=> 'glossary_add'
425 425
     ),
426
-    'home' => array (
426
+    'home' => array(
427 427
         'title'			=> "UK Parliament",
428 428
         'rss'			=> 'news/index.rdf',
429 429
         'url'			=> ''
430 430
     ),
431
-    'houserules' => array (
431
+    'houserules' => array(
432 432
         'title'			=> 'House rules',
433 433
         'url'			=> 'houserules/'
434 434
     ),
435 435
 
436
-    'linktous' => array (
436
+    'linktous' => array(
437 437
         'title'			=> 'Link to us',
438 438
         'heading'		=> 'How to link to us',
439 439
         'url'			=> 'help/linktous/'
440 440
     ),
441
-    'api' => array (
441
+    'api' => array(
442 442
         'title'			=> 'API',
443 443
         'heading'		=> 'API - Query the TheyWorkForYou database',
444 444
         'url'			=> 'api/'
445 445
     ),
446
-    'data' => array (
446
+    'data' => array(
447 447
         'title'			=> 'Raw Data',
448 448
         'heading'		=> 'Raw data (XML) - the data behind TheyWorkForYou and Public Whip',
449 449
         'url'			=> 'http://parser.theyworkforyou.com'
450 450
     ),
451
-    'pombola' => array (
451
+    'pombola' => array(
452 452
         'title'			=> 'Pombola',
453 453
         'heading'		=> 'mySociety\'s platform for running a Parliamentary monitoring site like this',
454 454
         'url'			=> 'https://www.mysociety.org/projects/parliamentarymonitoring/pombola'
455 455
     ),
456
-    'devmailinglist' => array (
456
+    'devmailinglist' => array(
457 457
         'title'			=> 'Developer mailing list',
458 458
         'heading'		=> 'Developer mailing list',
459 459
         'url'			=> 'https://groups.google.com/a/mysociety.org/forum/#!forum/theyworkforyou'
460 460
     ),
461
-    'code' => array (
461
+    'code' => array(
462 462
         'title'			=> 'Source code',
463 463
         'heading'		=> 'TheyWorkForYou Source code',
464 464
         'url'			=> 'https://github.com/mysociety/theyworkforyou'
465 465
     ),
466
-    'irc' => array (
466
+    'irc' => array(
467 467
         'title'			=> 'IRC chat channel',
468 468
         'heading'		=> 'IRC chat channel',
469 469
         'url'			=> 'http://www.irc.mysociety.org/'
470 470
     ),
471
-    'newzealand' => array (
471
+    'newzealand' => array(
472 472
         'title'			=> 'New Zealand',
473 473
         'heading'		=> 'They Work For You - New Zealand',
474 474
         'url'			=> 'http://www.theyworkforyou.co.nz/'
475 475
     ),
476
-    'australia' => array (
476
+    'australia' => array(
477 477
         'title'			=> 'Australia',
478 478
         'heading'		=> 'Open Australia',
479 479
         'url'			=> 'http://www.openaustralia.org/'
480 480
     ),
481
-    'ireland' => array (
481
+    'ireland' => array(
482 482
         'title'			=> 'Ireland',
483 483
         'heading'		=> 'TheyWorkForYou for the Houses of the Oireachtas',
484 484
         'url'			=> 'http://www.kildarestreet.com/'
485 485
     ),
486
-    'mzalendo' => array (
486
+    'mzalendo' => array(
487 487
         'title'			=> 'Mzalendo',
488 488
         'heading'		=> 'Keeping an eye on the Kenyan Parliament',
489 489
         'url'			=> 'http://info.mzalendo.com/'
490 490
     ),
491
-    'lordsdebate'  => array (
491
+    'lordsdebate'  => array(
492 492
         'parent'		=> 'lordsdebatesfront',
493 493
         'url'			=> 'lords/',
494
-        'session_vars'	=> array ('id'),
494
+        'session_vars'	=> array('id'),
495 495
     ),
496
-    'lordsdebates'  => array (
496
+    'lordsdebates'  => array(
497 497
         'parent'		=> 'lordsdebatesfront',
498 498
         'url'			=> 'lords/',
499
-        'session_vars'	=> array ('id'),
499
+        'session_vars'	=> array('id'),
500 500
     ),
501
-    'lordsdebatesday' => array (
501
+    'lordsdebatesday' => array(
502 502
         'parent'		=> 'lordsdebatesfront',
503
-        'session_vars'	=> array ('d'),
503
+        'session_vars'	=> array('d'),
504 504
         'url'			=> 'lords/',
505 505
     ),
506
-    'lordsdebatesfront' => array (
507
-        'menu'			=> array (
506
+    'lordsdebatesfront' => array(
507
+        'menu'			=> array(
508 508
             'text'			=> 'Lords debates',
509 509
             'title'			=> "House of Lords debates"
510 510
         ),
@@ -513,24 +513,24 @@  discard block
 block discarded – undo
513 513
         'rss'			=> 'rss/lords.rss',
514 514
         'url'			=> 'lords/'
515 515
     ),
516
-    'lordsdebatesyear' => array (
516
+    'lordsdebatesyear' => array(
517 517
         'parent'		=> 'lordsdebatesfront',
518 518
         'url'			=> 'lords/'
519 519
     ),
520 520
 
521 521
         // Parliament landing page
522
-        'parliament_landing' => array (
522
+        'parliament_landing' => array(
523 523
                 'title'                 => 'Parliament',
524 524
                 'url'                   => 'parliament/',
525 525
         ),
526 526
 
527
-    'peer' => array (
527
+    'peer' => array(
528 528
         'parent'		=> 'peers',
529 529
         'title'			=> 'Peer',
530 530
         'url'			=> 'peer/'
531 531
     ),
532
-    'peers' => array (
533
-         'menu'			=> array (
532
+    'peers' => array(
533
+         'menu'			=> array(
534 534
             'text'			=> 'Lords',
535 535
             'title'			=> "List of all Lords"
536 536
         ),
@@ -538,8 +538,8 @@  discard block
 block discarded – undo
538 538
         'title'			=> '',
539 539
         'url'			=> 'peers/'
540 540
     ),
541
-'overview' => array (
542
-     'menu'			=> array (
541
+'overview' => array(
542
+     'menu'			=> array(
543 543
         'text'			=> 'Overview',
544 544
         'title'			=> "Overview of the UK Parliament"
545 545
     ),
@@ -548,50 +548,50 @@  discard block
 block discarded – undo
548 548
     'rss'			=> 'news/index.rdf',
549 549
     'url'			=> ''
550 550
 ),
551
-    'mla' => array (
551
+    'mla' => array(
552 552
         'parent'		=> 'mlas',
553 553
         'title'			=> 'Find your MLA',
554 554
         'url'			=> 'mla/'
555 555
     ),
556
-    'mlas' => array (
556
+    'mlas' => array(
557 557
         'parent'		=> 'ni_home',
558
-        'menu'			=> array (
558
+        'menu'			=> array(
559 559
             'text'			=> 'MLAs',
560 560
             'title'			=> "List of all Members of the Northern Ireland Assembly (MLAs)"
561 561
         ),
562 562
         'title'			=> '',
563 563
         'url'			=> 'mlas/'
564 564
     ),
565
-    'msps' => array (
565
+    'msps' => array(
566 566
         'parent'		=> 'sp_home',
567
-        'menu'			=> array (
567
+        'menu'			=> array(
568 568
             'text'			=> 'MSPs',
569 569
             'title'			=> "List of Members of the Scottish Parliament (MSPs)"
570 570
         ),
571 571
         'title'			=> '',
572 572
         'url'			=> 'msps/'
573 573
     ),
574
-    'msp' => array (
574
+    'msp' => array(
575 575
         'parent'		=> 'msps',
576 576
         'title'			=> 'Find your MSP',
577 577
         'url'			=> 'msp/'
578 578
     ),
579 579
     /* Not 'Your MP', whose name is 'yourmp'... */
580
-    'mp' => array (
580
+    'mp' => array(
581 581
         'parent'			=> 'mps',
582 582
         'title'			=> 'Find your MP',
583 583
         'url'			=> 'mp/'
584 584
     ),
585
-    'emailfriend' => array (
585
+    'emailfriend' => array(
586 586
         'title'			=> 'Send this page to a friend',
587 587
         'url'			=> 'email/'
588 588
     ),
589 589
     // The directory MPs' RSS feeds are stored in.
590
-    'mp_rss' => array (
590
+    'mp_rss' => array(
591 591
         'url'			=> 'rss/mp/'
592 592
     ),
593
-    'mps' => array (
594
-         'menu'			=> array (
593
+    'mps' => array(
594
+         'menu'			=> array(
595 595
             'text'			=> 'MPs',
596 596
             'title'			=> "List of all Members of Parliament (MPs)"
597 597
         ),
@@ -602,16 +602,16 @@  discard block
 block discarded – undo
602 602
 
603 603
     /* Northern Ireland Assembly */
604 604
     'ni_home' => array(
605
-        'menu'			=> array (
605
+        'menu'			=> array(
606 606
             'text'			=> 'Northern Ireland Assembly',
607 607
             'title'			=> 'Full authority over <em>transferred matters</em>, which include agriculture, education, employment, the environment and health'
608 608
         ),
609 609
         'title'			=> 'Northern Ireland Assembly',
610 610
         'url'			=> 'ni/'
611 611
     ),
612
-    'nioverview' => array (
612
+    'nioverview' => array(
613 613
         'parent'		=> 'ni_home',
614
-        'menu'			=> array (
614
+        'menu'			=> array(
615 615
             'text'			=> 'Debates',
616 616
             'title'			=> "Overview of the Northern Ireland Assembly debates"
617 617
         ),
@@ -619,23 +619,23 @@  discard block
 block discarded – undo
619 619
         'rss'			=> 'rss/ni.rss',
620 620
         'url'			=> 'ni/'
621 621
     ),
622
-    'nidebate'  => array (
622
+    'nidebate'  => array(
623 623
         'parent'		=> 'nidebatesfront',
624 624
         'url'			=> 'ni/',
625
-        'session_vars'	=> array ('id'),
625
+        'session_vars'	=> array('id'),
626 626
     ),
627
-    'nidebates'  => array (
627
+    'nidebates'  => array(
628 628
         'parent'		=> 'nidebatesfront',
629 629
         'url'			=> 'ni/',
630
-        'session_vars'	=> array ('id'),
630
+        'session_vars'	=> array('id'),
631 631
     ),
632
-    'nidebatesday' => array (
632
+    'nidebatesday' => array(
633 633
         'parent'		=> 'nidebatesfront',
634
-        'session_vars'	=> array ('d'),
634
+        'session_vars'	=> array('d'),
635 635
         'url'			=> 'ni/',
636 636
     ),
637
-    'nidebatesfront' => array (
638
-        'menu'			=> array (
637
+    'nidebatesfront' => array(
638
+        'menu'			=> array(
639 639
             'text'			=> 'Debates',
640 640
             'title'			=> "Northern Ireland Assembly debates"
641 641
         ),
@@ -644,24 +644,24 @@  discard block
 block discarded – undo
644 644
         'rss'			=> 'rss/ni.rss',
645 645
         'url'			=> 'ni/'
646 646
     ),
647
-    'nidebatesyear' => array (
647
+    'nidebatesyear' => array(
648 648
         'parent'		=> 'nidebatesfront',
649 649
         'url'			=> 'ni/'
650 650
     ),
651 651
 
652
-    'otheruseredit' => array (
652
+    'otheruseredit' => array(
653 653
         'pg'			=> 'editother',
654 654
         'title'			=> "Editing a user's data",
655 655
         'url'			=> 'user/'
656 656
     ),
657
-    'privacy' => array (
657
+    'privacy' => array(
658 658
         'title'			=> 'Privacy Policy',
659 659
         'url'			=> 'privacy/'
660 660
     ),
661 661
 
662 662
     /* Public bill committees */
663
-    'pbc_front' => array (
664
-        'menu'			=> array (
663
+    'pbc_front' => array(
664
+        'menu'			=> array(
665 665
             'text'			=> 'Bill Committees',
666 666
             'title'			=> "Public Bill Committees (formerly Standing Committees) debates"
667 667
         ),
@@ -679,17 +679,17 @@  discard block
 block discarded – undo
679 679
         'title' => '',
680 680
         'url' => 'pbc/',
681 681
         'parent' => 'pbc_front',
682
-        'session_vars'	=> array ('bill'),
682
+        'session_vars'	=> array('bill'),
683 683
     ),
684 684
     'pbc_clause' => array(
685 685
         'parent'		=> 'pbc_front',
686 686
         'url'			=> 'pbc/',
687
-        'session_vars'	=> array ('id'),
687
+        'session_vars'	=> array('id'),
688 688
     ),
689 689
     'pbc_speech' => array(
690 690
         'parent'		=> 'pbc_front',
691 691
         'url'			=> 'pbc/',
692
-        'session_vars'	=> array ('id'),
692
+        'session_vars'	=> array('id'),
693 693
     ),
694 694
 
695 695
     'people' => array(
@@ -701,62 +701,62 @@  discard block
 block discarded – undo
701 701
         'url'			=> '',
702 702
     ),
703 703
 
704
-    'raw' => array (
704
+    'raw' => array(
705 705
         'title'			=> 'Raw data',
706 706
         'url'			=> 'raw/'
707 707
     ),
708 708
 
709
-    'regmem' => array (
709
+    'regmem' => array(
710 710
         'title'			=> 'Changes to the Register of Members\' Interests',
711 711
         'url'			=> 'regmem/'
712 712
     ),
713 713
 
714
-    'regmem_date' => array (
714
+    'regmem_date' => array(
715 715
         'url'			=> 'regmem/',
716 716
         'parent'		=> 'regmem'
717 717
     ),
718 718
 
719
-    'regmem_mp' => array (
719
+    'regmem_mp' => array(
720 720
         'url'			=> 'regmem/',
721 721
         'parent'		=> 'regmem'
722 722
     ),
723 723
 
724
-    'regmem_diff' => array (
724
+    'regmem_diff' => array(
725 725
         'url'			=> 'regmem/',
726 726
         'parent'		=> 'regmem'
727 727
     ),
728 728
 
729
-    'royal' => array (
729
+    'royal' => array(
730 730
         'parent'        => 'hansard',
731 731
         'title'         => 'Royal',
732 732
         'url'           => 'royal/',
733 733
     ),
734 734
 
735
-    'topic' => array (
735
+    'topic' => array(
736 736
         'parent'        => 'topics',
737 737
         'url'           => 'topic/topic.php',
738 738
     ),
739 739
 
740
-    'topics' => array (
740
+    'topics' => array(
741 741
         'title'        => 'Topics',
742 742
         'url'          => 'topic/',
743 743
     ),
744 744
 
745
-    'search'		=> array (
745
+    'search'		=> array(
746 746
         'sidebar'		=> 'search',
747 747
         'url'			=> 'search/',
748 748
         'robots'		=> 'noindex, nofollow',
749 749
         'heading'		=> '',
750
-        'session_vars'	=> array ('q', 's', 'pid', 'o', 'pop')
750
+        'session_vars'	=> array('q', 's', 'pid', 'o', 'pop')
751 751
     ),
752
-    'search_help'		=> array (
752
+    'search_help'		=> array(
753 753
         'sidebar'		=> 'search',
754 754
         'title'			=> 'Help with searching',
755 755
         'url'			=> 'search/'
756 756
     ),
757 757
 
758
-    'sitenews'		=> array (
759
-        'menu'			=> array (
758
+    'sitenews'		=> array(
759
+        'menu'			=> array(
760 760
             'text'			=> 'TheyWorkForYou news',
761 761
             'title'			=> "News about changes to this website"
762 762
         ),
@@ -766,68 +766,68 @@  discard block
 block discarded – undo
766 766
         'title'			=> 'TheyWorkForYou news',
767 767
         'url'			=> 'news/'
768 768
     ),
769
-    'sitenews_archive'		=> array (
769
+    'sitenews_archive'		=> array(
770 770
         'parent'		=> 'sitenews',
771 771
         'rss'			=> 'news/index.rdf',
772 772
         'sidebar'		=> 'sitenews',
773 773
         'title'			=> 'Archive',
774 774
         'url'			=> 'news/archives/'
775 775
     ),
776
-    'sitenews_atom' 	=> array (
776
+    'sitenews_atom' 	=> array(
777 777
         'url'			=> 'news/atom.xml'
778 778
     ),
779
-    'sitenews_date'	=> array (
779
+    'sitenews_date'	=> array(
780 780
         'parent'		=> 'sitenews',
781 781
         'rss'			=> 'news/index.rdf',
782 782
         'sidebar'		=> 'sitenews'
783 783
     ),
784
-    'sitenews_individual'	=> array (
784
+    'sitenews_individual'	=> array(
785 785
         'parent'		=> 'sitenews',
786 786
         'rss'			=> 'news/index.rdf',
787 787
         'sidebar'		=> 'sitenews',
788 788
     ),
789
-    'sitenews_rss1' 	=> array (
789
+    'sitenews_rss1' 	=> array(
790 790
         'url'			=> 'news/index.rdf'
791 791
     ),
792
-    'sitenews_rss2' 	=> array (
792
+    'sitenews_rss2' 	=> array(
793 793
         'url'			=> 'news/index.xml'
794 794
     ),
795 795
 
796 796
     /* Scottish Parliament */
797 797
     'sp_home' => array(
798
-        'menu'			=> array (
798
+        'menu'			=> array(
799 799
             'text'			=> 'Scottish Parliament',
800 800
             'title'			=> 'Scottish education, health, agriculture, justice, prisons and other devolved areas. Some tax-varying powers'
801 801
         ),
802 802
         'title'			=> 'Scottish Parliament',
803 803
         'url'			=> 'scotland/'
804 804
     ),
805
-    'spoverview' => array (
805
+    'spoverview' => array(
806 806
         'parent'		=> 'sp_home',
807
-        'menu'			=> array (
807
+        'menu'			=> array(
808 808
             'text'			=> 'Overview',
809 809
             'title'			=> "Overview of the Scottish Parliament"
810 810
         ),
811 811
         'title'			=> '',
812 812
         'url'			=> 'scotland/'
813 813
     ),
814
-    'spdebate'  => array (
814
+    'spdebate'  => array(
815 815
         'parent'		=> 'spdebatesfront',
816 816
         'url'			=> 'sp/',
817
-        'session_vars'	=> array ('id'),
817
+        'session_vars'	=> array('id'),
818 818
     ),
819
-    'spdebates'  => array (
819
+    'spdebates'  => array(
820 820
         'parent'		=> 'spdebatesfront',
821 821
         'url'			=> 'sp/',
822
-        'session_vars'	=> array ('id'),
822
+        'session_vars'	=> array('id'),
823 823
     ),
824
-    'spdebatesday' => array (
824
+    'spdebatesday' => array(
825 825
         'parent'		=> 'spdebatesfront',
826
-        'session_vars'	=> array ('d'),
826
+        'session_vars'	=> array('d'),
827 827
         'url'			=> 'sp/',
828 828
     ),
829
-    'spdebatesfront' => array (
830
-        'menu'			=> array (
829
+    'spdebatesfront' => array(
830
+        'menu'			=> array(
831 831
             'text'			=> 'Debates',
832 832
             'title'			=> ''
833 833
         ),
@@ -836,21 +836,21 @@  discard block
 block discarded – undo
836 836
         'url'			=> 'sp/'
837 837
     ),
838 838
 
839
-    'spdebatesyear' => array (
839
+    'spdebatesyear' => array(
840 840
         'parent'		=> 'spdebatesfront',
841 841
         'url'			=> 'sp/'
842 842
     ),
843
-    'spwrans'  => array (
843
+    'spwrans'  => array(
844 844
         'parent'		=> 'spwransfront',
845 845
         'url'			=> 'spwrans/',
846 846
         #'session_vars'	=> array ('id'),
847 847
     ),
848
-    'spwransday'  => array (
848
+    'spwransday'  => array(
849 849
         'parent'		=> 'spwransfront',
850 850
         'url'			=> 'spwrans/'
851 851
     ),
852
-    'spwransfront'  => array (
853
-        'menu'			=> array (
852
+    'spwransfront'  => array(
853
+        'menu'			=> array(
854 854
             'text'			=> 'Written Answers',
855 855
             'title'			=> ''
856 856
         ),
@@ -863,38 +863,38 @@  discard block
 block discarded – undo
863 863
         'title'			=> 'For questions asked by ',
864 864
         'url'			=> 'spwrans/'
865 865
     ),
866
-    'spwransyear' => array (
866
+    'spwransyear' => array(
867 867
         'parent'		=> 'spwransfront',
868 868
         'url'			=> 'spwrans/'
869 869
     ),
870 870
 
871 871
     // Topic pages
872 872
 
873
-    'topic' => array (
873
+    'topic' => array(
874 874
         'url'           => 'topic/',
875 875
         'title'         => 'Topics'
876 876
     ),
877 877
 
878
-    'topicbenefits' => array (
878
+    'topicbenefits' => array(
879 879
         'url'           => 'topic/benefits',
880 880
         'parent'        => 'topic',
881 881
         'title'         => 'Benefits'
882 882
     ),
883 883
 
884
-    'topiccrimestats' => array (
884
+    'topiccrimestats' => array(
885 885
         'url'           => 'topic/crime-stats',
886 886
         'parent'        => 'topic',
887 887
         'title'         => 'Crime Statistics'
888 888
     ),
889 889
 
890
-    'topicnhs' => array (
890
+    'topicnhs' => array(
891 891
         'url'           => 'topic/nhs',
892 892
         'parent'        => 'topic',
893 893
         'title'         => 'NHS'
894 894
     ),
895 895
 
896 896
     // The URL 3rd parties need to ping something here.
897
-    'trackback' => array (
897
+    'trackback' => array(
898 898
         'url'			=> 'trackback/'
899 899
     ),
900 900
 
@@ -907,29 +907,29 @@  discard block
 block discarded – undo
907 907
         'url'			=> 'user/alerts/',
908 908
         'parent'		=> 'userviewself'
909 909
     ),
910
-    'userchangepc' => array (
910
+    'userchangepc' => array(
911 911
         'title'			=> 'Change your postcode',
912 912
         'url'			=> 'user/changepc/'
913 913
     ),
914
-    'userconfirm' => array (
914
+    'userconfirm' => array(
915 915
         'url'			=> 'user/confirm/'
916 916
     ),
917
-    'userconfirmed' => array (
917
+    'userconfirmed' => array(
918 918
         'sidebar'		=> 'userconfirmed',
919 919
         'title'			=> 'Welcome to TheyWorkForYou!',
920 920
         'url'			=> 'user/confirm/'
921 921
     ),
922
-    'userconfirmfailed' => array (
922
+    'userconfirmfailed' => array(
923 923
         'title'			=> 'Oops!',
924 924
         'url'			=> 'user/confirm/'
925 925
     ),
926
-    'useredit' => array (
926
+    'useredit' => array(
927 927
         'pg'			=> 'edit',
928 928
         'title'			=> 'Edit your details',
929 929
         'url'			=> 'user/'
930 930
     ),
931
-    'userjoin' => array (
932
-                'menu'                  => array (
931
+    'userjoin' => array(
932
+                'menu'                  => array(
933 933
                         'text'                  => 'Join',
934 934
                         'title'                 => "Joining is free and allows you to annotate speeches"
935 935
                 ),
@@ -938,8 +938,8 @@  discard block
 block discarded – undo
938 938
                 'title'                 => 'Join TheyWorkForYou',
939 939
                 'url'                   => 'user/'
940 940
         ),
941
-    'getinvolved' => array (
942
-        'menu'			=> array (
941
+    'getinvolved' => array(
942
+        'menu'			=> array(
943 943
             'text'			=> 'Get involved',
944 944
             'title'			=> "Contribute to TheyWorkForYou"
945 945
         ),
@@ -948,8 +948,8 @@  discard block
 block discarded – undo
948 948
         'title'			=> 'Contribute to TheyWorkForYou',
949 949
         'url'			=> 'getinvolved/'
950 950
     ),
951
-    'userlogin' => array (
952
-        'menu'			=> array (
951
+    'userlogin' => array(
952
+        'menu'			=> array(
953 953
             'text'			=> 'Sign in',
954 954
             'title'			=> "If you've already joined , sign in to add annotations"
955 955
         ),
@@ -958,33 +958,33 @@  discard block
 block discarded – undo
958 958
         'url'			=> 'user/login/'
959 959
     ),
960 960
 
961
-    'userlogout' => array (
962
-        'menu'			=> array (
961
+    'userlogout' => array(
962
+        'menu'			=> array(
963 963
             'text'			=> 'Sign out',
964 964
             'title'			=> "Sign out"
965 965
         ),
966 966
         'url'			=> 'user/logout/'
967 967
     ),
968
-    'userpassword' => array (
968
+    'userpassword' => array(
969 969
         'title'			=> 'Change password',
970 970
         'url'			=> 'user/password/'
971 971
     ),
972
-    'userprompt' => array (
972
+    'userprompt' => array(
973 973
         'title'			=> 'Please sign in',
974 974
         'url'			=> 'user/prompt/'
975 975
     ),
976
-    'userview' => array (
976
+    'userview' => array(
977 977
         'session_vars'	=> array('u'),
978 978
         'url'			=> 'user/'
979 979
     ),
980
-    'userviewself' => array (
981
-        'menu'			=> array (
980
+    'userviewself' => array(
981
+        'menu'			=> array(
982 982
             'text'			=> 'Your details',
983 983
             'title'			=> "View and edit your details"
984 984
         ),
985 985
         'url'			=> 'user/'
986 986
     ),
987
-    'userwelcome' => array (
987
+    'userwelcome' => array(
988 988
         'title'			=> 'Welcome!',
989 989
         'url'			=> 'user/'
990 990
     ),
@@ -1012,23 +1012,23 @@  discard block
 block discarded – undo
1012 1012
     ),
1013 1013
 
1014 1014
     /* Westminster Hall */
1015
-    'whall'  => array (
1015
+    'whall'  => array(
1016 1016
         'parent'		=> 'whallfront',
1017 1017
         'url'			=> 'whall/',
1018
-        'session_vars'	=> array ('id'),
1018
+        'session_vars'	=> array('id'),
1019 1019
     ),
1020
-    'whalls'  => array (
1020
+    'whalls'  => array(
1021 1021
         'parent'		=> 'whallfront',
1022 1022
         'url'			=> 'whall/',
1023
-        'session_vars'	=> array ('id'),
1023
+        'session_vars'	=> array('id'),
1024 1024
     ),
1025
-    'whallday' => array (
1025
+    'whallday' => array(
1026 1026
         'parent'		=> 'whallfront',
1027
-        'session_vars'	=> array ('d'),
1027
+        'session_vars'	=> array('d'),
1028 1028
         'url'			=> 'whall/',
1029 1029
     ),
1030
-    'whallfront' => array (
1031
-        'menu'			=> array (
1030
+    'whallfront' => array(
1031
+        'menu'			=> array(
1032 1032
             'text'			=> 'Westminster Hall',
1033 1033
             'title'			=> "Westminster Hall debates"
1034 1034
         ),
@@ -1037,23 +1037,23 @@  discard block
 block discarded – undo
1037 1037
         'rss'			=> 'rss/whall.rss',
1038 1038
         'url'			=> 'whall/'
1039 1039
     ),
1040
-    'whallyear' => array (
1040
+    'whallyear' => array(
1041 1041
         'parent'		=> 'whallfront',
1042 1042
         'url'			=> 'whall/'
1043 1043
     ),
1044 1044
 
1045
-    'wms' => array (
1045
+    'wms' => array(
1046 1046
         'parent'		=> 'wranswmsfront',
1047 1047
         'url'			=> 'wms/',
1048 1048
         'session_vars'	=> array('id')
1049 1049
     ),
1050
-    'wmsday' => array (
1050
+    'wmsday' => array(
1051 1051
         'parent'		=> 'wmsfront',
1052 1052
         'session_vars'	=> array('d'),
1053 1053
         'url'			=> 'wms/'
1054 1054
     ),
1055
-    'wmsfront' => array (
1056
-        'menu'			=> array (
1055
+    'wmsfront' => array(
1056
+        'menu'			=> array(
1057 1057
             'text'			=> 'Written Ministerial Statements',
1058 1058
             'title'			=> ''
1059 1059
         ),
@@ -1062,22 +1062,22 @@  discard block
 block discarded – undo
1062 1062
         'rss'			=> 'rss/wms.rss',
1063 1063
         'url'			=> 'wms/'
1064 1064
     ),
1065
-    'wmsyear' => array (
1065
+    'wmsyear' => array(
1066 1066
         'parent'		=> 'wmsfront',
1067 1067
         'url'			=> 'wms/'
1068 1068
     ),
1069 1069
 
1070
-    'wrans'  => array (
1070
+    'wrans'  => array(
1071 1071
         'parent'		=> 'wranswmsfront',
1072 1072
         'url'			=> 'wrans/',
1073
-        'session_vars'	=> array ('id')
1073
+        'session_vars'	=> array('id')
1074 1074
     ),
1075
-    'wransday'  => array (
1075
+    'wransday'  => array(
1076 1076
         'parent'		=> 'wransfront',
1077 1077
         'url'			=> 'wrans/'
1078 1078
     ),
1079
-    'wransfront'  => array (
1080
-        'menu'			=> array (
1079
+    'wransfront'  => array(
1080
+        'menu'			=> array(
1081 1081
             'text'			=> 'Written Answers',
1082 1082
             'title'			=> "Written Answers"
1083 1083
         ),
@@ -1090,13 +1090,13 @@  discard block
 block discarded – undo
1090 1090
         'title'			=> 'For questions asked by ',
1091 1091
         'url'			=> 'wrans/'
1092 1092
     ),
1093
-    'wransyear' => array (
1093
+    'wransyear' => array(
1094 1094
         'parent'		=> 'wransfront',
1095 1095
         'url'			=> 'wrans/'
1096 1096
     ),
1097 1097
 
1098
-    'wranswmsfront'  => array (
1099
-        'menu'			=> array (
1098
+    'wranswmsfront'  => array(
1099
+        'menu'			=> array(
1100 1100
             'text'			=> 'Written Answers',
1101 1101
             'title'			=> 'Written Answers and Statements',
1102 1102
         ),
@@ -1113,8 +1113,8 @@  discard block
 block discarded – undo
1113 1113
         'title' => 'Your representative',
1114 1114
         'url' => 'your/',
1115 1115
     ),
1116
-    'yourmp' => array (
1117
-        'menu'			=> array (
1116
+    'yourmp' => array(
1117
+        'menu'			=> array(
1118 1118
             'text'			=> 'Your MP',
1119 1119
             'title'			=> "Find out about your Member of Parliament"
1120 1120
         ),
@@ -1123,8 +1123,8 @@  discard block
 block discarded – undo
1123 1123
         'url'			=> 'mp/',
1124 1124
         'parent'			=> 'mps',
1125 1125
     ),
1126
-    'yourmp_recent' => array (
1127
-        'menu'			=> array (
1126
+    'yourmp_recent' => array(
1127
+        'menu'			=> array(
1128 1128
             'text'			=> 'Recent appearances',
1129 1129
             'title'			=> "Recent speeches and written answers by this MP"
1130 1130
         ),
@@ -1132,8 +1132,8 @@  discard block
 block discarded – undo
1132 1132
         'title'			=> "Your MP's recent appearances in parliament",
1133 1133
         'url'			=> 'mp/?recent=1'
1134 1134
     ),
1135
-    'yourmsp' => array (
1136
-        'menu'			=> array (
1135
+    'yourmsp' => array(
1136
+        'menu'			=> array(
1137 1137
             'text'			=> 'Your MSPs',
1138 1138
             'title'			=> "Find out about your Members of the Scottish Parliament"
1139 1139
         ),
@@ -1142,8 +1142,8 @@  discard block
 block discarded – undo
1142 1142
         'title'			=> 'Your MSPs',
1143 1143
         'url'			=> 'msp/'
1144 1144
     ),
1145
-    'yourmla' => array (
1146
-        'menu'			=> array (
1145
+    'yourmla' => array(
1146
+        'menu'			=> array(
1147 1147
             'text'			=> 'Your MLAs',
1148 1148
             'title'			=> "Find out about your Members of the Legislative Assembly"
1149 1149
         ),
@@ -1159,38 +1159,38 @@  discard block
 block discarded – undo
1159 1159
 // The text displayed on the page itself will also be this,
1160 1160
 // UNLESS the section has a 'heading', in which case that's used instead.
1161 1161
 
1162
-$this->section = array (
1162
+$this->section = array(
1163 1163
 
1164 1164
 
1165
-    'about' => array (
1165
+    'about' => array(
1166 1166
         'title' 	=> 'About Us'
1167 1167
     ),
1168
-    'admin' => array (
1168
+    'admin' => array(
1169 1169
         'title'		=> 'Admin'
1170 1170
     ),
1171
-    'debates' => array (
1171
+    'debates' => array(
1172 1172
         'title' 	=> 'Debates',
1173 1173
         'heading'	=> 'House of Commons Debates'
1174 1174
     ),
1175
-    'help_us_out' => array (
1175
+    'help_us_out' => array(
1176 1176
         'title' 	=> 'Help Us Out'
1177 1177
     ),
1178
-    'hansard' => array (
1178
+    'hansard' => array(
1179 1179
         'title' 	=> 'Hansard'
1180 1180
     ),
1181
-    'home' => array (
1181
+    'home' => array(
1182 1182
         'title' 	=> 'Home'
1183 1183
     ),
1184
-    'mp' => array (
1184
+    'mp' => array(
1185 1185
         'title' 	=> 'Your MP'
1186 1186
     ),
1187
-    'search' => array (
1187
+    'search' => array(
1188 1188
         'title' 	=> 'Search'
1189 1189
     ),
1190
-    'sitenews' => array (
1190
+    'sitenews' => array(
1191 1191
         'title' 	=> 'TheyWorkForYou news'
1192 1192
     ),
1193
-    'wrans' => array (
1193
+    'wrans' => array(
1194 1194
         'title' 	=> 'Written Answers'
1195 1195
     )
1196 1196
 
Please login to merge, or discard this patch.
www/includes/easyparliament/templates/html/mp/error.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@
 block discarded – undo
6 6
 
7 7
             <p><?= $error ?></p>
8 8
 
9
-        <?php if ( $rep_search_url ) { ?>
9
+        <?php if ($rep_search_url) { ?>
10 10
         </div>
11 11
 
12 12
         <div class="full-page__unit">
Please login to merge, or discard this patch.
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,8 @@
 block discarded – undo
31 31
         <div class="full-page__unit">
32 32
         <p>Or <a href="<?= $all_mps_url ?>">browse all <?= $rep_name ?>s</a>?</p>
33 33
         </div>
34
-        <?php } else { ?>
34
+        <?php }
35
+else { ?>
35 36
         <p>Why not <a href="<?= $all_mps_url ?>">browse all <?= $rep_name ?>s</a>?</p>
36 37
         </div>
37 38
         <?php } ?>
Please login to merge, or discard this patch.
www/includes/easyparliament/templates/html/mp/votes.php 4 patches
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -60,7 +60,7 @@  discard block
 block discarded – undo
60 60
                               <?php foreach ($segment['votes']->positions as $key_vote) {
61 61
 
62 62
                                 if (isset($policy_last_update[$key_vote['policy_id']]) && $policy_last_update[$key_vote['policy_id']] > $most_recent) {
63
-                                  $most_recent = $policy_last_update[$key_vote['policy_id']];
63
+                                    $most_recent = $policy_last_update[$key_vote['policy_id']];
64 64
                                 }
65 65
 
66 66
                                 if ( $key_vote['has_strong'] || $key_vote['position'] == 'has never voted on' ) {
@@ -81,7 +81,7 @@  discard block
 block discarded – undo
81 81
 
82 82
                                 include '_vote_description.php';
83 83
 
84
-                              } ?>
84
+                                } ?>
85 85
                             </ul>
86 86
 
87 87
                             <div class="share-vote-descriptions">
Please login to merge, or discard this patch.
Upper-Lower-Casing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
 
43 43
                 <?php if ($has_voting_record): ?>
44 44
 
45
-                    <?php $displayed_votes = FALSE; ?>
45
+                    <?php $displayed_votes = false; ?>
46 46
 
47 47
                     <?php foreach ($key_votes_segments as $segment): ?>
48 48
 
@@ -94,7 +94,7 @@  discard block
 block discarded – undo
94 94
                                 <small>Last updated: <?= format_date($most_recent, LONGDATEFORMAT) ?></small>
95 95
                             </div>
96 96
 
97
-                            <?php $displayed_votes = TRUE; ?>
97
+                            <?php $displayed_votes = true; ?>
98 98
 
99 99
                         <?php endif; ?>
100 100
 
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -63,7 +63,7 @@
 block discarded – undo
63 63
                                   $most_recent = $policy_last_update[$key_vote['policy_id']];
64 64
                                 }
65 65
 
66
-                                if ( $key_vote['has_strong'] || $key_vote['position'] == 'has never voted on' ) {
66
+                                if ($key_vote['has_strong'] || $key_vote['position'] == 'has never voted on') {
67 67
                                     $description = ucfirst($key_vote['desc']);
68 68
                                 } else {
69 69
                                     $description = sprintf(
Please login to merge, or discard this patch.
Braces   +7 added lines, -3 removed lines patch added patch discarded remove patch
@@ -65,7 +65,8 @@  discard block
 block discarded – undo
65 65
 
66 66
                                 if ( $key_vote['has_strong'] || $key_vote['position'] == 'has never voted on' ) {
67 67
                                     $description = ucfirst($key_vote['desc']);
68
-                                } else {
68
+                                }
69
+                                else {
69 70
                                     $description = sprintf(
70 71
                                         'We don&rsquo;t have enough information to calculate %s&rsquo;s position on %s.',
71 72
                                         $full_name,
@@ -110,13 +111,16 @@  discard block
 block discarded – undo
110 111
 
111 112
                         <?php endif; ?>
112 113
 
113
-                    <?php else: ?>
114
+                    <?php else {
115
+    : ?>
114 116
 
115 117
                         <div class="panel">
116 118
                             <p>This person has not voted on any of the key issues which we keep track of.</p>
117 119
                         </div>
118 120
 
119
-                    <?php endif; ?>
121
+                    <?php endif;
122
+}
123
+?>
120 124
 
121 125
                 <?php endif; ?>
122 126
 
Please login to merge, or discard this patch.
www/includes/easyparliament/templates/html/mp/recent.php 3 patches
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -38,11 +38,11 @@  discard block
 block discarded – undo
38 38
                 if ( isset($divisions) && $divisions ) {
39 39
                     if ($has_voting_record) {
40 40
                         foreach ($divisions as $division) {
41
-                          $displayed_votes = TRUE;
41
+                            $displayed_votes = TRUE;
42 42
 
43
-                          if ($current_date != $division['date']) {
43
+                            if ($current_date != $division['date']) {
44 44
                             if ($current_date != '' ) {
45
-                              print('</ul></div>');
45
+                                print('</ul></div>');
46 46
                             }
47 47
                             $current_date = $division['date'];
48 48
                             $sidebar_links[] = $division['date'];
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
                             <h2><?= strftime('%e %b %Y', strtotime($division['date'])) ?></h2>
52 52
                              <ul class="vote-descriptions policy-votes">
53 53
                           <?php }
54
-                          include('_division_description.php');
54
+                            include('_division_description.php');
55 55
                         }
56 56
                         echo('</div>');
57 57
                     }
Please login to merge, or discard this patch.
Upper-Lower-Casing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -30,15 +30,15 @@
 block discarded – undo
30 30
 
31 31
                 <?php
32 32
 
33
-                $displayed_votes = FALSE;
34
-                $show_all = TRUE;
33
+                $displayed_votes = false;
34
+                $show_all = true;
35 35
                 $current_date = '';
36 36
                 $sidebar_links = array();
37 37
 
38 38
                 if ( isset($divisions) && $divisions ) {
39 39
                     if ($has_voting_record) {
40 40
                         foreach ($divisions as $division) {
41
-                          $displayed_votes = TRUE;
41
+                          $displayed_votes = true;
42 42
 
43 43
                           if ($current_date != $division['date']) {
44 44
                             if ($current_date != '' ) {
Please login to merge, or discard this patch.
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -35,13 +35,13 @@  discard block
 block discarded – undo
35 35
                 $current_date = '';
36 36
                 $sidebar_links = array();
37 37
 
38
-                if ( isset($divisions) && $divisions ) {
38
+                if (isset($divisions) && $divisions) {
39 39
                     if ($has_voting_record) {
40 40
                         foreach ($divisions as $division) {
41 41
                           $displayed_votes = TRUE;
42 42
 
43 43
                           if ($current_date != $division['date']) {
44
-                            if ($current_date != '' ) {
44
+                            if ($current_date != '') {
45 45
                               print('</ul></div>');
46 46
                             }
47 47
                             $current_date = $division['date'];
@@ -67,7 +67,7 @@  discard block
 block discarded – undo
67 67
 
68 68
             <div class="sidebar__unit in-page-nav">
69 69
                 <ul data-magellan-expedition="fixed">
70
-                  <?php foreach($sidebar_links as $date) { ?>
70
+                  <?php foreach ($sidebar_links as $date) { ?>
71 71
                     <li data-magellan-arrival="<?= strftime('%Y-%m-%d', strtotime($date)) ?>">
72 72
                         <a href="#<?= strftime('%Y-%m-%d', strtotime($date)) ?>">
73 73
                             <?= strftime('%e %b %Y', strtotime($date)) ?>
Please login to merge, or discard this patch.
www/includes/easyparliament/templates/html/mp/profile.php 4 patches
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -79,7 +79,7 @@  discard block
 block discarded – undo
79 79
 
80 80
                             include '_vote_description.php';
81 81
 
82
-                          } ?>
82
+                            } ?>
83 83
                         </ul>
84 84
 
85 85
                         <p>We have <b>lots more</b> plain English analysis of <?= $full_name ?>&rsquo;s voting record  on issues like health, welfare, taxation and more. Visit <a href="<?= $member_url ?>/votes"><?= $full_name ?>&rsquo;s full vote analysis page</a> for more.</p>
@@ -119,7 +119,7 @@  discard block
 block discarded – undo
119 119
 
120 120
                             include '_vote_description.php';
121 121
 
122
-                          } ?>
122
+                            } ?>
123 123
                         </ul>
124 124
 
125 125
                         <p>We have <b>lots more</b> plain English analysis of <?= $full_name ?>&rsquo;s voting record  on issues like health, welfare, taxation and more. Visit <a href="<?= $member_url ?>/votes"><?= $full_name ?>&rsquo;s full vote analysis page</a> for more.</p>
@@ -148,7 +148,7 @@  discard block
 block discarded – undo
148 148
 
149 149
                             include '_vote_description.php';
150 150
 
151
-                          } ?>
151
+                            } ?>
152 152
                         </ul>
153 153
 
154 154
                         <p>We have <b>lots more</b> plain English analysis of <?= $full_name ?>&rsquo;s voting record  on issues like health, welfare, taxation and more. Visit <a href="<?= $member_url ?>/votes"><?= $full_name ?>&rsquo;s full vote analysis page</a> for more.</p>
Please login to merge, or discard this patch.
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -105,7 +105,7 @@
 block discarded – undo
105 105
                         <ul class="vote-descriptions">
106 106
                           <?php foreach ($sorted_diffs as $policy_id => $score) {
107 107
 
108
-                            $key_vote = NULL;
108
+                            $key_vote = null;
109 109
                             $description = sprintf(
110 110
                                 '%s <b>%s</b> %s, while most %s MPs <b>%s</b>.',
111 111
                                 $full_name,
Please login to merge, or discard this patch.
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
                 </div>
59 59
               <?php endif; ?>
60 60
 
61
-                <?php if ( !$current_member[HOUSE_TYPE_COMMONS] ) { ?>
61
+                <?php if (!$current_member[HOUSE_TYPE_COMMONS]) { ?>
62 62
                     <?php if (count($policyPositions->positions) > 0) { ?>
63 63
                     <div class="panel">
64 64
                         <a name="votes"></a>
@@ -124,7 +124,7 @@  discard block
 block discarded – undo
124 124
 
125 125
                         <p>We have <b>lots more</b> plain English analysis of <?= $full_name ?>&rsquo;s voting record  on issues like health, welfare, taxation and more. Visit <a href="<?= $member_url ?>/votes"><?= $full_name ?>&rsquo;s full vote analysis page</a> for more.</p>
126 126
 
127
-                    <?php elseif (count($policyPositions->positions) > 0 ): ?>
127
+                    <?php elseif (count($policyPositions->positions) > 0): ?>
128 128
                         <?php if (count($party_positions) && $party_member_count > 1) { ?>
129 129
                         <p>
130 130
                         <?= $full_name ?> is a <?= $party ?> MP, and on the <b>vast majority</b> of issues votes the <b>same way</b> as other <?= $party ?> MPs.
@@ -152,7 +152,7 @@  discard block
 block discarded – undo
152 152
                         </ul>
153 153
 
154 154
                         <p>We have <b>lots more</b> plain English analysis of <?= $full_name ?>&rsquo;s voting record  on issues like health, welfare, taxation and more. Visit <a href="<?= $member_url ?>/votes"><?= $full_name ?>&rsquo;s full vote analysis page</a> for more.</p>
155
-                    <?php elseif (count($policyPositions->positions) == 0 ): ?>
155
+                    <?php elseif (count($policyPositions->positions) == 0): ?>
156 156
 
157 157
                         <p>No votes to display.</p>
158 158
 
Please login to merge, or discard this patch.
Braces   +9 added lines, -4 removed lines patch added patch discarded remove patch
@@ -86,7 +86,8 @@  discard block
 block discarded – undo
86 86
 
87 87
                     </div>
88 88
                     <?php } ?>
89
-                <?php } else if (count($policyPositions->positions) > 0 || count($sorted_diffs) > 0): ?>
89
+                <?php }
90
+else if (count($policyPositions->positions) > 0 || count($sorted_diffs) > 0): ?>
90 91
                 <div class="panel">
91 92
                     <a name="votes"></a>
92 93
                     <h2 data-magellan-destination="votes"><?= $full_name ?>&rsquo;s voting in Parliament</h2>
@@ -190,11 +191,14 @@  discard block
 block discarded – undo
190 191
                         <?= $recent_appearances['additional_links'] ?>
191 192
                         <?php endif; ?>
192 193
 
193
-                    <?php else: ?>
194
+                    <?php else {
195
+    : ?>
194 196
 
195 197
                         <p>No recent appearances to display.</p>
196 198
 
197
-                    <?php endif; ?>
199
+                    <?php endif;
200
+}
201
+?>
198 202
 
199 203
                 </div>
200 204
                 <?php endif; ?>
@@ -265,7 +269,8 @@  discard block
 block discarded – undo
265 269
                         <p>
266 270
                             <?php if ($eu_stance == 'Leave' || $eu_stance == 'Remain') { ?>
267 271
                                 <strong><?= $full_name ?></strong> campaigned to <?= $eu_stance == 'Leave' ? 'leave' : 'remain in' ?> the European Union
268
-                            <?php } else { ?>
272
+                            <?php }
273
+else { ?>
269 274
                                 We don't know whether <strong><?= $full_name ?></strong> campaigned to leave, or stay in the European Union
270 275
                             <?php } ?>
271 276
                             <small>Source: <a href="http://www.bbc.co.uk/news/uk-politics-eu-referendum-35616946">BBC</a></small>
Please login to merge, or discard this patch.