@@ -9,7 +9,7 @@ |
||
9 | 9 | */ |
10 | 10 | public function updateCMSFields(FieldList $fields) { |
11 | 11 | $excluded = $this->owner->getExcludedSiteTreeClassNames(); |
12 | - if(!empty($excluded)) { |
|
12 | + if (!empty($excluded)) { |
|
13 | 13 | $pages = $this->getLumberjackPagesForGridfield($excluded); |
14 | 14 | $gridField = new GridField( |
15 | 15 | "ChildPages", |
@@ -37,7 +37,7 @@ discard block |
||
37 | 37 | |
38 | 38 | public function getCMSFields() |
39 | 39 | { |
40 | - $this->beforeUpdateCMSFields(function ($fields) { |
|
40 | + $this->beforeUpdateCMSFields(function($fields) { |
|
41 | 41 | |
42 | 42 | $datefield = new DateField('Date', 'Date (DD/MM/YYYY)'); |
43 | 43 | $datefield->setConfig('showcalendar', true); |
@@ -90,8 +90,8 @@ discard block |
||
90 | 90 | |
91 | 91 | public function init() |
92 | 92 | { |
93 | - if (Director::fileExists(project() . "/css/news.css")) { |
|
94 | - Requirements::css(project() . "/css/news.css"); |
|
93 | + if (Director::fileExists(project()."/css/news.css")) { |
|
94 | + Requirements::css(project()."/css/news.css"); |
|
95 | 95 | } else { |
96 | 96 | Requirements::css("basic-news/css/news.css"); |
97 | 97 | } |
@@ -7,7 +7,7 @@ discard block |
||
7 | 7 | { |
8 | 8 | $intro = null; |
9 | 9 | |
10 | - $this->beforeUpdateCMSFields(function ($fields) { |
|
10 | + $this->beforeUpdateCMSFields(function($fields) { |
|
11 | 11 | $fields->renameField("Content", "Intro Content"); |
12 | 12 | }); |
13 | 13 | |
@@ -60,9 +60,9 @@ discard block |
||
60 | 60 | |
61 | 61 | public function init() |
62 | 62 | { |
63 | - RSSFeed::linkToFeed($this->Link() . "rss"); |
|
64 | - if (Director::fileExists(project() . "/css/news.css")) { |
|
65 | - Requirements::css(project() . "/css/news.css"); |
|
63 | + RSSFeed::linkToFeed($this->Link()."rss"); |
|
64 | + if (Director::fileExists(project()."/css/news.css")) { |
|
65 | + Requirements::css(project()."/css/news.css"); |
|
66 | 66 | } else { |
67 | 67 | Requirements::css("basic-news/css/news.css"); |
68 | 68 | } |
@@ -77,8 +77,8 @@ discard block |
||
77 | 77 | $rss = new RSSFeed( |
78 | 78 | $list = NewsArticle::get(), // an SS_List containing your feed items |
79 | 79 | $link = $this->Link("rss"), // a HTTP link to this feed |
80 | - $title = $config->Title . " News", // title for this feed, displayed in RSS readers |
|
81 | - $description = "All the latest news from ". $config->Title . "." // description |
|
80 | + $title = $config->Title." News", // title for this feed, displayed in RSS readers |
|
81 | + $description = "All the latest news from ".$config->Title."." // description |
|
82 | 82 | ); |
83 | 83 | // Outputs the RSS feed to the user. |
84 | 84 | return $rss->outputToBrowser(); |