@@ -9,55 +9,55 @@ |
||
9 | 9 | |
10 | 10 | class NewsPage extends DatedUpdatePage |
11 | 11 | { |
12 | - private static $description = 'Describes an item of news'; |
|
12 | + private static $description = 'Describes an item of news'; |
|
13 | 13 | |
14 | - private static $default_parent = 'NewsHolderPage'; |
|
14 | + private static $default_parent = 'NewsHolderPage'; |
|
15 | 15 | |
16 | - private static $can_be_root = false; |
|
16 | + private static $can_be_root = false; |
|
17 | 17 | |
18 | - private static $icon = 'cwp/cwp:images/icons/sitetree_images/news.png'; |
|
18 | + private static $icon = 'cwp/cwp:images/icons/sitetree_images/news.png'; |
|
19 | 19 | |
20 | - private static $singular_name = 'News Page'; |
|
20 | + private static $singular_name = 'News Page'; |
|
21 | 21 | |
22 | - private static $plural_name = 'News Pages'; |
|
22 | + private static $plural_name = 'News Pages'; |
|
23 | 23 | |
24 | - private static $db = [ |
|
25 | - 'Author' => 'Varchar(255)', |
|
26 | - ]; |
|
24 | + private static $db = [ |
|
25 | + 'Author' => 'Varchar(255)', |
|
26 | + ]; |
|
27 | 27 | |
28 | - private static $has_one = [ |
|
29 | - 'FeaturedImage' => Image::class, |
|
30 | - ]; |
|
28 | + private static $has_one = [ |
|
29 | + 'FeaturedImage' => Image::class, |
|
30 | + ]; |
|
31 | 31 | |
32 | - private static $table_name = 'NewsPage'; |
|
32 | + private static $table_name = 'NewsPage'; |
|
33 | 33 | |
34 | - public function fieldLabels($includerelations = true) |
|
35 | - { |
|
36 | - $labels = parent::fieldLabels($includerelations); |
|
37 | - $labels['Author'] = _t('CWP\\CWP\\PageTypes\\DateUpdatePage.AuthorFieldLabel', 'Author'); |
|
38 | - $labels['FeaturedImageID'] = _t( |
|
39 | - 'CWP\\CWP\\PageTypes\\DateUpdatePage.FeaturedImageFieldLabel', |
|
40 | - 'Featured Image' |
|
41 | - ); |
|
34 | + public function fieldLabels($includerelations = true) |
|
35 | + { |
|
36 | + $labels = parent::fieldLabels($includerelations); |
|
37 | + $labels['Author'] = _t('CWP\\CWP\\PageTypes\\DateUpdatePage.AuthorFieldLabel', 'Author'); |
|
38 | + $labels['FeaturedImageID'] = _t( |
|
39 | + 'CWP\\CWP\\PageTypes\\DateUpdatePage.FeaturedImageFieldLabel', |
|
40 | + 'Featured Image' |
|
41 | + ); |
|
42 | 42 | |
43 | - return $labels; |
|
44 | - } |
|
43 | + return $labels; |
|
44 | + } |
|
45 | 45 | |
46 | - public function getCMSFields() |
|
47 | - { |
|
48 | - $this->beforeUpdateCMSFields(function (FieldList $fields) { |
|
49 | - $fields->addFieldToTab( |
|
50 | - 'Root.Main', |
|
51 | - TextField::create('Author', $this->fieldLabel('Author')), |
|
52 | - 'Abstract' |
|
53 | - ); |
|
46 | + public function getCMSFields() |
|
47 | + { |
|
48 | + $this->beforeUpdateCMSFields(function (FieldList $fields) { |
|
49 | + $fields->addFieldToTab( |
|
50 | + 'Root.Main', |
|
51 | + TextField::create('Author', $this->fieldLabel('Author')), |
|
52 | + 'Abstract' |
|
53 | + ); |
|
54 | 54 | |
55 | - $fields->addFieldToTab( |
|
56 | - 'Root.Main', |
|
57 | - UploadField::create('FeaturedImage', $this->fieldLabel('FeaturedImageID')), |
|
58 | - 'Abstract' |
|
59 | - ); |
|
60 | - }); |
|
61 | - return parent::getCMSFields(); |
|
62 | - } |
|
55 | + $fields->addFieldToTab( |
|
56 | + 'Root.Main', |
|
57 | + UploadField::create('FeaturedImage', $this->fieldLabel('FeaturedImageID')), |
|
58 | + 'Abstract' |
|
59 | + ); |
|
60 | + }); |
|
61 | + return parent::getCMSFields(); |
|
62 | + } |
|
63 | 63 | } |
@@ -45,7 +45,7 @@ |
||
45 | 45 | |
46 | 46 | public function getCMSFields() |
47 | 47 | { |
48 | - $this->beforeUpdateCMSFields(function (FieldList $fields) { |
|
48 | + $this->beforeUpdateCMSFields(function(FieldList $fields) { |
|
49 | 49 | $fields->addFieldToTab( |
50 | 50 | 'Root.Main', |
51 | 51 | TextField::create('Author', $this->fieldLabel('Author')), |
@@ -7,42 +7,42 @@ |
||
7 | 7 | |
8 | 8 | class SitemapPageController extends PageController |
9 | 9 | { |
10 | - private static $allowed_actions = [ |
|
11 | - 'showpage', |
|
12 | - ]; |
|
13 | - |
|
14 | - private static $url_handlers = [ |
|
15 | - 'page/$ID' => 'showpage', |
|
16 | - ]; |
|
17 | - |
|
18 | - public function showpage($request) |
|
19 | - { |
|
20 | - $id = (int) $request->param('ID'); |
|
21 | - if (!$id) { |
|
22 | - return false; |
|
23 | - } |
|
24 | - $page = SiteTree::get()->byId($id); |
|
25 | - |
|
26 | - // does the page exist? |
|
27 | - if (!($page && $page->exists())) { |
|
28 | - return $this->httpError(404); |
|
29 | - } |
|
30 | - |
|
31 | - // can the page be viewed? |
|
32 | - if (!$page->canView()) { |
|
33 | - return $this->httpError(403); |
|
34 | - } |
|
35 | - |
|
36 | - $viewer = $this->customise([ |
|
37 | - 'IsAjax' => $request->isAjax(), |
|
38 | - 'SelectedPage' => $page, |
|
39 | - 'Children' => $page->Children(), |
|
40 | - ]); |
|
41 | - |
|
42 | - if ($request->isAjax()) { |
|
43 | - return $viewer->renderWith('SitemapNodeChildren'); |
|
44 | - } |
|
45 | - |
|
46 | - return $viewer; |
|
47 | - } |
|
10 | + private static $allowed_actions = [ |
|
11 | + 'showpage', |
|
12 | + ]; |
|
13 | + |
|
14 | + private static $url_handlers = [ |
|
15 | + 'page/$ID' => 'showpage', |
|
16 | + ]; |
|
17 | + |
|
18 | + public function showpage($request) |
|
19 | + { |
|
20 | + $id = (int) $request->param('ID'); |
|
21 | + if (!$id) { |
|
22 | + return false; |
|
23 | + } |
|
24 | + $page = SiteTree::get()->byId($id); |
|
25 | + |
|
26 | + // does the page exist? |
|
27 | + if (!($page && $page->exists())) { |
|
28 | + return $this->httpError(404); |
|
29 | + } |
|
30 | + |
|
31 | + // can the page be viewed? |
|
32 | + if (!$page->canView()) { |
|
33 | + return $this->httpError(403); |
|
34 | + } |
|
35 | + |
|
36 | + $viewer = $this->customise([ |
|
37 | + 'IsAjax' => $request->isAjax(), |
|
38 | + 'SelectedPage' => $page, |
|
39 | + 'Children' => $page->Children(), |
|
40 | + ]); |
|
41 | + |
|
42 | + if ($request->isAjax()) { |
|
43 | + return $viewer->renderWith('SitemapNodeChildren'); |
|
44 | + } |
|
45 | + |
|
46 | + return $viewer; |
|
47 | + } |
|
48 | 48 | } |
@@ -19,53 +19,53 @@ |
||
19 | 19 | */ |
20 | 20 | class EventHolderController extends DatedUpdateHolderController |
21 | 21 | { |
22 | - public function getUpdateName() |
|
23 | - { |
|
24 | - $params = $this->parseParams(); |
|
25 | - if ($params['upcomingOnly']) { |
|
26 | - return _t(__CLASS__ . '.Upcoming', 'Upcoming events'); |
|
27 | - } |
|
22 | + public function getUpdateName() |
|
23 | + { |
|
24 | + $params = $this->parseParams(); |
|
25 | + if ($params['upcomingOnly']) { |
|
26 | + return _t(__CLASS__ . '.Upcoming', 'Upcoming events'); |
|
27 | + } |
|
28 | 28 | |
29 | - return _t(__CLASS__ . '.Events', 'Events'); |
|
30 | - } |
|
29 | + return _t(__CLASS__ . '.Events', 'Events'); |
|
30 | + } |
|
31 | 31 | |
32 | - /** |
|
33 | - * Parse URL parameters. |
|
34 | - * |
|
35 | - * @param boolean $produceErrorMessages Set to false to omit session messages. |
|
36 | - */ |
|
37 | - public function parseParams($produceErrorMessages = true) |
|
38 | - { |
|
39 | - $params = parent::parseParams($produceErrorMessages); |
|
32 | + /** |
|
33 | + * Parse URL parameters. |
|
34 | + * |
|
35 | + * @param boolean $produceErrorMessages Set to false to omit session messages. |
|
36 | + */ |
|
37 | + public function parseParams($produceErrorMessages = true) |
|
38 | + { |
|
39 | + $params = parent::parseParams($produceErrorMessages); |
|
40 | 40 | |
41 | - // We need to set whether or not we're supposed to be displaying only upcoming events or all events. |
|
42 | - $params['upcomingOnly'] = !($params['from'] || $params['to'] || $params['year'] || $params['month']); |
|
41 | + // We need to set whether or not we're supposed to be displaying only upcoming events or all events. |
|
42 | + $params['upcomingOnly'] = !($params['from'] || $params['to'] || $params['year'] || $params['month']); |
|
43 | 43 | |
44 | - return $params; |
|
45 | - } |
|
44 | + return $params; |
|
45 | + } |
|
46 | 46 | |
47 | - /** |
|
48 | - * Get the events based on the current query. |
|
49 | - */ |
|
50 | - public function FilteredUpdates($pageSize = 20) |
|
51 | - { |
|
52 | - $params = $this->parseParams(); |
|
47 | + /** |
|
48 | + * Get the events based on the current query. |
|
49 | + */ |
|
50 | + public function FilteredUpdates($pageSize = 20) |
|
51 | + { |
|
52 | + $params = $this->parseParams(); |
|
53 | 53 | |
54 | - $items = $this->Updates( |
|
55 | - $params['tag'], |
|
56 | - $params['from'], |
|
57 | - $params['to'], |
|
58 | - $params['year'], |
|
59 | - $params['month'] |
|
60 | - ); |
|
54 | + $items = $this->Updates( |
|
55 | + $params['tag'], |
|
56 | + $params['from'], |
|
57 | + $params['to'], |
|
58 | + $params['year'], |
|
59 | + $params['month'] |
|
60 | + ); |
|
61 | 61 | |
62 | - if ($params['upcomingOnly']) { |
|
63 | - $items = $items->filter(['Date:LessThan:Not' => DBDatetime::now()->Format('y-MM-dd')]); |
|
64 | - } |
|
62 | + if ($params['upcomingOnly']) { |
|
63 | + $items = $items->filter(['Date:LessThan:Not' => DBDatetime::now()->Format('y-MM-dd')]); |
|
64 | + } |
|
65 | 65 | |
66 | - // Apply pagination |
|
67 | - $list = PaginatedList::create($items, $this->getRequest()); |
|
68 | - $list->setPageLength($pageSize); |
|
69 | - return $list; |
|
70 | - } |
|
66 | + // Apply pagination |
|
67 | + $list = PaginatedList::create($items, $this->getRequest()); |
|
68 | + $list->setPageLength($pageSize); |
|
69 | + return $list; |
|
70 | + } |
|
71 | 71 | } |
@@ -159,7 +159,7 @@ discard block |
||
159 | 159 | } |
160 | 160 | |
161 | 161 | if (isset($tag)) { |
162 | - $tag = (int)$tag; |
|
162 | + $tag = (int) $tag; |
|
163 | 163 | } |
164 | 164 | if (isset($from)) { |
165 | 165 | $from = urldecode($from); |
@@ -174,10 +174,10 @@ discard block |
||
174 | 174 | $to = $parser->Format('y-MM-dd'); |
175 | 175 | } |
176 | 176 | if (isset($year)) { |
177 | - $year = (int)$year; |
|
177 | + $year = (int) $year; |
|
178 | 178 | } |
179 | 179 | if (isset($month)) { |
180 | - $month = (int)$month; |
|
180 | + $month = (int) $month; |
|
181 | 181 | } |
182 | 182 | |
183 | 183 | // If only "To" has been provided filter by single date. Normalise by swapping with "From". |
@@ -259,7 +259,7 @@ discard block |
||
259 | 259 | $tagID = $this->request->getVar('tag'); |
260 | 260 | |
261 | 261 | if (isset($tagID)) { |
262 | - return TaxonomyTerm::get_by_id(TaxonomyTerm::class, (int)$tagID); |
|
262 | + return TaxonomyTerm::get_by_id(TaxonomyTerm::class, (int) $tagID); |
|
263 | 263 | } |
264 | 264 | } |
265 | 265 |
@@ -34,361 +34,361 @@ |
||
34 | 34 | */ |
35 | 35 | class DatedUpdateHolderController extends PageController |
36 | 36 | { |
37 | - private static $allowed_actions = [ |
|
38 | - 'rss', |
|
39 | - 'atom', |
|
40 | - 'DateRangeForm', |
|
41 | - ]; |
|
42 | - |
|
43 | - private static $casting = [ |
|
44 | - 'MetaTitle' => 'Text', |
|
45 | - 'FilterDescription' => 'Text', |
|
46 | - ]; |
|
47 | - |
|
48 | - /** |
|
49 | - * The session key for storing temporary form messages |
|
50 | - * |
|
51 | - * @var string |
|
52 | - */ |
|
53 | - const TEMP_FORM_MESSAGE = __CLASS__ . '.TempFormMessage'; |
|
54 | - |
|
55 | - /** |
|
56 | - * Get the meta title for the current action |
|
57 | - * |
|
58 | - * @return string |
|
59 | - */ |
|
60 | - public function getMetaTitle() |
|
61 | - { |
|
62 | - $title = $this->data()->getTitle(); |
|
63 | - $filter = $this->FilterDescription(); |
|
64 | - if ($filter) { |
|
65 | - $title = "{$title} - {$filter}"; |
|
66 | - } |
|
67 | - |
|
68 | - $this->extend('updateMetaTitle', $title); |
|
69 | - return $title; |
|
70 | - } |
|
71 | - |
|
72 | - /** |
|
73 | - * Returns a description of the current filter |
|
74 | - * |
|
75 | - * @return string |
|
76 | - */ |
|
77 | - public function FilterDescription() |
|
78 | - { |
|
79 | - $params = $this->parseParams(); |
|
80 | - |
|
81 | - $filters = array(); |
|
82 | - if ($params['tag']) { |
|
83 | - $term = TaxonomyTerm::get_by_id(TaxonomyTerm::class, $params['tag']); |
|
84 | - if ($term) { |
|
85 | - $filters[] = _t( |
|
86 | - 'CWP\\CWP\\PageTypes\\DatedUpdateHolder.FILTER_WITHIN', |
|
87 | - 'within' |
|
88 | - ) . ' "' . $term->Name . '"'; |
|
89 | - } |
|
90 | - } |
|
91 | - |
|
92 | - if ($params['from'] || $params['to']) { |
|
93 | - if ($params['from']) { |
|
94 | - $from = strtotime($params['from']); |
|
95 | - if ($params['to']) { |
|
96 | - $to = strtotime($params['to']); |
|
97 | - $filters[] = _t('CWP\\CWP\\PageTypes\\DatedUpdateHolder.FILTER_BETWEEN', 'between') . ' ' |
|
98 | - . date('j/m/Y', $from) . ' and ' . date('j/m/Y', $to); |
|
99 | - } else { |
|
100 | - $filters[] = _t('CWP\\CWP\\PageTypes\\DatedUpdateHolder.FILTER_ON', 'on') |
|
101 | - . ' ' . date('j/m/Y', $from); |
|
102 | - } |
|
103 | - } else { |
|
104 | - $to = strtotime($params['to']); |
|
105 | - $filters[] = _t('CWP\\CWP\\PageTypes\\DatedUpdateHolder.FILTER_ON', 'on') |
|
106 | - . ' ' . date('j/m/Y', $to); |
|
107 | - } |
|
108 | - } |
|
109 | - |
|
110 | - if ($params['year'] && $params['month']) { |
|
111 | - $timestamp = mktime(1, 1, 1, $params['month'], 1, $params['year']); |
|
112 | - $filters[] = _t('CWP\\CWP\\PageTypes\\DatedUpdateHolder.FILTER_IN', 'in') |
|
113 | - . ' ' . date('F', $timestamp) . ' ' . $params['year']; |
|
114 | - } |
|
115 | - |
|
116 | - if ($filters) { |
|
117 | - return $this->getUpdateName() . ' ' . implode(' ', $filters); |
|
118 | - } |
|
119 | - } |
|
120 | - |
|
121 | - public function getUpdateName() |
|
122 | - { |
|
123 | - return Config::inst()->get($this->data()->ClassName, 'update_name'); |
|
124 | - } |
|
125 | - |
|
126 | - protected function init() |
|
127 | - { |
|
128 | - parent::init(); |
|
129 | - RSSFeed::linkToFeed($this->Link() . 'rss', $this->getSubscriptionTitle()); |
|
130 | - } |
|
131 | - |
|
132 | - /** |
|
133 | - * Parse URL parameters. |
|
134 | - * |
|
135 | - * @param bool $produceErrorMessages Set to false to omit session messages. |
|
136 | - */ |
|
137 | - public function parseParams($produceErrorMessages = true) |
|
138 | - { |
|
139 | - $tag = $this->request->getVar('tag'); |
|
140 | - $from = $this->request->getVar('from'); |
|
141 | - $to = $this->request->getVar('to'); |
|
142 | - $year = $this->request->getVar('year'); |
|
143 | - $month = $this->request->getVar('month'); |
|
144 | - |
|
145 | - if ($tag == '') { |
|
146 | - $tag = null; |
|
147 | - } |
|
148 | - if ($from == '') { |
|
149 | - $from = null; |
|
150 | - } |
|
151 | - if ($to == '') { |
|
152 | - $to = null; |
|
153 | - } |
|
154 | - if ($year == '') { |
|
155 | - $year = null; |
|
156 | - } |
|
157 | - if ($month == '') { |
|
158 | - $month = null; |
|
159 | - } |
|
160 | - |
|
161 | - if (isset($tag)) { |
|
162 | - $tag = (int)$tag; |
|
163 | - } |
|
164 | - if (isset($from)) { |
|
165 | - $from = urldecode($from); |
|
166 | - $parser = DBDatetime::create(); |
|
167 | - $parser->setValue($from); |
|
168 | - $from = $parser->Format('y-MM-dd'); |
|
169 | - } |
|
170 | - if (isset($to)) { |
|
171 | - $to = urldecode($to); |
|
172 | - $parser = DBDatetime::create(); |
|
173 | - $parser->setValue($to); |
|
174 | - $to = $parser->Format('y-MM-dd'); |
|
175 | - } |
|
176 | - if (isset($year)) { |
|
177 | - $year = (int)$year; |
|
178 | - } |
|
179 | - if (isset($month)) { |
|
180 | - $month = (int)$month; |
|
181 | - } |
|
182 | - |
|
183 | - // If only "To" has been provided filter by single date. Normalise by swapping with "From". |
|
184 | - if (isset($to) && !isset($from)) { |
|
185 | - list($to, $from) = [$from, $to]; |
|
186 | - } |
|
187 | - |
|
188 | - // Flip the dates if the order is wrong. |
|
189 | - if (isset($to) && isset($from) && strtotime($from) > strtotime($to)) { |
|
190 | - list($to, $from) = [$from, $to]; |
|
191 | - |
|
192 | - if ($produceErrorMessages) { |
|
193 | - $this->getRequest()->getSession()->set(self::TEMP_FORM_MESSAGE, _t( |
|
194 | - __CLASS__ . '.FilterAppliedMessage', |
|
195 | - 'Filter has been applied with the dates reversed.' |
|
196 | - )); |
|
197 | - } |
|
198 | - } |
|
199 | - |
|
200 | - // Notify the user that filtering by single date is taking place. |
|
201 | - if (isset($from) && !isset($to)) { |
|
202 | - if ($produceErrorMessages) { |
|
203 | - $this->getRequest()->getSession()->set(self::TEMP_FORM_MESSAGE, _t( |
|
204 | - __CLASS__ . '.DateRangeFilterMessage', |
|
205 | - 'Filtered by a single date.' |
|
206 | - )); |
|
207 | - } |
|
208 | - } |
|
209 | - |
|
210 | - return [ |
|
211 | - 'tag' => $tag, |
|
212 | - 'from' => $from, |
|
213 | - 'to' => $to, |
|
214 | - 'year' => $year, |
|
215 | - 'month' => $month, |
|
216 | - ]; |
|
217 | - } |
|
218 | - |
|
219 | - /** |
|
220 | - * Build the link - keep the date range, reset the rest. |
|
221 | - */ |
|
222 | - public function AllTagsLink() |
|
223 | - { |
|
224 | - $link = HTTP::setGetVar('tag', null, null, '&'); |
|
225 | - $link = HTTP::setGetVar('month', null, $link, '&'); |
|
226 | - $link = HTTP::setGetVar('year', null, $link, '&'); |
|
227 | - $link = HTTP::setGetVar('start', null, $link, '&'); |
|
228 | - |
|
229 | - return $link; |
|
230 | - } |
|
231 | - |
|
232 | - /** |
|
233 | - * List tags and attach links. |
|
234 | - */ |
|
235 | - public function UpdateTagsWithLinks() |
|
236 | - { |
|
237 | - $tags = $this->UpdateTags(); |
|
238 | - |
|
239 | - $processed = ArrayList::create(); |
|
240 | - |
|
241 | - foreach ($tags as $tag) { |
|
242 | - // Build the link - keep the tag, and date range, but reset month, year and pagination. |
|
243 | - $link = HTTP::setGetVar('tag', $tag->ID, null, '&'); |
|
244 | - $link = HTTP::setGetVar('month', null, $link, '&'); |
|
245 | - $link = HTTP::setGetVar('year', null, $link, '&'); |
|
246 | - $link = HTTP::setGetVar('start', null, $link, '&'); |
|
247 | - |
|
248 | - $tag->Link = $link; |
|
249 | - $processed->push($tag); |
|
250 | - } |
|
251 | - |
|
252 | - return $processed; |
|
253 | - } |
|
254 | - |
|
255 | - /** |
|
256 | - * Get the TaxonomyTerm related to the current tag GET parameter. |
|
257 | - */ |
|
258 | - public function CurrentTag() |
|
259 | - { |
|
260 | - $tagID = $this->request->getVar('tag'); |
|
261 | - |
|
262 | - if (isset($tagID)) { |
|
263 | - return TaxonomyTerm::get_by_id(TaxonomyTerm::class, (int)$tagID); |
|
264 | - } |
|
265 | - } |
|
266 | - |
|
267 | - /** |
|
268 | - * Extract the available months based on the current query. |
|
269 | - * Only tag is respected. Pagination and months are ignored. |
|
270 | - */ |
|
271 | - public function AvailableMonths() |
|
272 | - { |
|
273 | - $params = $this->parseParams(); |
|
274 | - |
|
275 | - return DatedUpdateHolder::ExtractMonths( |
|
276 | - $this->Updates($params['tag'], $params['from'], $params['to']), |
|
277 | - Director::makeRelative($_SERVER['REQUEST_URI']), |
|
278 | - $params['year'], |
|
279 | - $params['month'] |
|
280 | - ); |
|
281 | - } |
|
282 | - |
|
283 | - /** |
|
284 | - * Get the updates based on the current query. |
|
285 | - */ |
|
286 | - public function FilteredUpdates($pageSize = 20) |
|
287 | - { |
|
288 | - $params = $this->parseParams(); |
|
289 | - |
|
290 | - $items = $this->Updates( |
|
291 | - $params['tag'], |
|
292 | - $params['from'], |
|
293 | - $params['to'], |
|
294 | - $params['year'], |
|
295 | - $params['month'] |
|
296 | - ); |
|
297 | - |
|
298 | - // Apply pagination |
|
299 | - $list = PaginatedList::create($items, $this->getRequest()); |
|
300 | - $list->setPageLength($pageSize); |
|
301 | - return $list; |
|
302 | - } |
|
303 | - |
|
304 | - /** |
|
305 | - * @return Form |
|
306 | - */ |
|
307 | - public function DateRangeForm() |
|
308 | - { |
|
309 | - $dateFromTitle = DBField::create_field('HTMLText', sprintf( |
|
310 | - '%s <span class="field-note">%s</span>', |
|
311 | - _t('CWP\\CWP\\PageTypes\\DatedUpdateHolder.FROM_DATE', 'From date'), |
|
312 | - _t('CWP\\CWP\\PageTypes\\DatedUpdateHolder.DATE_EXAMPLE', '(example: 2017/12/30)') |
|
313 | - )); |
|
314 | - $dateToTitle = DBField::create_field('HTMLText', sprintf( |
|
315 | - '%s <span class="field-note">%s</span>', |
|
316 | - _t('CWP\\CWP\\PageTypes\\DatedUpdateHolder.TO_DATE', 'To date'), |
|
317 | - _t('CWP\\CWP\\PageTypes\\DatedUpdateHolder.DATE_EXAMPLE', '(example: 2017/12/30)') |
|
318 | - )); |
|
319 | - |
|
320 | - $fields = FieldList::create( |
|
321 | - DateField::create('from', $dateFromTitle), |
|
322 | - DateField::create('to', $dateToTitle), |
|
323 | - HiddenField::create('tag') |
|
324 | - ); |
|
325 | - |
|
326 | - $actions = FieldList::create( |
|
327 | - FormAction::create("doDateFilter") |
|
328 | - ->setTitle(_t(__CLASS__ . '.Filter', 'Filter')) |
|
329 | - ->addExtraClass('btn btn-primary primary'), |
|
330 | - FormAction::create("doDateReset") |
|
331 | - ->setTitle(_t(__CLASS__ . '.Clear', 'Clear')) |
|
332 | - ->addExtraClass('btn') |
|
333 | - ); |
|
334 | - |
|
335 | - $form = Form::create($this, 'DateRangeForm', $fields, $actions); |
|
336 | - $form->loadDataFrom($this->request->getVars()); |
|
337 | - $form->setFormMethod('get'); |
|
338 | - |
|
339 | - // Add any locally stored form messages before returning |
|
340 | - if ($formMessage = $this->getRequest()->getSession()->get(self::TEMP_FORM_MESSAGE)) { |
|
341 | - $form->setMessage($formMessage, ValidationResult::TYPE_WARNING); |
|
342 | - $this->getRequest()->getSession()->clear(self::TEMP_FORM_MESSAGE); |
|
343 | - } |
|
344 | - |
|
345 | - return $form; |
|
346 | - } |
|
347 | - |
|
348 | - public function doDateFilter() |
|
349 | - { |
|
350 | - $params = $this->parseParams(); |
|
351 | - |
|
352 | - // Build the link - keep the tag, but reset month, year and pagination. |
|
353 | - $link = HTTP::setGetVar('from', $params['from'], $this->AbsoluteLink(), '&'); |
|
354 | - $link = HTTP::setGetVar('to', $params['to'], $link, '&'); |
|
355 | - if (isset($params['tag'])) { |
|
356 | - $link = HTTP::setGetVar('tag', $params['tag'], $link, '&'); |
|
357 | - } |
|
358 | - |
|
359 | - $this->redirect($link); |
|
360 | - } |
|
361 | - |
|
362 | - public function doDateReset() |
|
363 | - { |
|
364 | - $params = $this->parseParams(false); |
|
365 | - |
|
366 | - // Reset the link - only include the tag. |
|
367 | - $link = $this->AbsoluteLink(); |
|
368 | - if (isset($params['tag'])) { |
|
369 | - $link = HTTP::setGetVar('tag', $params['tag'], $link, '&'); |
|
370 | - } |
|
371 | - |
|
372 | - $this->redirect($link); |
|
373 | - } |
|
374 | - |
|
375 | - public function rss() |
|
376 | - { |
|
377 | - $rss = RSSFeed::create( |
|
378 | - $this->Updates()->sort('Created DESC')->limit(20), |
|
379 | - $this->Link('rss'), |
|
380 | - $this->getSubscriptionTitle() |
|
381 | - ); |
|
382 | - return $rss->outputToBrowser(); |
|
383 | - } |
|
384 | - |
|
385 | - public function atom() |
|
386 | - { |
|
387 | - $atom = CwpAtomFeed::create( |
|
388 | - $this->Updates()->sort('Created DESC')->limit(20), |
|
389 | - $this->Link('atom'), |
|
390 | - $this->getSubscriptionTitle() |
|
391 | - ); |
|
392 | - return $atom->outputToBrowser(); |
|
393 | - } |
|
37 | + private static $allowed_actions = [ |
|
38 | + 'rss', |
|
39 | + 'atom', |
|
40 | + 'DateRangeForm', |
|
41 | + ]; |
|
42 | + |
|
43 | + private static $casting = [ |
|
44 | + 'MetaTitle' => 'Text', |
|
45 | + 'FilterDescription' => 'Text', |
|
46 | + ]; |
|
47 | + |
|
48 | + /** |
|
49 | + * The session key for storing temporary form messages |
|
50 | + * |
|
51 | + * @var string |
|
52 | + */ |
|
53 | + const TEMP_FORM_MESSAGE = __CLASS__ . '.TempFormMessage'; |
|
54 | + |
|
55 | + /** |
|
56 | + * Get the meta title for the current action |
|
57 | + * |
|
58 | + * @return string |
|
59 | + */ |
|
60 | + public function getMetaTitle() |
|
61 | + { |
|
62 | + $title = $this->data()->getTitle(); |
|
63 | + $filter = $this->FilterDescription(); |
|
64 | + if ($filter) { |
|
65 | + $title = "{$title} - {$filter}"; |
|
66 | + } |
|
67 | + |
|
68 | + $this->extend('updateMetaTitle', $title); |
|
69 | + return $title; |
|
70 | + } |
|
71 | + |
|
72 | + /** |
|
73 | + * Returns a description of the current filter |
|
74 | + * |
|
75 | + * @return string |
|
76 | + */ |
|
77 | + public function FilterDescription() |
|
78 | + { |
|
79 | + $params = $this->parseParams(); |
|
80 | + |
|
81 | + $filters = array(); |
|
82 | + if ($params['tag']) { |
|
83 | + $term = TaxonomyTerm::get_by_id(TaxonomyTerm::class, $params['tag']); |
|
84 | + if ($term) { |
|
85 | + $filters[] = _t( |
|
86 | + 'CWP\\CWP\\PageTypes\\DatedUpdateHolder.FILTER_WITHIN', |
|
87 | + 'within' |
|
88 | + ) . ' "' . $term->Name . '"'; |
|
89 | + } |
|
90 | + } |
|
91 | + |
|
92 | + if ($params['from'] || $params['to']) { |
|
93 | + if ($params['from']) { |
|
94 | + $from = strtotime($params['from']); |
|
95 | + if ($params['to']) { |
|
96 | + $to = strtotime($params['to']); |
|
97 | + $filters[] = _t('CWP\\CWP\\PageTypes\\DatedUpdateHolder.FILTER_BETWEEN', 'between') . ' ' |
|
98 | + . date('j/m/Y', $from) . ' and ' . date('j/m/Y', $to); |
|
99 | + } else { |
|
100 | + $filters[] = _t('CWP\\CWP\\PageTypes\\DatedUpdateHolder.FILTER_ON', 'on') |
|
101 | + . ' ' . date('j/m/Y', $from); |
|
102 | + } |
|
103 | + } else { |
|
104 | + $to = strtotime($params['to']); |
|
105 | + $filters[] = _t('CWP\\CWP\\PageTypes\\DatedUpdateHolder.FILTER_ON', 'on') |
|
106 | + . ' ' . date('j/m/Y', $to); |
|
107 | + } |
|
108 | + } |
|
109 | + |
|
110 | + if ($params['year'] && $params['month']) { |
|
111 | + $timestamp = mktime(1, 1, 1, $params['month'], 1, $params['year']); |
|
112 | + $filters[] = _t('CWP\\CWP\\PageTypes\\DatedUpdateHolder.FILTER_IN', 'in') |
|
113 | + . ' ' . date('F', $timestamp) . ' ' . $params['year']; |
|
114 | + } |
|
115 | + |
|
116 | + if ($filters) { |
|
117 | + return $this->getUpdateName() . ' ' . implode(' ', $filters); |
|
118 | + } |
|
119 | + } |
|
120 | + |
|
121 | + public function getUpdateName() |
|
122 | + { |
|
123 | + return Config::inst()->get($this->data()->ClassName, 'update_name'); |
|
124 | + } |
|
125 | + |
|
126 | + protected function init() |
|
127 | + { |
|
128 | + parent::init(); |
|
129 | + RSSFeed::linkToFeed($this->Link() . 'rss', $this->getSubscriptionTitle()); |
|
130 | + } |
|
131 | + |
|
132 | + /** |
|
133 | + * Parse URL parameters. |
|
134 | + * |
|
135 | + * @param bool $produceErrorMessages Set to false to omit session messages. |
|
136 | + */ |
|
137 | + public function parseParams($produceErrorMessages = true) |
|
138 | + { |
|
139 | + $tag = $this->request->getVar('tag'); |
|
140 | + $from = $this->request->getVar('from'); |
|
141 | + $to = $this->request->getVar('to'); |
|
142 | + $year = $this->request->getVar('year'); |
|
143 | + $month = $this->request->getVar('month'); |
|
144 | + |
|
145 | + if ($tag == '') { |
|
146 | + $tag = null; |
|
147 | + } |
|
148 | + if ($from == '') { |
|
149 | + $from = null; |
|
150 | + } |
|
151 | + if ($to == '') { |
|
152 | + $to = null; |
|
153 | + } |
|
154 | + if ($year == '') { |
|
155 | + $year = null; |
|
156 | + } |
|
157 | + if ($month == '') { |
|
158 | + $month = null; |
|
159 | + } |
|
160 | + |
|
161 | + if (isset($tag)) { |
|
162 | + $tag = (int)$tag; |
|
163 | + } |
|
164 | + if (isset($from)) { |
|
165 | + $from = urldecode($from); |
|
166 | + $parser = DBDatetime::create(); |
|
167 | + $parser->setValue($from); |
|
168 | + $from = $parser->Format('y-MM-dd'); |
|
169 | + } |
|
170 | + if (isset($to)) { |
|
171 | + $to = urldecode($to); |
|
172 | + $parser = DBDatetime::create(); |
|
173 | + $parser->setValue($to); |
|
174 | + $to = $parser->Format('y-MM-dd'); |
|
175 | + } |
|
176 | + if (isset($year)) { |
|
177 | + $year = (int)$year; |
|
178 | + } |
|
179 | + if (isset($month)) { |
|
180 | + $month = (int)$month; |
|
181 | + } |
|
182 | + |
|
183 | + // If only "To" has been provided filter by single date. Normalise by swapping with "From". |
|
184 | + if (isset($to) && !isset($from)) { |
|
185 | + list($to, $from) = [$from, $to]; |
|
186 | + } |
|
187 | + |
|
188 | + // Flip the dates if the order is wrong. |
|
189 | + if (isset($to) && isset($from) && strtotime($from) > strtotime($to)) { |
|
190 | + list($to, $from) = [$from, $to]; |
|
191 | + |
|
192 | + if ($produceErrorMessages) { |
|
193 | + $this->getRequest()->getSession()->set(self::TEMP_FORM_MESSAGE, _t( |
|
194 | + __CLASS__ . '.FilterAppliedMessage', |
|
195 | + 'Filter has been applied with the dates reversed.' |
|
196 | + )); |
|
197 | + } |
|
198 | + } |
|
199 | + |
|
200 | + // Notify the user that filtering by single date is taking place. |
|
201 | + if (isset($from) && !isset($to)) { |
|
202 | + if ($produceErrorMessages) { |
|
203 | + $this->getRequest()->getSession()->set(self::TEMP_FORM_MESSAGE, _t( |
|
204 | + __CLASS__ . '.DateRangeFilterMessage', |
|
205 | + 'Filtered by a single date.' |
|
206 | + )); |
|
207 | + } |
|
208 | + } |
|
209 | + |
|
210 | + return [ |
|
211 | + 'tag' => $tag, |
|
212 | + 'from' => $from, |
|
213 | + 'to' => $to, |
|
214 | + 'year' => $year, |
|
215 | + 'month' => $month, |
|
216 | + ]; |
|
217 | + } |
|
218 | + |
|
219 | + /** |
|
220 | + * Build the link - keep the date range, reset the rest. |
|
221 | + */ |
|
222 | + public function AllTagsLink() |
|
223 | + { |
|
224 | + $link = HTTP::setGetVar('tag', null, null, '&'); |
|
225 | + $link = HTTP::setGetVar('month', null, $link, '&'); |
|
226 | + $link = HTTP::setGetVar('year', null, $link, '&'); |
|
227 | + $link = HTTP::setGetVar('start', null, $link, '&'); |
|
228 | + |
|
229 | + return $link; |
|
230 | + } |
|
231 | + |
|
232 | + /** |
|
233 | + * List tags and attach links. |
|
234 | + */ |
|
235 | + public function UpdateTagsWithLinks() |
|
236 | + { |
|
237 | + $tags = $this->UpdateTags(); |
|
238 | + |
|
239 | + $processed = ArrayList::create(); |
|
240 | + |
|
241 | + foreach ($tags as $tag) { |
|
242 | + // Build the link - keep the tag, and date range, but reset month, year and pagination. |
|
243 | + $link = HTTP::setGetVar('tag', $tag->ID, null, '&'); |
|
244 | + $link = HTTP::setGetVar('month', null, $link, '&'); |
|
245 | + $link = HTTP::setGetVar('year', null, $link, '&'); |
|
246 | + $link = HTTP::setGetVar('start', null, $link, '&'); |
|
247 | + |
|
248 | + $tag->Link = $link; |
|
249 | + $processed->push($tag); |
|
250 | + } |
|
251 | + |
|
252 | + return $processed; |
|
253 | + } |
|
254 | + |
|
255 | + /** |
|
256 | + * Get the TaxonomyTerm related to the current tag GET parameter. |
|
257 | + */ |
|
258 | + public function CurrentTag() |
|
259 | + { |
|
260 | + $tagID = $this->request->getVar('tag'); |
|
261 | + |
|
262 | + if (isset($tagID)) { |
|
263 | + return TaxonomyTerm::get_by_id(TaxonomyTerm::class, (int)$tagID); |
|
264 | + } |
|
265 | + } |
|
266 | + |
|
267 | + /** |
|
268 | + * Extract the available months based on the current query. |
|
269 | + * Only tag is respected. Pagination and months are ignored. |
|
270 | + */ |
|
271 | + public function AvailableMonths() |
|
272 | + { |
|
273 | + $params = $this->parseParams(); |
|
274 | + |
|
275 | + return DatedUpdateHolder::ExtractMonths( |
|
276 | + $this->Updates($params['tag'], $params['from'], $params['to']), |
|
277 | + Director::makeRelative($_SERVER['REQUEST_URI']), |
|
278 | + $params['year'], |
|
279 | + $params['month'] |
|
280 | + ); |
|
281 | + } |
|
282 | + |
|
283 | + /** |
|
284 | + * Get the updates based on the current query. |
|
285 | + */ |
|
286 | + public function FilteredUpdates($pageSize = 20) |
|
287 | + { |
|
288 | + $params = $this->parseParams(); |
|
289 | + |
|
290 | + $items = $this->Updates( |
|
291 | + $params['tag'], |
|
292 | + $params['from'], |
|
293 | + $params['to'], |
|
294 | + $params['year'], |
|
295 | + $params['month'] |
|
296 | + ); |
|
297 | + |
|
298 | + // Apply pagination |
|
299 | + $list = PaginatedList::create($items, $this->getRequest()); |
|
300 | + $list->setPageLength($pageSize); |
|
301 | + return $list; |
|
302 | + } |
|
303 | + |
|
304 | + /** |
|
305 | + * @return Form |
|
306 | + */ |
|
307 | + public function DateRangeForm() |
|
308 | + { |
|
309 | + $dateFromTitle = DBField::create_field('HTMLText', sprintf( |
|
310 | + '%s <span class="field-note">%s</span>', |
|
311 | + _t('CWP\\CWP\\PageTypes\\DatedUpdateHolder.FROM_DATE', 'From date'), |
|
312 | + _t('CWP\\CWP\\PageTypes\\DatedUpdateHolder.DATE_EXAMPLE', '(example: 2017/12/30)') |
|
313 | + )); |
|
314 | + $dateToTitle = DBField::create_field('HTMLText', sprintf( |
|
315 | + '%s <span class="field-note">%s</span>', |
|
316 | + _t('CWP\\CWP\\PageTypes\\DatedUpdateHolder.TO_DATE', 'To date'), |
|
317 | + _t('CWP\\CWP\\PageTypes\\DatedUpdateHolder.DATE_EXAMPLE', '(example: 2017/12/30)') |
|
318 | + )); |
|
319 | + |
|
320 | + $fields = FieldList::create( |
|
321 | + DateField::create('from', $dateFromTitle), |
|
322 | + DateField::create('to', $dateToTitle), |
|
323 | + HiddenField::create('tag') |
|
324 | + ); |
|
325 | + |
|
326 | + $actions = FieldList::create( |
|
327 | + FormAction::create("doDateFilter") |
|
328 | + ->setTitle(_t(__CLASS__ . '.Filter', 'Filter')) |
|
329 | + ->addExtraClass('btn btn-primary primary'), |
|
330 | + FormAction::create("doDateReset") |
|
331 | + ->setTitle(_t(__CLASS__ . '.Clear', 'Clear')) |
|
332 | + ->addExtraClass('btn') |
|
333 | + ); |
|
334 | + |
|
335 | + $form = Form::create($this, 'DateRangeForm', $fields, $actions); |
|
336 | + $form->loadDataFrom($this->request->getVars()); |
|
337 | + $form->setFormMethod('get'); |
|
338 | + |
|
339 | + // Add any locally stored form messages before returning |
|
340 | + if ($formMessage = $this->getRequest()->getSession()->get(self::TEMP_FORM_MESSAGE)) { |
|
341 | + $form->setMessage($formMessage, ValidationResult::TYPE_WARNING); |
|
342 | + $this->getRequest()->getSession()->clear(self::TEMP_FORM_MESSAGE); |
|
343 | + } |
|
344 | + |
|
345 | + return $form; |
|
346 | + } |
|
347 | + |
|
348 | + public function doDateFilter() |
|
349 | + { |
|
350 | + $params = $this->parseParams(); |
|
351 | + |
|
352 | + // Build the link - keep the tag, but reset month, year and pagination. |
|
353 | + $link = HTTP::setGetVar('from', $params['from'], $this->AbsoluteLink(), '&'); |
|
354 | + $link = HTTP::setGetVar('to', $params['to'], $link, '&'); |
|
355 | + if (isset($params['tag'])) { |
|
356 | + $link = HTTP::setGetVar('tag', $params['tag'], $link, '&'); |
|
357 | + } |
|
358 | + |
|
359 | + $this->redirect($link); |
|
360 | + } |
|
361 | + |
|
362 | + public function doDateReset() |
|
363 | + { |
|
364 | + $params = $this->parseParams(false); |
|
365 | + |
|
366 | + // Reset the link - only include the tag. |
|
367 | + $link = $this->AbsoluteLink(); |
|
368 | + if (isset($params['tag'])) { |
|
369 | + $link = HTTP::setGetVar('tag', $params['tag'], $link, '&'); |
|
370 | + } |
|
371 | + |
|
372 | + $this->redirect($link); |
|
373 | + } |
|
374 | + |
|
375 | + public function rss() |
|
376 | + { |
|
377 | + $rss = RSSFeed::create( |
|
378 | + $this->Updates()->sort('Created DESC')->limit(20), |
|
379 | + $this->Link('rss'), |
|
380 | + $this->getSubscriptionTitle() |
|
381 | + ); |
|
382 | + return $rss->outputToBrowser(); |
|
383 | + } |
|
384 | + |
|
385 | + public function atom() |
|
386 | + { |
|
387 | + $atom = CwpAtomFeed::create( |
|
388 | + $this->Updates()->sort('Created DESC')->limit(20), |
|
389 | + $this->Link('atom'), |
|
390 | + $this->getSubscriptionTitle() |
|
391 | + ); |
|
392 | + return $atom->outputToBrowser(); |
|
393 | + } |
|
394 | 394 | } |
@@ -11,117 +11,117 @@ |
||
11 | 11 | |
12 | 12 | class Quicklink extends DataObject |
13 | 13 | { |
14 | - private static $db = [ |
|
15 | - 'Name' => 'Varchar(255)', |
|
16 | - 'ExternalLink' => 'Varchar(255)', |
|
17 | - 'SortOrder' => 'Int', |
|
18 | - ]; |
|
19 | - |
|
20 | - private static $has_one = [ |
|
21 | - 'Parent' => BaseHomePage::class, |
|
22 | - 'InternalLink' => SiteTree::class, |
|
23 | - ]; |
|
24 | - |
|
25 | - private static $summary_fields = [ |
|
26 | - 'Name' => 'Name', |
|
27 | - 'InternalLink.Title' => 'Internal Link', |
|
28 | - 'ExternalLink' => 'External Link', |
|
29 | - ]; |
|
30 | - |
|
31 | - private static $table_name = 'Quicklink'; |
|
32 | - |
|
33 | - public function fieldLabels($includerelations = true) |
|
34 | - { |
|
35 | - $labels = parent::fieldLabels($includerelations); |
|
36 | - $labels['Name'] = _t(__CLASS__ . '.NameLabel', 'Name'); |
|
37 | - $labels['ExternalLink'] = _t(__CLASS__ . '.ExternalLinkLabel', 'External Link'); |
|
38 | - $labels['SortOrder'] = _t(__CLASS__ . '.SortOrderLabel', 'Sort Order'); |
|
39 | - $labels['ParentID'] = _t(__CLASS__ . '.ParentRelationLabel', 'Parent'); |
|
40 | - $labels['InternalLinkID'] = _t(__CLASS__ . '.InternalLinkLabel', 'Internal Link'); |
|
41 | - |
|
42 | - return $labels; |
|
43 | - } |
|
44 | - |
|
45 | - public function getLink() |
|
46 | - { |
|
47 | - if ($this->ExternalLink) { |
|
48 | - $url = parse_url($this->ExternalLink); |
|
49 | - |
|
50 | - // if no scheme set in the link, default to http |
|
51 | - if (!isset($url['scheme'])) { |
|
52 | - return 'http://' . $this->ExternalLink; |
|
53 | - } |
|
54 | - |
|
55 | - return $this->ExternalLink; |
|
56 | - } elseif ($this->InternalLinkID) { |
|
57 | - return $this->InternalLink()->Link(); |
|
58 | - } |
|
59 | - } |
|
60 | - |
|
61 | - public function canCreate($member = null, $context = []) |
|
62 | - { |
|
63 | - return $this->Parent()->canCreate($member, $context); |
|
64 | - } |
|
65 | - |
|
66 | - public function canEdit($member = null) |
|
67 | - { |
|
68 | - return $this->Parent()->canEdit($member); |
|
69 | - } |
|
70 | - |
|
71 | - public function canDelete($member = null) |
|
72 | - { |
|
73 | - return $this->Parent()->canDelete($member); |
|
74 | - } |
|
75 | - |
|
76 | - public function canView($member = null) |
|
77 | - { |
|
78 | - return $this->Parent()->canView($member); |
|
79 | - } |
|
80 | - |
|
81 | - public function getCMSFields() |
|
82 | - { |
|
83 | - $fields = parent::getCMSFields(); |
|
84 | - |
|
85 | - $fields->removeByName('ParentID'); |
|
86 | - |
|
87 | - $externalLinkField = $fields->fieldByName('Root.Main.ExternalLink'); |
|
88 | - |
|
89 | - $fields->removeByName('ExternalLink'); |
|
90 | - $fields->removeByName('InternalLinkID'); |
|
91 | - $fields->removeByName('SortOrder'); |
|
92 | - $externalLinkField->addExtraClass('noBorder'); |
|
93 | - |
|
94 | - $fields->addFieldToTab('Root.Main', CompositeField::create( |
|
95 | - array( |
|
96 | - TreeDropdownField::create( |
|
97 | - 'InternalLinkID', |
|
98 | - $this->fieldLabel('InternalLinkID'), |
|
99 | - SiteTree::class |
|
100 | - ), |
|
101 | - $externalLinkField, |
|
102 | - $wrap = CompositeField::create( |
|
103 | - $extraLabel = LiteralField::create( |
|
104 | - 'NoteOverride', |
|
105 | - sprintf('<div class="message good notice">%s</div>', _t( |
|
106 | - __CLASS__ . '.Note', |
|
107 | - 'Note: If you specify an External Link, the Internal Link will be ignored.' |
|
108 | - )) |
|
109 | - ) |
|
110 | - ) |
|
111 | - ) |
|
112 | - )); |
|
113 | - $fields->insertBefore( |
|
114 | - 'Name', |
|
115 | - LiteralField::create( |
|
116 | - 'Note', |
|
117 | - sprintf('<p>%s</p>', _t( |
|
118 | - __CLASS__ . '.Note2', |
|
119 | - 'Use this to specify a link to a page either on this site ' |
|
120 | - . '(Internal Link) or another site (External Link).' |
|
121 | - )) |
|
122 | - ) |
|
123 | - ); |
|
124 | - |
|
125 | - return $fields; |
|
126 | - } |
|
14 | + private static $db = [ |
|
15 | + 'Name' => 'Varchar(255)', |
|
16 | + 'ExternalLink' => 'Varchar(255)', |
|
17 | + 'SortOrder' => 'Int', |
|
18 | + ]; |
|
19 | + |
|
20 | + private static $has_one = [ |
|
21 | + 'Parent' => BaseHomePage::class, |
|
22 | + 'InternalLink' => SiteTree::class, |
|
23 | + ]; |
|
24 | + |
|
25 | + private static $summary_fields = [ |
|
26 | + 'Name' => 'Name', |
|
27 | + 'InternalLink.Title' => 'Internal Link', |
|
28 | + 'ExternalLink' => 'External Link', |
|
29 | + ]; |
|
30 | + |
|
31 | + private static $table_name = 'Quicklink'; |
|
32 | + |
|
33 | + public function fieldLabels($includerelations = true) |
|
34 | + { |
|
35 | + $labels = parent::fieldLabels($includerelations); |
|
36 | + $labels['Name'] = _t(__CLASS__ . '.NameLabel', 'Name'); |
|
37 | + $labels['ExternalLink'] = _t(__CLASS__ . '.ExternalLinkLabel', 'External Link'); |
|
38 | + $labels['SortOrder'] = _t(__CLASS__ . '.SortOrderLabel', 'Sort Order'); |
|
39 | + $labels['ParentID'] = _t(__CLASS__ . '.ParentRelationLabel', 'Parent'); |
|
40 | + $labels['InternalLinkID'] = _t(__CLASS__ . '.InternalLinkLabel', 'Internal Link'); |
|
41 | + |
|
42 | + return $labels; |
|
43 | + } |
|
44 | + |
|
45 | + public function getLink() |
|
46 | + { |
|
47 | + if ($this->ExternalLink) { |
|
48 | + $url = parse_url($this->ExternalLink); |
|
49 | + |
|
50 | + // if no scheme set in the link, default to http |
|
51 | + if (!isset($url['scheme'])) { |
|
52 | + return 'http://' . $this->ExternalLink; |
|
53 | + } |
|
54 | + |
|
55 | + return $this->ExternalLink; |
|
56 | + } elseif ($this->InternalLinkID) { |
|
57 | + return $this->InternalLink()->Link(); |
|
58 | + } |
|
59 | + } |
|
60 | + |
|
61 | + public function canCreate($member = null, $context = []) |
|
62 | + { |
|
63 | + return $this->Parent()->canCreate($member, $context); |
|
64 | + } |
|
65 | + |
|
66 | + public function canEdit($member = null) |
|
67 | + { |
|
68 | + return $this->Parent()->canEdit($member); |
|
69 | + } |
|
70 | + |
|
71 | + public function canDelete($member = null) |
|
72 | + { |
|
73 | + return $this->Parent()->canDelete($member); |
|
74 | + } |
|
75 | + |
|
76 | + public function canView($member = null) |
|
77 | + { |
|
78 | + return $this->Parent()->canView($member); |
|
79 | + } |
|
80 | + |
|
81 | + public function getCMSFields() |
|
82 | + { |
|
83 | + $fields = parent::getCMSFields(); |
|
84 | + |
|
85 | + $fields->removeByName('ParentID'); |
|
86 | + |
|
87 | + $externalLinkField = $fields->fieldByName('Root.Main.ExternalLink'); |
|
88 | + |
|
89 | + $fields->removeByName('ExternalLink'); |
|
90 | + $fields->removeByName('InternalLinkID'); |
|
91 | + $fields->removeByName('SortOrder'); |
|
92 | + $externalLinkField->addExtraClass('noBorder'); |
|
93 | + |
|
94 | + $fields->addFieldToTab('Root.Main', CompositeField::create( |
|
95 | + array( |
|
96 | + TreeDropdownField::create( |
|
97 | + 'InternalLinkID', |
|
98 | + $this->fieldLabel('InternalLinkID'), |
|
99 | + SiteTree::class |
|
100 | + ), |
|
101 | + $externalLinkField, |
|
102 | + $wrap = CompositeField::create( |
|
103 | + $extraLabel = LiteralField::create( |
|
104 | + 'NoteOverride', |
|
105 | + sprintf('<div class="message good notice">%s</div>', _t( |
|
106 | + __CLASS__ . '.Note', |
|
107 | + 'Note: If you specify an External Link, the Internal Link will be ignored.' |
|
108 | + )) |
|
109 | + ) |
|
110 | + ) |
|
111 | + ) |
|
112 | + )); |
|
113 | + $fields->insertBefore( |
|
114 | + 'Name', |
|
115 | + LiteralField::create( |
|
116 | + 'Note', |
|
117 | + sprintf('<p>%s</p>', _t( |
|
118 | + __CLASS__ . '.Note2', |
|
119 | + 'Use this to specify a link to a page either on this site ' |
|
120 | + . '(Internal Link) or another site (External Link).' |
|
121 | + )) |
|
122 | + ) |
|
123 | + ); |
|
124 | + |
|
125 | + return $fields; |
|
126 | + } |
|
127 | 127 | } |
@@ -186,7 +186,7 @@ |
||
186 | 186 | |
187 | 187 | public function getCMSFields() |
188 | 188 | { |
189 | - $this->beforeUpdateCMSFields(function (FieldList $fields) { |
|
189 | + $this->beforeUpdateCMSFields(function(FieldList $fields) { |
|
190 | 190 | // Related Pages |
191 | 191 | $components = GridFieldConfig_RelationEditor::create(); |
192 | 192 | $components->removeComponentsByType(GridFieldAddNewButton::class); |
@@ -26,143 +26,143 @@ |
||
26 | 26 | |
27 | 27 | class BasePage extends SiteTree |
28 | 28 | { |
29 | - private static $icon = 'cwp/cwp:images/icons/sitetree_images/page.png'; |
|
30 | - |
|
31 | - /** |
|
32 | - * Hide this page type from the CMS. hide_ancestor is slightly misnamed, should really be just "hide" |
|
33 | - * |
|
34 | - * {@inheritDoc} |
|
35 | - */ |
|
36 | - private static $hide_ancestor = BasePage::class; |
|
37 | - |
|
38 | - private static $api_access = [ |
|
39 | - 'view' => [ |
|
40 | - 'Locale', 'URLSegment', 'Title', 'MenuTitle', 'Content', 'MetaDescription', |
|
41 | - 'ExtraMenu', 'Sort', 'Version', 'ParentID', 'ID' |
|
42 | - ], |
|
43 | - 'edit' => [ |
|
44 | - 'Locale', 'URLSegment', 'Title', 'MenuTitle', 'Content', 'MetaDescription', |
|
45 | - 'ExtraMenu', 'Sort', 'Version', 'ParentID', 'ID' |
|
46 | - ], |
|
47 | - ]; |
|
48 | - |
|
49 | - private static $table_name = 'BasePage'; |
|
50 | - |
|
51 | - /** |
|
52 | - * @config |
|
53 | - * @var string |
|
54 | - */ |
|
55 | - private static $related_pages_title = 'Related pages'; |
|
56 | - |
|
57 | - private static $many_many = [ |
|
58 | - 'Terms' => TaxonomyTerm::class, |
|
59 | - 'RelatedPages' => BasePage::class, |
|
60 | - ]; |
|
61 | - |
|
62 | - private static $many_many_extraFields = [ |
|
63 | - 'RelatedPages' => [ |
|
64 | - 'SortOrder' => 'Int', |
|
65 | - ], |
|
66 | - ]; |
|
67 | - |
|
68 | - private static $plural_name = 'Base Pages'; |
|
69 | - |
|
70 | - /** |
|
71 | - * Get the footer holder. |
|
72 | - */ |
|
73 | - public function getFooter() |
|
74 | - { |
|
75 | - return FooterHolder::get_one(FooterHolder::class); |
|
76 | - } |
|
77 | - |
|
78 | - public function RelatedPages() |
|
79 | - { |
|
80 | - return $this->getManyManyComponents('RelatedPages')->sort('SortOrder'); |
|
81 | - } |
|
82 | - |
|
83 | - public function RelatedPagesTitle() |
|
84 | - { |
|
85 | - return $this->config()->get('related_pages_title'); |
|
86 | - } |
|
87 | - |
|
88 | - public function getCMSFields() |
|
89 | - { |
|
90 | - $this->beforeUpdateCMSFields(function (FieldList $fields) { |
|
91 | - // Related Pages |
|
92 | - $components = GridFieldConfig_RelationEditor::create(); |
|
93 | - $components->removeComponentsByType(GridFieldAddNewButton::class); |
|
94 | - $components->removeComponentsByType(GridFieldEditButton::class); |
|
95 | - $components->removeComponentsByType(GridFieldFilterHeader::class); |
|
96 | - $components->addComponent(new GridFieldSortableRows('SortOrder')); |
|
97 | - |
|
98 | - /** @var GridFieldDataColumns $dataColumns */ |
|
99 | - $dataColumns = $components->getComponentByType(GridFieldDataColumns::class); |
|
100 | - $dataColumns->setDisplayFields([ |
|
101 | - 'Title' => _t(__CLASS__ . '.ColumnTitle', 'Title'), |
|
102 | - 'ClassName' => _t(__CLASS__ . '.ColumnPageType', 'Page Type') |
|
103 | - ]); |
|
104 | - |
|
105 | - $fields->findOrMakeTab( |
|
106 | - 'Root.RelatedPages', |
|
107 | - _t(__CLASS__ . '.RelatedPages', 'Related pages') |
|
108 | - ); |
|
109 | - $fields->addFieldToTab( |
|
110 | - 'Root.RelatedPages', |
|
111 | - GridField::create( |
|
112 | - 'RelatedPages', |
|
113 | - _t(__CLASS__ . '.RelatedPages', 'Related pages'), |
|
114 | - $this->RelatedPages(), |
|
115 | - $components |
|
116 | - ) |
|
117 | - ); |
|
118 | - |
|
119 | - // Taxonomies - Unless they have their own 'Tags' field (such as in Blog, etc) |
|
120 | - $hasMany = $this->hasMany(); |
|
121 | - $manyMany = $this->manyMany(); |
|
122 | - if (!isset($hasMany['Tags']) && !isset($manyMany['Tags'])) { |
|
123 | - $components = GridFieldConfig_RelationEditor::create(); |
|
124 | - $components->removeComponentsByType(GridFieldAddNewButton::class); |
|
125 | - $components->removeComponentsByType(GridFieldEditButton::class); |
|
126 | - |
|
127 | - /** @var GridFieldAddExistingAutocompleter $autoCompleter */ |
|
128 | - $autoCompleter = $components->getComponentByType(GridFieldAddExistingAutocompleter::class); |
|
129 | - $autoCompleter->setResultsFormat('$Name ($TaxonomyName)'); |
|
130 | - |
|
131 | - /** @var GridFieldDataColumns $dataColumns */ |
|
132 | - $dataColumns = $components->getComponentByType(GridFieldDataColumns::class); |
|
133 | - $dataColumns->setDisplayFields([ |
|
134 | - 'Name' => _t(__CLASS__ . '.Term', 'Term'), |
|
135 | - 'TaxonomyName' => _t(__CLASS__ . '.Taxonomy', 'Taxonomy') |
|
136 | - ]); |
|
137 | - |
|
138 | - $fields->findOrMakeTab('Root.Tags', _t(__CLASS__ . '.TagsTabTitle', 'Tags')); |
|
139 | - $fields->addFieldToTab( |
|
140 | - 'Root.Tags', |
|
141 | - TreeMultiselectField::create( |
|
142 | - 'Terms', |
|
143 | - _t(__CLASS__ . '.Terms', 'Terms'), |
|
144 | - TaxonomyTerm::class |
|
145 | - )->setDescription(_t(__CLASS__ . '.TermsDescription', 'Click to search for additional terms')) |
|
146 | - ); |
|
147 | - } |
|
148 | - }); |
|
149 | - return parent::getCMSFields(); |
|
150 | - } |
|
151 | - |
|
152 | - /** |
|
153 | - * Returns the native language name for the selected locale/language, empty string if Fluent is not available |
|
154 | - * |
|
155 | - * @return string |
|
156 | - */ |
|
157 | - public function getSelectedLanguage() |
|
158 | - { |
|
159 | - if (!class_exists(Locale::class) || !$this->hasMethod('Locales')) { |
|
160 | - return ''; |
|
161 | - } |
|
162 | - |
|
163 | - /** @var ArrayData $information */ |
|
164 | - $information = $this->LocaleInformation(FluentState::singleton()->getLocale()); |
|
165 | - |
|
166 | - return $information->LanguageNative; |
|
167 | - } |
|
29 | + private static $icon = 'cwp/cwp:images/icons/sitetree_images/page.png'; |
|
30 | + |
|
31 | + /** |
|
32 | + * Hide this page type from the CMS. hide_ancestor is slightly misnamed, should really be just "hide" |
|
33 | + * |
|
34 | + * {@inheritDoc} |
|
35 | + */ |
|
36 | + private static $hide_ancestor = BasePage::class; |
|
37 | + |
|
38 | + private static $api_access = [ |
|
39 | + 'view' => [ |
|
40 | + 'Locale', 'URLSegment', 'Title', 'MenuTitle', 'Content', 'MetaDescription', |
|
41 | + 'ExtraMenu', 'Sort', 'Version', 'ParentID', 'ID' |
|
42 | + ], |
|
43 | + 'edit' => [ |
|
44 | + 'Locale', 'URLSegment', 'Title', 'MenuTitle', 'Content', 'MetaDescription', |
|
45 | + 'ExtraMenu', 'Sort', 'Version', 'ParentID', 'ID' |
|
46 | + ], |
|
47 | + ]; |
|
48 | + |
|
49 | + private static $table_name = 'BasePage'; |
|
50 | + |
|
51 | + /** |
|
52 | + * @config |
|
53 | + * @var string |
|
54 | + */ |
|
55 | + private static $related_pages_title = 'Related pages'; |
|
56 | + |
|
57 | + private static $many_many = [ |
|
58 | + 'Terms' => TaxonomyTerm::class, |
|
59 | + 'RelatedPages' => BasePage::class, |
|
60 | + ]; |
|
61 | + |
|
62 | + private static $many_many_extraFields = [ |
|
63 | + 'RelatedPages' => [ |
|
64 | + 'SortOrder' => 'Int', |
|
65 | + ], |
|
66 | + ]; |
|
67 | + |
|
68 | + private static $plural_name = 'Base Pages'; |
|
69 | + |
|
70 | + /** |
|
71 | + * Get the footer holder. |
|
72 | + */ |
|
73 | + public function getFooter() |
|
74 | + { |
|
75 | + return FooterHolder::get_one(FooterHolder::class); |
|
76 | + } |
|
77 | + |
|
78 | + public function RelatedPages() |
|
79 | + { |
|
80 | + return $this->getManyManyComponents('RelatedPages')->sort('SortOrder'); |
|
81 | + } |
|
82 | + |
|
83 | + public function RelatedPagesTitle() |
|
84 | + { |
|
85 | + return $this->config()->get('related_pages_title'); |
|
86 | + } |
|
87 | + |
|
88 | + public function getCMSFields() |
|
89 | + { |
|
90 | + $this->beforeUpdateCMSFields(function (FieldList $fields) { |
|
91 | + // Related Pages |
|
92 | + $components = GridFieldConfig_RelationEditor::create(); |
|
93 | + $components->removeComponentsByType(GridFieldAddNewButton::class); |
|
94 | + $components->removeComponentsByType(GridFieldEditButton::class); |
|
95 | + $components->removeComponentsByType(GridFieldFilterHeader::class); |
|
96 | + $components->addComponent(new GridFieldSortableRows('SortOrder')); |
|
97 | + |
|
98 | + /** @var GridFieldDataColumns $dataColumns */ |
|
99 | + $dataColumns = $components->getComponentByType(GridFieldDataColumns::class); |
|
100 | + $dataColumns->setDisplayFields([ |
|
101 | + 'Title' => _t(__CLASS__ . '.ColumnTitle', 'Title'), |
|
102 | + 'ClassName' => _t(__CLASS__ . '.ColumnPageType', 'Page Type') |
|
103 | + ]); |
|
104 | + |
|
105 | + $fields->findOrMakeTab( |
|
106 | + 'Root.RelatedPages', |
|
107 | + _t(__CLASS__ . '.RelatedPages', 'Related pages') |
|
108 | + ); |
|
109 | + $fields->addFieldToTab( |
|
110 | + 'Root.RelatedPages', |
|
111 | + GridField::create( |
|
112 | + 'RelatedPages', |
|
113 | + _t(__CLASS__ . '.RelatedPages', 'Related pages'), |
|
114 | + $this->RelatedPages(), |
|
115 | + $components |
|
116 | + ) |
|
117 | + ); |
|
118 | + |
|
119 | + // Taxonomies - Unless they have their own 'Tags' field (such as in Blog, etc) |
|
120 | + $hasMany = $this->hasMany(); |
|
121 | + $manyMany = $this->manyMany(); |
|
122 | + if (!isset($hasMany['Tags']) && !isset($manyMany['Tags'])) { |
|
123 | + $components = GridFieldConfig_RelationEditor::create(); |
|
124 | + $components->removeComponentsByType(GridFieldAddNewButton::class); |
|
125 | + $components->removeComponentsByType(GridFieldEditButton::class); |
|
126 | + |
|
127 | + /** @var GridFieldAddExistingAutocompleter $autoCompleter */ |
|
128 | + $autoCompleter = $components->getComponentByType(GridFieldAddExistingAutocompleter::class); |
|
129 | + $autoCompleter->setResultsFormat('$Name ($TaxonomyName)'); |
|
130 | + |
|
131 | + /** @var GridFieldDataColumns $dataColumns */ |
|
132 | + $dataColumns = $components->getComponentByType(GridFieldDataColumns::class); |
|
133 | + $dataColumns->setDisplayFields([ |
|
134 | + 'Name' => _t(__CLASS__ . '.Term', 'Term'), |
|
135 | + 'TaxonomyName' => _t(__CLASS__ . '.Taxonomy', 'Taxonomy') |
|
136 | + ]); |
|
137 | + |
|
138 | + $fields->findOrMakeTab('Root.Tags', _t(__CLASS__ . '.TagsTabTitle', 'Tags')); |
|
139 | + $fields->addFieldToTab( |
|
140 | + 'Root.Tags', |
|
141 | + TreeMultiselectField::create( |
|
142 | + 'Terms', |
|
143 | + _t(__CLASS__ . '.Terms', 'Terms'), |
|
144 | + TaxonomyTerm::class |
|
145 | + )->setDescription(_t(__CLASS__ . '.TermsDescription', 'Click to search for additional terms')) |
|
146 | + ); |
|
147 | + } |
|
148 | + }); |
|
149 | + return parent::getCMSFields(); |
|
150 | + } |
|
151 | + |
|
152 | + /** |
|
153 | + * Returns the native language name for the selected locale/language, empty string if Fluent is not available |
|
154 | + * |
|
155 | + * @return string |
|
156 | + */ |
|
157 | + public function getSelectedLanguage() |
|
158 | + { |
|
159 | + if (!class_exists(Locale::class) || !$this->hasMethod('Locales')) { |
|
160 | + return ''; |
|
161 | + } |
|
162 | + |
|
163 | + /** @var ArrayData $information */ |
|
164 | + $information = $this->LocaleInformation(FluentState::singleton()->getLocale()); |
|
165 | + |
|
166 | + return $information->LanguageNative; |
|
167 | + } |
|
168 | 168 | } |
@@ -9,36 +9,36 @@ |
||
9 | 9 | |
10 | 10 | class DatedUpdateHolderControllerTest extends FunctionalTest |
11 | 11 | { |
12 | - protected static $fixture_file = 'EventHolderTest.yml'; |
|
12 | + protected static $fixture_file = 'EventHolderTest.yml'; |
|
13 | 13 | |
14 | - protected static $use_draft_site = true; |
|
14 | + protected static $use_draft_site = true; |
|
15 | 15 | |
16 | - protected function setUp() |
|
17 | - { |
|
18 | - parent::setUp(); |
|
16 | + protected function setUp() |
|
17 | + { |
|
18 | + parent::setUp(); |
|
19 | 19 | |
20 | - // Note: this test requires the starter theme to be installed |
|
21 | - Config::modify()->set(SSViewer::class, 'themes', ['starter', '$default']); |
|
22 | - Config::modify()->set(SSViewer::class, 'theme', 'starter'); |
|
23 | - } |
|
20 | + // Note: this test requires the starter theme to be installed |
|
21 | + Config::modify()->set(SSViewer::class, 'themes', ['starter', '$default']); |
|
22 | + Config::modify()->set(SSViewer::class, 'theme', 'starter'); |
|
23 | + } |
|
24 | 24 | |
25 | - public function testSettingDateFiltersInReverseOrderShowsMessage() |
|
26 | - { |
|
27 | - /** @var EventHolder $holder */ |
|
28 | - $holder = $this->objFromFixture(EventHolder::class, 'EventHolder1'); |
|
25 | + public function testSettingDateFiltersInReverseOrderShowsMessage() |
|
26 | + { |
|
27 | + /** @var EventHolder $holder */ |
|
28 | + $holder = $this->objFromFixture(EventHolder::class, 'EventHolder1'); |
|
29 | 29 | |
30 | - $result = $this->get($holder->Link() . '?from=2018-01-10&to=2018-01-01'); |
|
30 | + $result = $this->get($holder->Link() . '?from=2018-01-10&to=2018-01-01'); |
|
31 | 31 | |
32 | - $this->assertContains('Filter has been applied with the dates reversed', $result->getBody()); |
|
33 | - } |
|
32 | + $this->assertContains('Filter has been applied with the dates reversed', $result->getBody()); |
|
33 | + } |
|
34 | 34 | |
35 | - public function testSettingFromButNotToDateShowsMessage() |
|
36 | - { |
|
37 | - /** @var EventHolder $holder */ |
|
38 | - $holder = $this->objFromFixture(EventHolder::class, 'EventHolder1'); |
|
35 | + public function testSettingFromButNotToDateShowsMessage() |
|
36 | + { |
|
37 | + /** @var EventHolder $holder */ |
|
38 | + $holder = $this->objFromFixture(EventHolder::class, 'EventHolder1'); |
|
39 | 39 | |
40 | - $result = $this->get($holder->Link() . '?from=2018-01-10'); |
|
40 | + $result = $this->get($holder->Link() . '?from=2018-01-10'); |
|
41 | 41 | |
42 | - $this->assertContains('Filtered by a single date', $result->getBody()); |
|
43 | - } |
|
42 | + $this->assertContains('Filtered by a single date', $result->getBody()); |
|
43 | + } |
|
44 | 44 | } |
@@ -9,27 +9,27 @@ |
||
9 | 9 | |
10 | 10 | class SitemapPageTest extends FunctionalTest |
11 | 11 | { |
12 | - protected static $fixture_file = 'SitemapPageTest.yml'; |
|
12 | + protected static $fixture_file = 'SitemapPageTest.yml'; |
|
13 | 13 | |
14 | - protected static $use_draft_site = true; |
|
14 | + protected static $use_draft_site = true; |
|
15 | 15 | |
16 | - protected function setUp() |
|
17 | - { |
|
18 | - parent::setUp(); |
|
16 | + protected function setUp() |
|
17 | + { |
|
18 | + parent::setUp(); |
|
19 | 19 | |
20 | - Config::modify()->set(SSViewer::class, 'themes', ['starter', '$default']); |
|
21 | - Config::modify()->set(SSViewer::class, 'theme', 'starter'); |
|
22 | - } |
|
20 | + Config::modify()->set(SSViewer::class, 'themes', ['starter', '$default']); |
|
21 | + Config::modify()->set(SSViewer::class, 'theme', 'starter'); |
|
22 | + } |
|
23 | 23 | |
24 | - /** |
|
25 | - * Note: this test depends on the "starter" theme being installed and configured as default |
|
26 | - */ |
|
27 | - public function testSitemapShowsNavigationTitleNotNormalTitle() |
|
28 | - { |
|
29 | - $response = $this->get('sitemap'); |
|
30 | - $parser = new CSSContentParser($response->getBody()); |
|
31 | - $elements = $parser->getBySelector('.sitemap li.first .sitemap-link'); |
|
32 | - $this->assertNotEmpty($elements); |
|
33 | - $this->assertEquals('Top page nav 1', (string) $elements[0]); |
|
34 | - } |
|
24 | + /** |
|
25 | + * Note: this test depends on the "starter" theme being installed and configured as default |
|
26 | + */ |
|
27 | + public function testSitemapShowsNavigationTitleNotNormalTitle() |
|
28 | + { |
|
29 | + $response = $this->get('sitemap'); |
|
30 | + $parser = new CSSContentParser($response->getBody()); |
|
31 | + $elements = $parser->getBySelector('.sitemap li.first .sitemap-link'); |
|
32 | + $this->assertNotEmpty($elements); |
|
33 | + $this->assertEquals('Top page nav 1', (string) $elements[0]); |
|
34 | + } |
|
35 | 35 | } |
@@ -7,15 +7,15 @@ |
||
7 | 7 | |
8 | 8 | class BasePageController extends ContentController |
9 | 9 | { |
10 | - /** |
|
11 | - * Provide current year. |
|
12 | - */ |
|
13 | - public function CurrentDatetime() |
|
14 | - { |
|
15 | - return DBDatetime::now(); |
|
16 | - } |
|
10 | + /** |
|
11 | + * Provide current year. |
|
12 | + */ |
|
13 | + public function CurrentDatetime() |
|
14 | + { |
|
15 | + return DBDatetime::now(); |
|
16 | + } |
|
17 | 17 | |
18 | - public function getRSSLink() |
|
19 | - { |
|
20 | - } |
|
18 | + public function getRSSLink() |
|
19 | + { |
|
20 | + } |
|
21 | 21 | } |