@@ -1,6 +1,6 @@ |
||
1 | 1 | <div class="business-section__primary"> |
2 | 2 | <ul class="business-list"> |
3 | - <?php foreach ( $data as $item ) { ?> |
|
3 | + <?php foreach ($data as $item) { ?> |
|
4 | 4 | <li> |
5 | 5 | <?php include '_business_list_item.php'; ?> |
6 | 6 | </li> |
@@ -24,7 +24,7 @@ |
||
24 | 24 | foreach ( $years as $year => $months ) { ?> |
25 | 25 | <div class="calendar-year"> |
26 | 26 | <?php foreach ($months as $month => $dates) { |
27 | - include '_calendar.php'; |
|
27 | + include '_calendar.php'; |
|
28 | 28 | } ?> |
29 | 29 | </div> |
30 | 30 | <?php } |
@@ -8,20 +8,20 @@ |
||
8 | 8 | </div> |
9 | 9 | <div class="business-section__solo"> |
10 | 10 | <div class="calendar__controls"> |
11 | - <?php if ( isset( $prev ) ) { ?> |
|
11 | + <?php if (isset($prev)) { ?> |
|
12 | 12 | <a href="<?= $prev['url'] ?>" class="calendar__controls__previous">← <?= $prev['title'] ?></a> |
13 | 13 | <?php } else { ?> |
14 | 14 | <span class="calendar__controls__previous"></span> |
15 | 15 | <?php } ?> |
16 | 16 | <span class="calendar__controls__current"><?= $year ?></span> |
17 | - <?php if ( isset( $next ) ) { ?> |
|
17 | + <?php if (isset($next)) { ?> |
|
18 | 18 | <a href="<?= $next['url'] ?>" class="calendar__controls__next"><?= $next['title'] ?> →</a> |
19 | 19 | <?php } else { ?> |
20 | 20 | <span class="calendar__controls__next"></span> |
21 | 21 | <?php } ?> |
22 | 22 | </div> |
23 | - <?php if ( isset($years) ) { |
|
24 | - foreach ( $years as $year => $months ) { ?> |
|
23 | + <?php if (isset($years)) { |
|
24 | + foreach ($years as $year => $months) { ?> |
|
25 | 25 | <div class="calendar-year"> |
26 | 26 | <?php foreach ($months as $month => $dates) { |
27 | 27 | include '_calendar.php'; |
@@ -34,6 +34,6 @@ |
||
34 | 34 | </div> |
35 | 35 | </div> |
36 | 36 | |
37 | - <?php $search_title = "Search $title"; include '_search.php'; ?> |
|
37 | + <?php $search_title = "search $title"; include '_search.php'; ?> |
|
38 | 38 | |
39 | 39 | </div> |
@@ -22,14 +22,14 @@ |
||
22 | 22 | |
23 | 23 | <div class="business-section__primary"> |
24 | 24 | <ul class="business-list"> |
25 | - <?php foreach ( $content['data'] as $date => $bills ) { ?> |
|
25 | + <?php foreach ($content['data'] as $date => $bills) { ?> |
|
26 | 26 | <li> |
27 | 27 | <span class="business-list__title"> |
28 | 28 | <h3> |
29 | 29 | <?= $date ?> |
30 | 30 | </h3> |
31 | 31 | </span> |
32 | - <?php foreach ( $bills as $bill ) { ?> |
|
32 | + <?php foreach ($bills as $bill) { ?> |
|
33 | 33 | <p> |
34 | 34 | <a href="<?= $bill['url'] ?>" class="business-list__title"> |
35 | 35 | <?= $bill['bill'] ?> – <?= $bill['sitting'] ?> |
@@ -1,6 +1,6 @@ |
||
1 | 1 | <?php |
2 | 2 | foreach ( $calendar as $year => $months ) { |
3 | 3 | foreach ($months as $month => $dates) { |
4 | - include '_calendar.php'; |
|
4 | + include '_calendar.php'; |
|
5 | 5 | } |
6 | 6 | } ?> |
@@ -1,5 +1,5 @@ |
||
1 | 1 | <?php |
2 | - foreach ( $calendar as $year => $months ) { |
|
2 | + foreach ($calendar as $year => $months) { |
|
3 | 3 | foreach ($months as $month => $dates) { |
4 | 4 | include '_calendar.php'; |
5 | 5 | } |
@@ -1,6 +1,6 @@ discard block |
||
1 | 1 | <a href="<?= $item['list_url'] ?>" class="business-list__title"> |
2 | 2 | <h3> |
3 | - <?php if ( isset( $item['parent'] ) ) { ?> |
|
3 | + <?php if (isset($item['parent'])) { ?> |
|
4 | 4 | <?= $item['parent']['body'] ?> |
5 | 5 | <br><?= $item['body'] ?> |
6 | 6 | <?php } else { ?> |
@@ -9,14 +9,14 @@ discard block |
||
9 | 9 | </h3> |
10 | 10 | <span class="business-list__meta"> |
11 | 11 | <?= format_date($item['hdate'], LONGERDATEFORMAT) ?> |
12 | - <?= isset($item['contentcount']) ? '· ' . $item['contentcount'] . ( $item['contentcount'] == 1 ? ' speech' : ' speeches' ) : '' ?> |
|
12 | + <?= isset($item['contentcount']) ? '· '.$item['contentcount'].($item['contentcount'] == 1 ? ' speech' : ' speeches') : '' ?> |
|
13 | 13 | </span> |
14 | 14 | </a> |
15 | -<?php if ( isset( $item['child'] ) ) { ?> |
|
15 | +<?php if (isset($item['child'])) { ?> |
|
16 | 16 | <p class="business-list__excerpt"> |
17 | - <?php if ( isset($item['child']['speaker']) && count($item['child']['speaker']) > 0 ) { ?> |
|
17 | + <?php if (isset($item['child']['speaker']) && count($item['child']['speaker']) > 0) { ?> |
|
18 | 18 | <a href="<?= $item['child']['speaker']['url'] ?>"><?= $item['child']['speaker']['name'] ?></a> |
19 | 19 | <?php } ?> |
20 | - <?= strip_tags(trim_characters( $item['child']['body'], 0, 200 )) ?> |
|
20 | + <?= strip_tags(trim_characters($item['child']['body'], 0, 200)) ?> |
|
21 | 21 | </p> |
22 | 22 | <?php } ?> |
@@ -32,8 +32,8 @@ |
||
32 | 32 | </div> |
33 | 33 | </div> |
34 | 34 | <?php } else { |
35 | - $section = false; include '_section_content.php'; |
|
36 | - } ?> |
|
35 | + $section = false; include '_section_content.php'; |
|
36 | + } ?> |
|
37 | 37 | |
38 | 38 | </div> |
39 | 39 |
@@ -19,11 +19,11 @@ |
||
19 | 19 | </div> |
20 | 20 | <div class="full-page"> |
21 | 21 | |
22 | - <?php if ( count($data['rows']) == 0 ) { ?> |
|
22 | + <?php if (count($data['rows']) == 0) { ?> |
|
23 | 23 | <div class="debate-speech"> |
24 | 24 | <div class="full-page__row"> |
25 | 25 | <div class="full-page__unit"> |
26 | - <?php if ( $col_country == 'SCOTLAND' || $col_country == 'NORTHERN IRELAND' ) { ?> |
|
26 | + <?php if ($col_country == 'SCOTLAND' || $col_country == 'NORTHERN IRELAND') { ?> |
|
27 | 27 | We only have information about columns for debates in the House of Commons and the House of Lords. |
28 | 28 | <?php } else { ?> |
29 | 29 | We can't find anything in column <?= $column ?> on <?= $debate_day_human ?>. |
@@ -41,7 +41,7 @@ discard block |
||
41 | 41 | if ($dayOfWeek < 0) { |
42 | 42 | $dayOfWeek = 6; |
43 | 43 | } |
44 | - ?> |
|
44 | + ?> |
|
45 | 45 | <?php } |
46 | 46 | if (!isset($years)) { ?> |
47 | 47 | <div class="calendar__controls"> |
@@ -127,7 +127,7 @@ discard block |
||
127 | 127 | } else { |
128 | 128 | $day_section = $section; |
129 | 129 | if ($section == 'sp') { |
130 | - $day_section = 'spdebates'; |
|
130 | + $day_section = 'spdebates'; |
|
131 | 131 | } |
132 | 132 | $urls[$day_section . 'day']->insert(array('d'=>$date)); |
133 | 133 | print "<a href=\"" . $urls[$day_section . 'day']->generate() . "\">$currentDay</a></td>"; |
@@ -1,12 +1,12 @@ discard block |
||
1 | 1 | <div class="calendar"> |
2 | - <?php if(isset($month)){ |
|
3 | - $daysOfWeek = array('Mon','Tue','Wed','Thu','Fri','Sat','Sun'); |
|
2 | + <?php if (isset($month)) { |
|
3 | + $daysOfWeek = array('Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun'); |
|
4 | 4 | |
5 | 5 | // What is the first day of the month in question? |
6 | - $firstDayOfMonth = mktime(0,0,0,$month,1,$year); |
|
6 | + $firstDayOfMonth = mktime(0, 0, 0, $month, 1, $year); |
|
7 | 7 | |
8 | 8 | // How many days does this month contain? |
9 | - $numberDays = date('t',$firstDayOfMonth); |
|
9 | + $numberDays = date('t', $firstDayOfMonth); |
|
10 | 10 | |
11 | 11 | // Retrieve some information about the first day of the |
12 | 12 | // month in question. |
@@ -18,7 +18,7 @@ discard block |
||
18 | 18 | if (isset($info['onday'])) { |
19 | 19 | // 'onday' is like 'yyyy-mm-dd'. |
20 | 20 | $datebits = explode('-', $info['onday']); |
21 | - if (count($datebits)>2 && $datebits[0] == $year && $datebits[1] == $month) { |
|
21 | + if (count($datebits) > 2 && $datebits[0] == $year && $datebits[1] == $month) { |
|
22 | 22 | $toDay = $datebits[2]; |
23 | 23 | } else { |
24 | 24 | $toDay = ''; |
@@ -45,7 +45,7 @@ discard block |
||
45 | 45 | <?php } |
46 | 46 | if (!isset($years)) { ?> |
47 | 47 | <div class="calendar__controls"> |
48 | - <?php if ( isset($prev) ) { ?> |
|
48 | + <?php if (isset($prev)) { ?> |
|
49 | 49 | <a href="<?= $prev['url'] ?>" class="calendar__controls__previous">←</a> |
50 | 50 | <?php } else { ?> |
51 | 51 | <span class="calendar__controls__previous"> </span> |
@@ -53,7 +53,7 @@ discard block |
||
53 | 53 | <span class="calendar__controls__current"> |
54 | 54 | <?= $monthName ?> <?= $year ?> |
55 | 55 | </span> |
56 | - <?php if ( isset($next) ) { ?> |
|
56 | + <?php if (isset($next)) { ?> |
|
57 | 57 | <a href="<?= $next['url'] ?>" class="calendar__controls__next">→</a> |
58 | 58 | <?php } else { ?> |
59 | 59 | <span class="calendar__controls__next"> </span> |
@@ -106,11 +106,11 @@ discard block |
||
106 | 106 | // sittings - e.g. WH is only Tuesday-Thursday |
107 | 107 | if ($currentDay == $toDay) { |
108 | 108 | print '<td class="on"'; |
109 | - if ($recess[0] && $recess[0]!=1) print ' title="'.$recess[0].'"'; |
|
109 | + if ($recess[0] && $recess[0] != 1) print ' title="'.$recess[0].'"'; |
|
110 | 110 | print '>'; |
111 | 111 | } elseif ($recess[0]) { |
112 | 112 | print '<td class="no"'; |
113 | - if ($recess[0]!=1) print ' title="'.$recess[0].'"'; |
|
113 | + if ($recess[0] != 1) print ' title="'.$recess[0].'"'; |
|
114 | 114 | print '>'; |
115 | 115 | } else { |
116 | 116 | print '<td>'; |
@@ -118,26 +118,26 @@ discard block |
||
118 | 118 | |
119 | 119 | // Is the $currentDay a member of $dates? If so, |
120 | 120 | // the day should be linked. |
121 | - if (in_array($currentDay,$dates)) { |
|
121 | + if (in_array($currentDay, $dates)) { |
|
122 | 122 | |
123 | 123 | $date = sprintf("%04d-%02d-%02d", $year, $month, $currentDay); |
124 | 124 | |
125 | 125 | if ($currentDay == $toDay) { |
126 | - print '<span>' . $currentDay . '</span></td>'; |
|
126 | + print '<span>'.$currentDay.'</span></td>'; |
|
127 | 127 | } else { |
128 | 128 | $day_section = $section; |
129 | 129 | if ($section == 'sp') { |
130 | 130 | $day_section = 'spdebates'; |
131 | 131 | } |
132 | - $urls[$day_section . 'day']->insert(array('d'=>$date)); |
|
133 | - print "<a href=\"" . $urls[$day_section . 'day']->generate() . "\">$currentDay</a></td>"; |
|
132 | + $urls[$day_section.'day']->insert(array('d'=>$date)); |
|
133 | + print "<a href=\"".$urls[$day_section.'day']->generate()."\">$currentDay</a></td>"; |
|
134 | 134 | } |
135 | 135 | |
136 | 136 | // $currentDay is not a member of $dates. |
137 | 137 | |
138 | 138 | } else { |
139 | 139 | |
140 | - print '<span>' . $currentDay . '</span></td>'; |
|
140 | + print '<span>'.$currentDay.'</span></td>'; |
|
141 | 141 | } |
142 | 142 | // Increment counters |
143 | 143 | |
@@ -156,12 +156,12 @@ discard block |
||
156 | 156 | </tr> |
157 | 157 | </tbody> |
158 | 158 | </table> |
159 | - <?php if(!isset($years)){ ?> |
|
159 | + <?php if (!isset($years)) { ?> |
|
160 | 160 | <div class="calendar__footer"> |
161 | 161 | <?php |
162 | 162 | $y = $urls['day']; |
163 | 163 | $y->reset(); |
164 | - $y->insert(array( 'y' => $year )); |
|
164 | + $y->insert(array('y' => $year)); |
|
165 | 165 | $url = $y->generate(); |
166 | 166 | ?> |
167 | 167 | <a href="<?= $url ?>">See all of <?= $year ?></a> |
@@ -106,11 +106,15 @@ |
||
106 | 106 | // sittings - e.g. WH is only Tuesday-Thursday |
107 | 107 | if ($currentDay == $toDay) { |
108 | 108 | print '<td class="on"'; |
109 | - if ($recess[0] && $recess[0]!=1) print ' title="'.$recess[0].'"'; |
|
109 | + if ($recess[0] && $recess[0]!=1) { |
|
110 | + print ' title="'.$recess[0].'"'; |
|
111 | + } |
|
110 | 112 | print '>'; |
111 | 113 | } elseif ($recess[0]) { |
112 | 114 | print '<td class="no"'; |
113 | - if ($recess[0]!=1) print ' title="'.$recess[0].'"'; |
|
115 | + if ($recess[0]!=1) { |
|
116 | + print ' title="'.$recess[0].'"'; |
|
117 | + } |
|
114 | 118 | print '>'; |
115 | 119 | } else { |
116 | 120 | print '<td>'; |
@@ -6,24 +6,24 @@ |
||
6 | 6 | </div> |
7 | 7 | |
8 | 8 | <?php |
9 | - if ( isset($content['data']['data']) ) { |
|
9 | + if (isset($content['data']['data'])) { |
|
10 | 10 | $data = $content['data']['data']; |
11 | 11 | include '_business_list.php'; ?> |
12 | 12 | <div class="business-section__secondary"> |
13 | 13 | <div class="business-section__what-is-this"> |
14 | 14 | <h3>What is this?</h3> |
15 | - <?php include '_' . $section . '_desc.php'; ?> |
|
15 | + <?php include '_'.$section.'_desc.php'; ?> |
|
16 | 16 | </div> |
17 | 17 | <?php |
18 | 18 | $calendar = $content['calendar']['years']; |
19 | 19 | include '_calendar_section.php'; |
20 | - if ( !isset($no_survey) ) { |
|
21 | - include( dirname(__FILE__) . '/../sidebar/looking_for.php' ); |
|
20 | + if (!isset($no_survey)) { |
|
21 | + include(dirname(__FILE__).'/../sidebar/looking_for.php'); |
|
22 | 22 | } |
23 | 23 | ?> |
24 | - <?php if ( isset($content['rssurl']) ) { ?> |
|
24 | + <?php if (isset($content['rssurl'])) { ?> |
|
25 | 25 | <p class="rss-feed"> |
26 | - <a href="<?= WEBPATH . $content['rssurl'] ?>">RSS feed of <?= $title ?></a> |
|
26 | + <a href="<?= WEBPATH.$content['rssurl'] ?>">RSS feed of <?= $title ?></a> |
|
27 | 27 | </p> |
28 | 28 | <?php } ?> |
29 | 29 | </div> |
@@ -24,29 +24,29 @@ discard block |
||
24 | 24 | <ul class="business-list"> |
25 | 25 | <?php |
26 | 26 | $first = 0; |
27 | - foreach ( $content['rows'] as $row ) { |
|
28 | - if ( $row['htype'] == 10 ) { |
|
29 | - if ( !$first ) { |
|
27 | + foreach ($content['rows'] as $row) { |
|
28 | + if ($row['htype'] == 10) { |
|
29 | + if (!$first) { |
|
30 | 30 | print '</li>'; |
31 | 31 | $first = 1; |
32 | 32 | } ?> |
33 | 33 | <li> |
34 | - <a <?= isset($row['sitting']) ? 'id="sitting' . $row['sitting'] . '" ' : '' ?>href="<?= $row['listurl'] ?>" class="business-list__title"> |
|
34 | + <a <?= isset($row['sitting']) ? 'id="sitting'.$row['sitting'].'" ' : '' ?>href="<?= $row['listurl'] ?>" class="business-list__title"> |
|
35 | 35 | <h3> |
36 | 36 | <?= $row['body'] ?> |
37 | 37 | </h3> |
38 | 38 | </a> |
39 | 39 | <p class="business-list__meta"> |
40 | - <?php if ( isset($row['sitting']) ) { ?> |
|
40 | + <?php if (isset($row['sitting'])) { ?> |
|
41 | 41 | <?= make_ranking($row['sitting']) ?> sitting · |
42 | 42 | <?php } ?> |
43 | - <?= format_date($row['hdate'], LONGERDATEFORMAT ) ?> |
|
44 | - <?php if ( $row['contentcount'] > 0 ) { ?> |
|
45 | - · <?= $row['contentcount'] == 1 ? '1 speech' : $row['contentcount'] . ' speeches' ?> |
|
43 | + <?= format_date($row['hdate'], LONGERDATEFORMAT) ?> |
|
44 | + <?php if ($row['contentcount'] > 0) { ?> |
|
45 | + · <?= $row['contentcount'] == 1 ? '1 speech' : $row['contentcount'].' speeches' ?> |
|
46 | 46 | <?php } ?> |
47 | 47 | </p> |
48 | 48 | <p class="business-list__excerpt"> |
49 | - <?= trim_characters($row['excerpt'], 0, 200 ) ?> |
|
49 | + <?= trim_characters($row['excerpt'], 0, 200) ?> |
|
50 | 50 | </p> |
51 | 51 | <?php } else { ?> |
52 | 52 | <ul> |
@@ -58,10 +58,10 @@ discard block |
||
58 | 58 | </a> |
59 | 59 | <?php if (isset($row['contentcount'])) { ?> |
60 | 60 | <p class="business-list__meta"> |
61 | - <?= $row['contentcount'] == 1 ? '1 speech' : $row['contentcount'] . ' speeches' ?> |
|
61 | + <?= $row['contentcount'] == 1 ? '1 speech' : $row['contentcount'].' speeches' ?> |
|
62 | 62 | </p> |
63 | 63 | <?php } ?> |
64 | - <?php if ( isset($row['excerpt']) ) { ?> |
|
64 | + <?php if (isset($row['excerpt'])) { ?> |
|
65 | 65 | <p class="business-list__excerpt"> |
66 | 66 | <?= trim_characters($row['excerpt'], 0, 200) ?> |
67 | 67 | </p> |
@@ -73,7 +73,7 @@ discard block |
||
73 | 73 | </ul> |
74 | 74 | </div> |
75 | 75 | |
76 | - <?php if ( isset($content['info']['committee']) ) { |
|
76 | + <?php if (isset($content['info']['committee'])) { |
|
77 | 77 | $committee = $content['info']['committee']; |
78 | 78 | ?> |
79 | 79 | <div class="business-section__secondary"> |
@@ -85,13 +85,13 @@ discard block |
||
85 | 85 | |
86 | 86 | <p><strong>Chairpersons</strong></p> |
87 | 87 | <ul> |
88 | - <?php foreach( $committee['chairmen'] as $chair ) { ?> |
|
88 | + <?php foreach ($committee['chairmen'] as $chair) { ?> |
|
89 | 89 | <li><?= $chair['name'] ?> (<?= $chair['attending'] ?>)</li> |
90 | 90 | <?php } ?> |
91 | 91 | </ul> |
92 | 92 | <p><strong>Members</strong></p> |
93 | 93 | <ul> |
94 | - <?php foreach( $committee['members'] as $chair ) { ?> |
|
94 | + <?php foreach ($committee['members'] as $chair) { ?> |
|
95 | 95 | <li><?= $chair['name'] ?> (<?= $chair['attending'] ?>)</li> |
96 | 96 | <?php } ?> |
97 | 97 | </ul> |