@@ -27,7 +27,7 @@ |
||
27 | 27 | |
28 | 28 | <?php if (isset($data['mp_data'])) { |
29 | 29 | include('_your_mp.php'); |
30 | - } ?> |
|
30 | + } ?> |
|
31 | 31 | |
32 | 32 | <div class="debate-speech__division__details"> |
33 | 33 | <p> |
@@ -37,7 +37,7 @@ |
||
37 | 37 | </span><br> |
38 | 38 | <?php } else { ?> |
39 | 39 | <?php if ($mp_vote['with_majority']) { ?> |
40 | - <?php $vote_prefix = 'A majority of ' . $division['members']['plural'] . ' <b>agreed</b> and'; include('_vote_description.php'); ?> |
|
40 | + <?php $vote_prefix = 'A majority of ' . $division['members']['plural'] . ' <b>agreed</b> and'; include('_vote_description.php'); ?> |
|
41 | 41 | <?php } else { ?> |
42 | 42 | <?php $vote_prefix = 'A majority of ' . $division['members']['plural'] . ' <b>disagreed</b> and'; include('_vote_description.php'); ?> |
43 | 43 | <?php } ?> |
@@ -17,17 +17,17 @@ discard block |
||
17 | 17 | } |
18 | 18 | |
19 | 19 | private function fetch_division_page() { |
20 | - return $this->fetch_page( array( 'pagetype' => 'divisions', 'pid' => 2, 'policy' => 363, 'url' => '/mp/2/test_current-mp/test_westminster_constituency/divisions' ) ); |
|
20 | + return $this->fetch_page(array('pagetype' => 'divisions', 'pid' => 2, 'policy' => 363, 'url' => '/mp/2/test_current-mp/test_westminster_constituency/divisions')); |
|
21 | 21 | } |
22 | 22 | |
23 | 23 | private function fetch_mp_recent_page() |
24 | 24 | { |
25 | - $vars = array( 'pagetype' => 'recent', 'pid' => 2, 'url' => '/mp/2/test_current-mp/test_westminster_constituency/recent' ); |
|
25 | + $vars = array('pagetype' => 'recent', 'pid' => 2, 'url' => '/mp/2/test_current-mp/test_westminster_constituency/recent'); |
|
26 | 26 | return $this->base_fetch_page($vars, 'mp', 'index.php', '/mp/recent.php'); |
27 | 27 | } |
28 | 28 | |
29 | 29 | private function fetch_recent_page() { |
30 | - return $this->base_fetch_page( array('url' => '/divisions' ), 'divisions', 'index.php', '/divisions/index.php' ); |
|
30 | + return $this->base_fetch_page(array('url' => '/divisions'), 'divisions', 'index.php', '/divisions/index.php'); |
|
31 | 31 | } |
32 | 32 | |
33 | 33 | |
@@ -113,7 +113,7 @@ discard block |
||
113 | 113 | } |
114 | 114 | |
115 | 115 | public function testNotEnoughInfoStatement() { |
116 | - return $this->fetch_page( array( 'pagetype' => 'divisions', 'pid' => 2, 'policy' => 810, 'url' => '/mp/2/test_current-mp/test_westminster_constituency/divisions' ) ); |
|
116 | + return $this->fetch_page(array('pagetype' => 'divisions', 'pid' => 2, 'policy' => 810, 'url' => '/mp/2/test_current-mp/test_westminster_constituency/divisions')); |
|
117 | 117 | $this->assertContains('we don’t have enough information to calculate Test Current-MP’s position', $page); |
118 | 118 | } |
119 | 119 | |
@@ -124,7 +124,7 @@ discard block |
||
124 | 124 | } |
125 | 125 | |
126 | 126 | public function testSingleDivision() { |
127 | - $page = $this->base_fetch_page( array('url' => '/divisions/division.php', 'vote' => 'pw-3012-01-01-1-commons' ), 'divisions', 'division.php', '/divisions/division.php' ); |
|
127 | + $page = $this->base_fetch_page(array('url' => '/divisions/division.php', 'vote' => 'pw-3012-01-01-1-commons'), 'divisions', 'division.php', '/divisions/division.php'); |
|
128 | 128 | $this->assertContains('A majority of MPs <b>voted in favour</b> of a thing', $page); |
129 | 129 | $this->assertContains('Aye: 200', $page); |
130 | 130 | $this->assertNotContains('No:', $page); # Summary 100, but no actual votes. In reality, summary can only be <= actual. |
@@ -23,7 +23,7 @@ |
||
23 | 23 | $this->db = new \ParlDB; |
24 | 24 | } |
25 | 25 | |
26 | - private function query($where='') { |
|
26 | + private function query($where = '') { |
|
27 | 27 | $q = $this->db->query( |
28 | 28 | "SELECT id, slug, title, description, search_string, front_page, image FROM topics $where" |
29 | 29 | ); |
@@ -12,12 +12,12 @@ discard block |
||
12 | 12 | } |
13 | 13 | |
14 | 14 | $o = get_http_var('o'); |
15 | - $args = array ( |
|
15 | + $args = array( |
|
16 | 16 | 's' => $this->searchstring, |
17 | 17 | 'p' => $pagenum, |
18 | 18 | 'num' => get_http_var('num'), |
19 | 19 | 'pop' => get_http_var('pop'), |
20 | - 'o' => ($o=='d' || $o=='r' || $o=='o') ? $o : 'd', |
|
20 | + 'o' => ($o == 'd' || $o == 'r' || $o == 'o') ? $o : 'd', |
|
21 | 21 | ); |
22 | 22 | |
23 | 23 | return $args; |
@@ -55,9 +55,9 @@ discard block |
||
55 | 55 | } |
56 | 56 | |
57 | 57 | $sort_order = 'newest'; |
58 | - if ( $args['o'] == 'o' ) { |
|
58 | + if ($args['o'] == 'o') { |
|
59 | 59 | $sort_order = 'oldest'; |
60 | - } else if ( $args['o'] == 'r' ) { |
|
60 | + } else if ($args['o'] == 'r') { |
|
61 | 61 | $sort_order = 'relevance'; |
62 | 62 | } |
63 | 63 | |
@@ -73,7 +73,7 @@ discard block |
||
73 | 73 | return array('error' => $SEARCHENGINE->error); |
74 | 74 | } else { |
75 | 75 | $LIST = new \HANSARDLIST(); |
76 | - $data = $LIST->display('search', $args , 'none'); |
|
76 | + $data = $LIST->display('search', $args, 'none'); |
|
77 | 77 | $data['search_type'] = 'normal'; |
78 | 78 | $data['sort_order'] = $sort_order; |
79 | 79 | $data['members'] = $members; |
@@ -93,10 +93,10 @@ discard block |
||
93 | 93 | return false; |
94 | 94 | } |
95 | 95 | |
96 | - list ($constituencies, ) = \MySociety\TheyWorkForYou\Utility\Search::searchConstituenciesByQuery($searchterm); |
|
96 | + list ($constituencies,) = \MySociety\TheyWorkForYou\Utility\Search::searchConstituenciesByQuery($searchterm); |
|
97 | 97 | |
98 | 98 | $constituency = ""; |
99 | - if (count($constituencies)==1) { |
|
99 | + if (count($constituencies) == 1) { |
|
100 | 100 | $constituency = $constituencies[0]; |
101 | 101 | } |
102 | 102 | |
@@ -112,12 +112,12 @@ discard block |
||
112 | 112 | |
113 | 113 | $MEMBER = new \MySociety\TheyWorkForYou\Member(array('constituency'=>$constituency, 'house' => 1)); |
114 | 114 | $cons[] = $MEMBER; |
115 | - if ( $MEMBER->current_member(1) ) { |
|
115 | + if ($MEMBER->current_member(1)) { |
|
116 | 116 | $mp_types['mp']++; |
117 | 117 | } else { |
118 | 118 | $mp_types['former']++; |
119 | 119 | } |
120 | - } catch ( \MySociety\TheyWorkForYou\MemberException $e ) { |
|
120 | + } catch (\MySociety\TheyWorkForYou\MemberException $e) { |
|
121 | 121 | $cons = array(); |
122 | 122 | } |
123 | 123 | } elseif (count($constituencies)) { |
@@ -125,12 +125,12 @@ discard block |
||
125 | 125 | try { |
126 | 126 | $MEMBER = new \MySociety\TheyWorkForYou\Member(array('constituency'=>$constituency, 'house' => 1)); |
127 | 127 | $cons[] = $MEMBER; |
128 | - if ( $MEMBER->current_member(1) ) { |
|
128 | + if ($MEMBER->current_member(1)) { |
|
129 | 129 | $mp_types['mp']++; |
130 | 130 | } else { |
131 | 131 | $mp_types['former']++; |
132 | 132 | } |
133 | - } catch ( \MySociety\TheyWorkForYou\MemberException $e ) { |
|
133 | + } catch (\MySociety\TheyWorkForYou\MemberException $e) { |
|
134 | 134 | continue; |
135 | 135 | } |
136 | 136 | } |
@@ -201,7 +201,7 @@ discard block |
||
201 | 201 | $link = array( |
202 | 202 | 'url' => $url->generate(), |
203 | 203 | 'page' => $n, |
204 | - 'current' => ( $n == $data['page'] ) |
|
204 | + 'current' => ($n == $data['page']) |
|
205 | 205 | ); |
206 | 206 | |
207 | 207 | $links[] = $link; |
@@ -242,27 +242,27 @@ discard block |
||
242 | 242 | $numlinks = $this->generate_pagination_links($data, $URL, $firstpage, $lastpage); |
243 | 243 | |
244 | 244 | $pagelinks['nums'] = $numlinks; |
245 | - $pagelinks['first_result'] = $page == 1 ? 1 : ( ( $page - 1 ) * $results_per_page ) + 1; |
|
246 | - $pagelinks['last_result'] = $page == $numpages ? $total_results : $pagelinks['first_result'] + ( $results_per_page - 1 ); |
|
245 | + $pagelinks['first_result'] = $page == 1 ? 1 : (($page - 1) * $results_per_page) + 1; |
|
246 | + $pagelinks['last_result'] = $page == $numpages ? $total_results : $pagelinks['first_result'] + ($results_per_page - 1); |
|
247 | 247 | |
248 | - if ( $page != 1 ) { |
|
248 | + if ($page != 1) { |
|
249 | 249 | $prev_page = $page - 1; |
250 | - $URL->insert(array( 'p' => $prev_page ) ); |
|
250 | + $URL->insert(array('p' => $prev_page)); |
|
251 | 251 | $pagelinks['prev'] = array( |
252 | 252 | 'url' => $URL->generate() |
253 | 253 | ); |
254 | - $URL->insert(array( 'p' => 1 ) ); |
|
254 | + $URL->insert(array('p' => 1)); |
|
255 | 255 | $pagelinks['firstpage'] = array( |
256 | 256 | 'url' => $URL->generate() |
257 | 257 | ); |
258 | 258 | } |
259 | 259 | if ($page != $numpages) { |
260 | 260 | $next_page = $page + 1; |
261 | - $URL->insert(array( 'p' => $next_page ) ); |
|
261 | + $URL->insert(array('p' => $next_page)); |
|
262 | 262 | $pagelinks['next'] = array( |
263 | 263 | 'url' => $URL->generate() |
264 | 264 | ); |
265 | - $URL->insert(array( 'p' => $numpages ) ); |
|
265 | + $URL->insert(array('p' => $numpages)); |
|
266 | 266 | $pagelinks['lastpage'] = array( |
267 | 267 | 'url' => $URL->generate() |
268 | 268 | ); |
@@ -279,7 +279,7 @@ discard block |
||
279 | 279 | $links['rss'] = $DATA->page_metadata($this_page, 'rss'); |
280 | 280 | |
281 | 281 | if ($SEARCHENGINE) { |
282 | - $links['email'] = '/alert/?' . ($this->searchstring ? 'alertsearch='.urlencode($this->searchstring) : ''); |
|
282 | + $links['email'] = '/alert/?' . ($this->searchstring ? 'alertsearch=' . urlencode($this->searchstring) : ''); |
|
283 | 283 | $links['email_desc'] = $SEARCHENGINE->query_description_long(); |
284 | 284 | } |
285 | 285 | |
@@ -293,7 +293,7 @@ discard block |
||
293 | 293 | $search_engine = new \SEARCHENGINE($filter_ss); |
294 | 294 | $links['email_section'] = $links['email']; |
295 | 295 | $links['email_desc_section'] = $links['email_desc']; |
296 | - $links['email'] = '/alert/?' . ($filter_ss ? 'alertsearch='.urlencode($filter_ss) : ''); |
|
296 | + $links['email'] = '/alert/?' . ($filter_ss ? 'alertsearch=' . urlencode($filter_ss) : ''); |
|
297 | 297 | $links['email_desc'] = $search_engine->query_description_long(); |
298 | 298 | } |
299 | 299 |
@@ -217,7 +217,7 @@ |
||
217 | 217 | # unset($SEARCHENGINE); |
218 | 218 | $total_results = $data['info']['total_results']; |
219 | 219 | $queries++; |
220 | - mlog(", hits " . $total_results . ", time " . (getmicrotime()-$start) . "\n"); |
|
220 | + mlog(", hits " . $total_results . ", time " . (getmicrotime() - $start) . "\n"); |
|
221 | 221 | } else { |
222 | 222 | mlog(" ACTION $active/$outof CACHE HIT : Using cached result for '$criteria_batch'\n"); |
223 | 223 | $data = $results[$criteria_batch]; |
@@ -423,7 +423,7 @@ |
||
423 | 423 | |
424 | 424 | $text .= '===================='; |
425 | 425 | $sentemails++; |
426 | - mlog("SEND $sentemails : Sending email to $current[email] ... "); |
|
426 | + mlog("send $sentemails : Sending email to $current[email] ... "); |
|
427 | 427 | $d = array('to' => $current['email'], 'template' => $template); |
428 | 428 | $m = array( |
429 | 429 | 'DATA' => $text, |
@@ -15,7 +15,7 @@ discard block |
||
15 | 15 | $parts = parse_url($url); |
16 | 16 | parse_str($parts['query'], $query); |
17 | 17 | |
18 | - if ( $query['id'] ) { |
|
18 | + if ($query['id']) { |
|
19 | 19 | if (strpos($parts['path'], 'lords') !== false) { |
20 | 20 | $gid = 'uk.org.publicwhip/lords/'; |
21 | 21 | } elseif (strpos($parts['path'], 'whall') !== false) { |
@@ -30,13 +30,13 @@ discard block |
||
30 | 30 | |
31 | 31 | |
32 | 32 | public static function gid_to_url($gid) { |
33 | - if ( !$gid ) { |
|
33 | + if (!$gid) { |
|
34 | 34 | return ''; |
35 | 35 | } |
36 | 36 | global $hansardmajors; |
37 | 37 | $db = new \ParlDB(); |
38 | 38 | |
39 | - $q = $db->query("SELECT major FROM hansard WHERE gid = :gid", array( ':gid' => $gid ))->first(); |
|
39 | + $q = $db->query("SELECT major FROM hansard WHERE gid = :gid", array(':gid' => $gid))->first(); |
|
40 | 40 | $url_gid = fix_gid_from_db($gid); |
41 | 41 | $url = new \MySociety\TheyWorkForYou\Url($hansardmajors[$q['major']]['page']); |
42 | 42 | $url->insert(array('id' => $url_gid)); |
@@ -28,12 +28,12 @@ discard block |
||
28 | 28 | public function get_text() { |
29 | 29 | $text = $this->mem->get('banner'); |
30 | 30 | |
31 | - if ( $text === false ) { |
|
31 | + if ($text === false) { |
|
32 | 32 | $q = $this->db->query("SELECT value FROM editorial WHERE item = 'banner'")->first(); |
33 | 33 | |
34 | 34 | if ($q) { |
35 | 35 | $text = $q['value']; |
36 | - if ( trim($text) == '' ) { |
|
36 | + if (trim($text) == '') { |
|
37 | 37 | $text = NULL; |
38 | 38 | } |
39 | 39 | $this->mem->set('banner', $text, 86400); |
@@ -50,8 +50,8 @@ discard block |
||
50 | 50 | ) |
51 | 51 | ); |
52 | 52 | |
53 | - if ( $q->success() ) { |
|
54 | - if ( trim($text) == '' ) { |
|
53 | + if ($q->success()) { |
|
54 | + if (trim($text) == '') { |
|
55 | 55 | $text = NULL; |
56 | 56 | } |
57 | 57 | $this->mem->set('banner', $text, 86400); |
@@ -34,7 +34,7 @@ discard block |
||
34 | 34 | if ($q) { |
35 | 35 | $text = $q['value']; |
36 | 36 | if ( trim($text) == '' ) { |
37 | - $text = NULL; |
|
37 | + $text = null; |
|
38 | 38 | } |
39 | 39 | $this->mem->set('banner', $text, 86400); |
40 | 40 | } |
@@ -52,7 +52,7 @@ discard block |
||
52 | 52 | |
53 | 53 | if ( $q->success() ) { |
54 | 54 | if ( trim($text) == '' ) { |
55 | - $text = NULL; |
|
55 | + $text = null; |
|
56 | 56 | } |
57 | 57 | $this->mem->set('banner', $text, 86400); |
58 | 58 | return true; |
@@ -1,7 +1,7 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | |
3 | 3 | include_once '../../includes/easyparliament/init.php'; |
4 | -include_once (INCLUDESPATH."easyparliament/commentreportlist.php"); |
|
4 | +include_once (INCLUDESPATH . "easyparliament/commentreportlist.php"); |
|
5 | 5 | |
6 | 6 | $this_page = "admin_home"; |
7 | 7 | |
@@ -18,9 +18,9 @@ discard block |
||
18 | 18 | |
19 | 19 | $confirmedusers = $db->query("SELECT COUNT(*) AS count FROM users WHERE confirmed = '1'")->first()['count']; |
20 | 20 | $unconfirmedusers = $db->query("SELECT COUNT(*) AS count FROM users WHERE confirmed = '0'")->first()['count']; |
21 | -$olddate = gmdate("Y-m-d H:i:s", time()-86400); |
|
21 | +$olddate = gmdate("Y-m-d H:i:s", time() - 86400); |
|
22 | 22 | $dayusers = $db->query("SELECT COUNT(*) AS count FROM users WHERE lastvisit > '$olddate'")->first()['count']; |
23 | -$olddate = gmdate("Y-m-d H:i:s", time()-86400*7); |
|
23 | +$olddate = gmdate("Y-m-d H:i:s", time() - 86400 * 7); |
|
24 | 24 | $weekusers = $db->query("SELECT COUNT(*) AS count FROM users WHERE lastvisit > '$olddate'")->first()['count']; |
25 | 25 | ?> |
26 | 26 | <ul> |
@@ -73,7 +73,7 @@ discard block |
||
73 | 73 | $name = _htmlspecialchars($row['firstname'] . ' ' . $row['lastname']); |
74 | 74 | } |
75 | 75 | |
76 | - $rows[] = array ( |
|
76 | + $rows[] = array( |
|
77 | 77 | $name, |
78 | 78 | '<a href="mailto:' . $row['email'] . '">' . $row['email'] . '</a>', |
79 | 79 | $confirmed, |
@@ -81,8 +81,8 @@ discard block |
||
81 | 81 | ); |
82 | 82 | } |
83 | 83 | |
84 | -$tabledata = array ( |
|
85 | - 'header' => array ( |
|
84 | +$tabledata = array( |
|
85 | + 'header' => array( |
|
86 | 86 | 'Name', |
87 | 87 | 'Email', |
88 | 88 | 'Confirmed?', |
@@ -1,7 +1,7 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | |
3 | 3 | include_once '../../includes/easyparliament/init.php'; |
4 | -include_once (INCLUDESPATH."easyparliament/commentreportlist.php"); |
|
4 | +include_once (INCLUDESPATH . "easyparliament/commentreportlist.php"); |
|
5 | 5 | |
6 | 6 | $this_page = "admin_badusers"; |
7 | 7 | |
@@ -42,7 +42,7 @@ discard block |
||
42 | 42 | |
43 | 43 | $totalcomments = $r['totalcount']; |
44 | 44 | |
45 | - $percentagedeleted = ( $row['deletedcount'] / $totalcomments ) * 100; |
|
45 | + $percentagedeleted = ($row['deletedcount'] / $totalcomments) * 100; |
|
46 | 46 | |
47 | 47 | |
48 | 48 | // Get complaints made about this user's comments, but not upheld. |
@@ -57,17 +57,17 @@ discard block |
||
57 | 57 | |
58 | 58 | $USERURL->insert(array('u'=>$user_id)); |
59 | 59 | |
60 | - $rows[] = array ( |
|
60 | + $rows[] = array( |
|
61 | 61 | '<a href="' . $USERURL->generate() . '">' . $row['firstname'] . ' ' . $row['lastname'] . '</a>', |
62 | 62 | $totalcomments, |
63 | 63 | $row['deletedcount'], |
64 | - $percentagedeleted.'%', |
|
64 | + $percentagedeleted . '%', |
|
65 | 65 | $notupheldcount |
66 | 66 | ); |
67 | 67 | } |
68 | 68 | |
69 | -$tabledata = array ( |
|
70 | - 'header' => array ( |
|
69 | +$tabledata = array( |
|
70 | + 'header' => array( |
|
71 | 71 | 'Name', |
72 | 72 | 'Total comments', |
73 | 73 | 'Number deleted', |
@@ -114,15 +114,15 @@ discard block |
||
114 | 114 | WHERE user_id = '$user_id' |
115 | 115 | AND upheld = '1'")->first(); |
116 | 116 | |
117 | - $rows[] = array ( |
|
117 | + $rows[] = array( |
|
118 | 118 | '<a href="' . $USERURL->generate() . '">' . $row['firstname'] . ' ' . $row['lastname'] . '</a>', |
119 | 119 | $row['rejectedcount'], |
120 | 120 | $r['upheldcount'] |
121 | 121 | ); |
122 | 122 | |
123 | 123 | } |
124 | -$tabledata = array ( |
|
125 | - 'header' => array ( |
|
124 | +$tabledata = array( |
|
125 | + 'header' => array( |
|
126 | 126 | 'Name', |
127 | 127 | 'Reports not upheld', |
128 | 128 | 'Reports upheld' |