@@ -144,4 +144,4 @@ |
||
144 | 144 | <?php |
145 | 145 | #$PAGE->block_end(); |
146 | 146 | $PAGE->stripe_end(); |
147 | -$PAGE->page_end (); |
|
147 | +$PAGE->page_end(); |
@@ -138,4 +138,4 @@ |
||
138 | 138 | 'type' => 'html', |
139 | 139 | 'content' => '<p align="center"><img title="Duck-billed platypus" src="bill3.jpg" alt="" hspace="10"></p>' |
140 | 140 | ))); |
141 | -$PAGE->page_end (); |
|
141 | +$PAGE->page_end(); |
@@ -44,8 +44,9 @@ |
||
44 | 44 | $pagetitle .= " page $pagenum"; |
45 | 45 | } |
46 | 46 | $num = get_http_var('n'); |
47 | - if (!is_numeric($num) || $num <= 0) |
|
48 | - $num = 20; |
|
47 | + if (!is_numeric($num) || $num <= 0) { |
|
48 | + $num = 20; |
|
49 | + } |
|
49 | 50 | |
50 | 51 | $DATA->set_page_metadata($this_page, 'title', $pagetitle); |
51 | 52 |
@@ -2,8 +2,8 @@ discard block |
||
2 | 2 | # vim:sw=4:ts=4:et:nowrap |
3 | 3 | |
4 | 4 | include_once '../../../includes/easyparliament/init.php'; |
5 | -include_once INCLUDESPATH."easyparliament/member.php"; |
|
6 | -include_once INCLUDESPATH."easyparliament/glossary.php"; |
|
5 | +include_once INCLUDESPATH . "easyparliament/member.php"; |
|
6 | +include_once INCLUDESPATH . "easyparliament/glossary.php"; |
|
7 | 7 | |
8 | 8 | if (!DEVSITE) { |
9 | 9 | header('Cache-Control: max-age=86400'); # Once a day |
@@ -49,7 +49,7 @@ discard block |
||
49 | 49 | |
50 | 50 | $DATA->set_page_metadata($this_page, 'title', $pagetitle); |
51 | 51 | |
52 | - $args = array ( |
|
52 | + $args = array( |
|
53 | 53 | 's' => $searchstring, |
54 | 54 | 'p' => $pagenum, |
55 | 55 | 'pop' => 1, |
@@ -2,12 +2,12 @@ discard block |
||
2 | 2 | |
3 | 3 | $this_page = 'hansard_bugs'; |
4 | 4 | include_once '../../includes/easyparliament/init.php'; |
5 | -$DATA->set_page_metadata($this_page, 'heading','Official Hansard problems'); |
|
5 | +$DATA->set_page_metadata($this_page, 'heading', 'Official Hansard problems'); |
|
6 | 6 | |
7 | 7 | $PAGE->page_start(); |
8 | 8 | $PAGE->stripe_start(); |
9 | 9 | |
10 | -$PAGE->block_start(array ('title'=>'Things currently noticeable to the user')); |
|
10 | +$PAGE->block_start(array('title'=>'Things currently noticeable to the user')); |
|
11 | 11 | ?> |
12 | 12 | |
13 | 13 | <style type="text/css"> |
@@ -110,7 +110,7 @@ discard block |
||
110 | 110 | |
111 | 111 | <?php |
112 | 112 | $PAGE->block_end(); |
113 | -$PAGE->block_start(array ('title'=>'Things not noticeable to the user')); |
|
113 | +$PAGE->block_start(array('title'=>'Things not noticeable to the user')); |
|
114 | 114 | ?> |
115 | 115 | |
116 | 116 | <ul> |
@@ -33,8 +33,9 @@ |
||
33 | 33 | if (isset($arr[3])) { |
34 | 34 | print '<a href="'.$link.'/questions">Written Questions</a>'; |
35 | 35 | } |
36 | - if (count($arr)==2) |
|
37 | - print ' | '; |
|
36 | + if (count($arr)==2) { |
|
37 | + print ' | '; |
|
38 | + } |
|
38 | 39 | if (isset($arr[4])) { |
39 | 40 | print '<a href="'.$link.'/statements">Written Ministerial Statements</a>'; |
40 | 41 | } |
@@ -16,7 +16,7 @@ discard block |
||
16 | 16 | group by body, major |
17 | 17 | order by body'); |
18 | 18 | $data = array(); |
19 | -for ($i=0; $i<$q->rows(); $i++) { |
|
19 | +for ($i = 0; $i < $q->rows(); $i++) { |
|
20 | 20 | $body = $q->field($i, 'body'); |
21 | 21 | $major = $q->field($i, 'major'); |
22 | 22 | $data[$body][$major] = true; |
@@ -26,17 +26,17 @@ discard block |
||
26 | 26 | |
27 | 27 | print '<ul>'; |
28 | 28 | foreach ($data as $body => $arr) { |
29 | - $link = strtolower(str_replace(' ','_',$body)); |
|
29 | + $link = strtolower(str_replace(' ', '_', $body)); |
|
30 | 30 | print '<li>'; |
31 | 31 | print $body; |
32 | 32 | print ' — '; |
33 | 33 | if (isset($arr[3])) { |
34 | - print '<a href="'.$link.'/questions">Written Questions</a>'; |
|
34 | + print '<a href="' . $link . '/questions">Written Questions</a>'; |
|
35 | 35 | } |
36 | - if (count($arr)==2) |
|
36 | + if (count($arr) == 2) |
|
37 | 37 | print ' | '; |
38 | 38 | if (isset($arr[4])) { |
39 | - print '<a href="'.$link.'/statements">Written Ministerial Statements</a>'; |
|
39 | + print '<a href="' . $link . '/statements">Written Ministerial Statements</a>'; |
|
40 | 40 | } |
41 | 41 | print '</li>'; |
42 | 42 | } |
@@ -17,7 +17,9 @@ discard block |
||
17 | 17 | $adate = $q->field(0, 'adate'); |
18 | 18 | $atime = $q->field(0, 'atime'); |
19 | 19 | $video = \MySociety\TheyWorkForYou\Utility\Video::fromTimestamp($videodb, $adate, $atime); |
20 | -if (!$video) exit; |
|
20 | +if (!$video) { |
|
21 | + exit; |
|
22 | +} |
|
21 | 23 | |
22 | 24 | $start = date('H:i:s', strtotime($video['broadcast_start']. ' GMT')); |
23 | 25 | $end = date('H:i:s', strtotime($video['broadcast_end'] . ' GMT')); |
@@ -35,7 +37,9 @@ discard block |
||
35 | 37 | print '<stamps>'; |
36 | 38 | for ($i=0; $i<$q->rows(); $i++) { |
37 | 39 | $gid = str_replace('uk.org.publicwhip/', '', $q->field($i, 'gid')); |
38 | - if (isset($gids[$gid])) continue; |
|
40 | + if (isset($gids[$gid])) { |
|
41 | + continue; |
|
42 | + } |
|
39 | 43 | $timetoend = $q->field($i, 'timetoend') - $file_offset; |
40 | 44 | if ($timetoend>0) { |
41 | 45 | $video = \MySociety\TheyWorkForYou\Utility\Video::fromTimestamp($videodb, $q->field($i, 'adate'), $q->field($i, 'atime')); |
@@ -45,8 +49,9 @@ discard block |
||
45 | 49 | $end = date('H:i:s', strtotime($video['broadcast_end'] . ' GMT')); |
46 | 50 | } |
47 | 51 | $timediff = $q->field($i, 'timediff') - $file_offset; |
48 | - if ($timediff>=0) |
|
49 | - print "<stamp><gid>$gid</gid><file>$video[id]</file><time>$timediff</time></stamp>\n"; |
|
52 | + if ($timediff>=0) { |
|
53 | + print "<stamp><gid>$gid</gid><file>$video[id]</file><time>$timediff</time></stamp>\n"; |
|
54 | + } |
|
50 | 55 | $gids[$gid] = true; |
51 | 56 | } |
52 | 57 | print '</stamps>'; |
@@ -19,7 +19,7 @@ discard block |
||
19 | 19 | $video = \MySociety\TheyWorkForYou\Utility\Video::fromTimestamp($videodb, $adate, $atime); |
20 | 20 | if (!$video) exit; |
21 | 21 | |
22 | -$start = date('H:i:s', strtotime($video['broadcast_start']. ' GMT')); |
|
22 | +$start = date('H:i:s', strtotime($video['broadcast_start'] . ' GMT')); |
|
23 | 23 | $end = date('H:i:s', strtotime($video['broadcast_end'] . ' GMT')); |
24 | 24 | |
25 | 25 | $q = $db->query("select video_timestamps.gid, adate, atime, time_to_sec(timediff(atime, '$start')) as timediff, |
@@ -33,26 +33,26 @@ discard block |
||
33 | 33 | $gids = array(); |
34 | 34 | $file_offset = 0; |
35 | 35 | print '<stamps>'; |
36 | -for ($i=0; $i<$q->rows(); $i++) { |
|
36 | +for ($i = 0; $i < $q->rows(); $i++) { |
|
37 | 37 | $gid = str_replace('uk.org.publicwhip/', '', $q->field($i, 'gid')); |
38 | 38 | if (isset($gids[$gid])) continue; |
39 | 39 | $timetoend = $q->field($i, 'timetoend') - $file_offset; |
40 | - if ($timetoend>0) { |
|
40 | + if ($timetoend > 0) { |
|
41 | 41 | $video = \MySociety\TheyWorkForYou\Utility\Video::fromTimestamp($videodb, $q->field($i, 'adate'), $q->field($i, 'atime')); |
42 | - $new_start = date('H:i:s', strtotime($video['broadcast_start']. ' GMT')); |
|
42 | + $new_start = date('H:i:s', strtotime($video['broadcast_start'] . ' GMT')); |
|
43 | 43 | $file_offset += timediff($new_start, $start); |
44 | 44 | $start = $new_start; |
45 | 45 | $end = date('H:i:s', strtotime($video['broadcast_end'] . ' GMT')); |
46 | 46 | } |
47 | 47 | $timediff = $q->field($i, 'timediff') - $file_offset; |
48 | - if ($timediff>=0) |
|
48 | + if ($timediff >= 0) |
|
49 | 49 | print "<stamp><gid>$gid</gid><file>$video[id]</file><time>$timediff</time></stamp>\n"; |
50 | 50 | $gids[$gid] = true; |
51 | 51 | } |
52 | 52 | print '</stamps>'; |
53 | 53 | |
54 | 54 | function timediff($a, $b) { |
55 | - return substr($a, 0, 2)*3600 + substr($a, 3, 2)*60 + substr($a, 6, 2) |
|
56 | - - substr($b, 0, 2)*3600 - substr($b, 3, 2)*60 - substr($b, 6, 2); |
|
55 | + return substr($a, 0, 2) * 3600 + substr($a, 3, 2) * 60 + substr($a, 6, 2) |
|
56 | + - substr($b, 0, 2) * 3600 - substr($b, 3, 2) * 60 - substr($b, 6, 2); |
|
57 | 57 | |
58 | 58 | } |
@@ -5,7 +5,9 @@ discard block |
||
5 | 5 | $gid = get_http_var('gid'); |
6 | 6 | $oops = get_http_var('oops'); |
7 | 7 | |
8 | -if (!$oops || !$gid) exit; |
|
8 | +if (!$oops || !$gid) { |
|
9 | + exit; |
|
10 | +} |
|
9 | 11 | |
10 | 12 | $gid = "uk.org.publicwhip/$gid"; |
11 | 13 | |
@@ -16,7 +18,8 @@ discard block |
||
16 | 18 | |
17 | 19 | $db = new ParlDB; |
18 | 20 | $q = $db->query("update video_timestamps set deleted=1 where id = :oops and gid = :gid and current_timestamp<whenstamped+interval 30 second", $params); |
19 | -if ($q->affected_rows()) |
|
21 | +if ($q->affected_rows()) { |
|
20 | 22 | $db->query("update hansard set video_status = video_status & 11 where gid = :gid", $params); |
23 | +} |
|
21 | 24 | |
22 | 25 | print "<status>OK</status>"; |
@@ -14,7 +14,7 @@ |
||
14 | 14 | // So we can send the user back to where they came from. |
15 | 15 | $URL->insert(array("ret"=>get_http_var("ret"))); |
16 | 16 | } |
17 | -$THEUSER->logout( $URL->generate() ); |
|
17 | +$THEUSER->logout($URL->generate()); |
|
18 | 18 | |
19 | 19 | $message['title'] = 'You are now logged out'; |
20 | 20 |
@@ -11,34 +11,34 @@ discard block |
||
11 | 11 | |
12 | 12 | $slug = get_http_var('id'); |
13 | 13 | if ($slug) { |
14 | - $topic = $topics->getTopic($slug); |
|
14 | + $topic = $topics->getTopic($slug); |
|
15 | 15 | } else { |
16 | - $topic = new \MySociety\TheyWorkForYou\Topic(); |
|
16 | + $topic = new \MySociety\TheyWorkForYou\Topic(); |
|
17 | 17 | } |
18 | 18 | |
19 | 19 | $action = get_http_var('action'); |
20 | 20 | switch ($action) { |
21 | 21 | case 'add': |
22 | 22 | $success = add_topic($topic); |
23 | - break; |
|
23 | + break; |
|
24 | 24 | case 'update': |
25 | 25 | $success = update_topic($topic); |
26 | - break; |
|
26 | + break; |
|
27 | 27 | case 'setimage': |
28 | 28 | $success = add_image($topic); |
29 | - break; |
|
29 | + break; |
|
30 | 30 | case 'addcontent': |
31 | 31 | $success = add_content($topic); |
32 | - break; |
|
32 | + break; |
|
33 | 33 | case 'deletecontent': |
34 | 34 | $success = delete_content($topic); |
35 | - break; |
|
35 | + break; |
|
36 | 36 | case 'addpolicysets': |
37 | 37 | $success = add_policy_sets($topic); |
38 | - break; |
|
38 | + break; |
|
39 | 39 | case 'addpolicies': |
40 | 40 | $success = add_policies($topic); |
41 | - break; |
|
41 | + break; |
|
42 | 42 | default: |
43 | 43 | $success = NULL; |
44 | 44 | } |
@@ -125,10 +125,10 @@ discard block |
||
125 | 125 | <select name="sets[]" multiple> |
126 | 126 | <option value="">None</option> |
127 | 127 | <?php |
128 | - $policies = new \MySociety\TheyWorkForYou\Policies; |
|
129 | - $set_descriptions = $policies->getSetDescriptions(); |
|
130 | - $related_sets = $topic->getPolicySets(); |
|
131 | - foreach ($set_descriptions as $set => $description) { ?> |
|
128 | + $policies = new \MySociety\TheyWorkForYou\Policies; |
|
129 | + $set_descriptions = $policies->getSetDescriptions(); |
|
130 | + $related_sets = $topic->getPolicySets(); |
|
131 | + foreach ($set_descriptions as $set => $description) { ?> |
|
132 | 132 | <option value="<?= $set ?>" <?= in_array($set, $related_sets) ? 'selected' : '' ?>><?= $description ?></option> |
133 | 133 | <?php } ?> |
134 | 134 | <input type="submit" value="Update"> |
@@ -143,10 +143,10 @@ discard block |
||
143 | 143 | <select name="policies[]" multiple> |
144 | 144 | <option value="">None</option> |
145 | 145 | <?php |
146 | - $policies = new \MySociety\TheyWorkForYou\Policies; |
|
147 | - $all_policies = $policies->getPolicies(); |
|
148 | - $related_policies = $topic->getPolicies(); |
|
149 | - foreach ($all_policies as $number => $description) { ?> |
|
146 | + $policies = new \MySociety\TheyWorkForYou\Policies; |
|
147 | + $all_policies = $policies->getPolicies(); |
|
148 | + $related_policies = $topic->getPolicies(); |
|
149 | + foreach ($all_policies as $number => $description) { ?> |
|
150 | 150 | <option value="<?= $number ?>" <?= in_array($number, $related_policies) ? 'selected' : '' ?>><?= $description ?></option> |
151 | 151 | <?php } ?> |
152 | 152 | |
@@ -214,9 +214,9 @@ discard block |
||
214 | 214 | $file_info['tmp_name'], |
215 | 215 | $topic->image_path() |
216 | 216 | ); |
217 | - } catch (ErrorException $e) { |
|
217 | + } catch (ErrorException $e) { |
|
218 | 218 | return false; |
219 | - } |
|
219 | + } |
|
220 | 220 | |
221 | 221 | if ($image_saved) { |
222 | 222 | return $topic->save(); |
@@ -40,7 +40,7 @@ |
||
40 | 40 | $success = add_policies($topic); |
41 | 41 | break; |
42 | 42 | default: |
43 | - $success = NULL; |
|
43 | + $success = null; |
|
44 | 44 | } |
45 | 45 | |
46 | 46 | if (!is_null($success)) { |
@@ -12,7 +12,8 @@ discard block |
||
12 | 12 | $slug = get_http_var('id'); |
13 | 13 | if ($slug) { |
14 | 14 | $topic = $topics->getTopic($slug); |
15 | -} else { |
|
15 | +} |
|
16 | +else { |
|
16 | 17 | $topic = new \MySociety\TheyWorkForYou\Topic(); |
17 | 18 | } |
18 | 19 | |
@@ -46,7 +47,8 @@ discard block |
||
46 | 47 | if (!is_null($success)) { |
47 | 48 | if ($success) { |
48 | 49 | $out = "<h4>Update successful</h4>"; |
49 | - } else { |
|
50 | + } |
|
51 | + else { |
|
50 | 52 | $out = "<h4>Failed to update Topic</h4>"; |
51 | 53 | } |
52 | 54 | print $out; |