@@ -12,58 +12,58 @@ |
||
12 | 12 | */ |
13 | 13 | class CustomSiteConfig extends DataExtension |
14 | 14 | { |
15 | - private static $db = array( |
|
16 | - 'GACode' => 'Varchar(16)', |
|
17 | - 'FacebookURL' => 'Varchar(256)', // multitude of ways to link to Facebook accounts, best to leave it open. |
|
18 | - 'TwitterUsername' => 'Varchar(16)', // max length of Twitter username 15 |
|
19 | - ); |
|
15 | + private static $db = array( |
|
16 | + 'GACode' => 'Varchar(16)', |
|
17 | + 'FacebookURL' => 'Varchar(256)', // multitude of ways to link to Facebook accounts, best to leave it open. |
|
18 | + 'TwitterUsername' => 'Varchar(16)', // max length of Twitter username 15 |
|
19 | + ); |
|
20 | 20 | |
21 | - public function updateCMSFields(FieldList $fields) |
|
22 | - { |
|
23 | - $fields->addFieldToTab( |
|
24 | - 'Root.Main', |
|
25 | - $gaCode = TextField::create( |
|
26 | - 'GACode', |
|
27 | - _t(__CLASS__ . '.GaField', 'Google Analytics account') |
|
28 | - ) |
|
29 | - ); |
|
21 | + public function updateCMSFields(FieldList $fields) |
|
22 | + { |
|
23 | + $fields->addFieldToTab( |
|
24 | + 'Root.Main', |
|
25 | + $gaCode = TextField::create( |
|
26 | + 'GACode', |
|
27 | + _t(__CLASS__ . '.GaField', 'Google Analytics account') |
|
28 | + ) |
|
29 | + ); |
|
30 | 30 | |
31 | - $gaCode->setDescription( |
|
32 | - DBField::create_field('HTMLFragment', _t( |
|
33 | - __CLASS__ . '.GaFieldDesc', |
|
34 | - 'Account number to be used all across the site (in the format <strong>UA-XXXXX-X</strong>)' |
|
35 | - )) |
|
36 | - ); |
|
31 | + $gaCode->setDescription( |
|
32 | + DBField::create_field('HTMLFragment', _t( |
|
33 | + __CLASS__ . '.GaFieldDesc', |
|
34 | + 'Account number to be used all across the site (in the format <strong>UA-XXXXX-X</strong>)' |
|
35 | + )) |
|
36 | + ); |
|
37 | 37 | |
38 | - $fields->findOrMakeTab('Root.SocialMedia', _t(__CLASS__ . '.SocialMediaTab', 'Social Media')); |
|
38 | + $fields->findOrMakeTab('Root.SocialMedia', _t(__CLASS__ . '.SocialMediaTab', 'Social Media')); |
|
39 | 39 | |
40 | - $fields->addFieldToTab( |
|
41 | - 'Root.SocialMedia', |
|
42 | - $facebookURL = TextField::create( |
|
43 | - 'FacebookURL', |
|
44 | - _t(__CLASS__ . '.FbField', 'Facebook UID or username') |
|
45 | - ) |
|
46 | - ); |
|
47 | - $facebookURL->setDescription( |
|
48 | - DBField::create_field('HTMLFragment', _t( |
|
49 | - __CLASS__ . '.FbFieldDesc', |
|
50 | - 'Facebook link (everything after the "http://facebook.com/", eg http://facebook.com/' |
|
51 | - . '<strong>username</strong> or http://facebook.com/<strong>pages/108510539573</strong>)' |
|
52 | - )) |
|
53 | - ); |
|
40 | + $fields->addFieldToTab( |
|
41 | + 'Root.SocialMedia', |
|
42 | + $facebookURL = TextField::create( |
|
43 | + 'FacebookURL', |
|
44 | + _t(__CLASS__ . '.FbField', 'Facebook UID or username') |
|
45 | + ) |
|
46 | + ); |
|
47 | + $facebookURL->setDescription( |
|
48 | + DBField::create_field('HTMLFragment', _t( |
|
49 | + __CLASS__ . '.FbFieldDesc', |
|
50 | + 'Facebook link (everything after the "http://facebook.com/", eg http://facebook.com/' |
|
51 | + . '<strong>username</strong> or http://facebook.com/<strong>pages/108510539573</strong>)' |
|
52 | + )) |
|
53 | + ); |
|
54 | 54 | |
55 | - $fields->addFieldToTab( |
|
56 | - 'Root.SocialMedia', |
|
57 | - $twitterUsername = TextField::create( |
|
58 | - 'TwitterUsername', |
|
59 | - _t(__CLASS__ . '.TwitterField', 'Twitter username') |
|
60 | - ) |
|
61 | - ); |
|
62 | - $twitterUsername->setDescription( |
|
63 | - DBField::create_field('HTMLFragment', _t( |
|
64 | - __CLASS__ . '.TwitterFieldDesc', |
|
65 | - 'Twitter username (eg, http://twitter.com/<strong>username</strong>)' |
|
66 | - )) |
|
67 | - ); |
|
68 | - } |
|
55 | + $fields->addFieldToTab( |
|
56 | + 'Root.SocialMedia', |
|
57 | + $twitterUsername = TextField::create( |
|
58 | + 'TwitterUsername', |
|
59 | + _t(__CLASS__ . '.TwitterField', 'Twitter username') |
|
60 | + ) |
|
61 | + ); |
|
62 | + $twitterUsername->setDescription( |
|
63 | + DBField::create_field('HTMLFragment', _t( |
|
64 | + __CLASS__ . '.TwitterFieldDesc', |
|
65 | + 'Twitter username (eg, http://twitter.com/<strong>username</strong>)' |
|
66 | + )) |
|
67 | + ); |
|
68 | + } |
|
69 | 69 | } |
@@ -7,50 +7,50 @@ |
||
7 | 7 | |
8 | 8 | class NewsHolder extends DatedUpdateHolder |
9 | 9 | { |
10 | - private static $description = 'Container page for News Pages, provides news filtering and pagination'; |
|
11 | - |
|
12 | - private static $allowed_children = [ |
|
13 | - NewsPage::class, |
|
14 | - ]; |
|
15 | - |
|
16 | - private static $default_child = NewsPage::class; |
|
17 | - |
|
18 | - private static $update_name = 'News'; |
|
19 | - |
|
20 | - private static $update_class = NewsPage::class; |
|
21 | - |
|
22 | - private static $icon_class = 'font-icon-news'; |
|
23 | - |
|
24 | - private static $singular_name = 'News Holder'; |
|
25 | - |
|
26 | - private static $plural_name = 'News Holders'; |
|
27 | - |
|
28 | - private static $table_name = 'NewsHolder'; |
|
29 | - |
|
30 | - /** |
|
31 | - * Find all site's news items, based on some filters. |
|
32 | - * Omitting parameters will prevent relevant filters from being applied. The filters are ANDed together. |
|
33 | - * |
|
34 | - * @param string $className The name of the class to fetch. |
|
35 | - * @param int $parentID The ID of the holder to extract the news items from. |
|
36 | - * @param int $tagID The ID of the tag to filter the news items by. |
|
37 | - * @param string $dateFrom The beginning of a date filter range. |
|
38 | - * @param string $dateTo The end of the date filter range. If empty, only one day will be searched for. |
|
39 | - * @param int $year Numeric value of the year to show. |
|
40 | - * @param int $monthNumber Numeric value of the month to show. |
|
41 | - * |
|
42 | - * @returns DataList|PaginatedList |
|
43 | - */ |
|
44 | - public static function AllUpdates( |
|
45 | - $className = NewsPage::class, |
|
46 | - $parentID = null, |
|
47 | - $tagID = null, |
|
48 | - $dateFrom = null, |
|
49 | - $dateTo = null, |
|
50 | - $year = null, |
|
51 | - $monthNumber = null |
|
52 | - ) { |
|
53 | - return parent::AllUpdates($className, $parentID, $tagID, $dateFrom, $dateTo, $year, $monthNumber) |
|
54 | - ->Sort('Date', 'DESC'); |
|
55 | - } |
|
10 | + private static $description = 'Container page for News Pages, provides news filtering and pagination'; |
|
11 | + |
|
12 | + private static $allowed_children = [ |
|
13 | + NewsPage::class, |
|
14 | + ]; |
|
15 | + |
|
16 | + private static $default_child = NewsPage::class; |
|
17 | + |
|
18 | + private static $update_name = 'News'; |
|
19 | + |
|
20 | + private static $update_class = NewsPage::class; |
|
21 | + |
|
22 | + private static $icon_class = 'font-icon-news'; |
|
23 | + |
|
24 | + private static $singular_name = 'News Holder'; |
|
25 | + |
|
26 | + private static $plural_name = 'News Holders'; |
|
27 | + |
|
28 | + private static $table_name = 'NewsHolder'; |
|
29 | + |
|
30 | + /** |
|
31 | + * Find all site's news items, based on some filters. |
|
32 | + * Omitting parameters will prevent relevant filters from being applied. The filters are ANDed together. |
|
33 | + * |
|
34 | + * @param string $className The name of the class to fetch. |
|
35 | + * @param int $parentID The ID of the holder to extract the news items from. |
|
36 | + * @param int $tagID The ID of the tag to filter the news items by. |
|
37 | + * @param string $dateFrom The beginning of a date filter range. |
|
38 | + * @param string $dateTo The end of the date filter range. If empty, only one day will be searched for. |
|
39 | + * @param int $year Numeric value of the year to show. |
|
40 | + * @param int $monthNumber Numeric value of the month to show. |
|
41 | + * |
|
42 | + * @returns DataList|PaginatedList |
|
43 | + */ |
|
44 | + public static function AllUpdates( |
|
45 | + $className = NewsPage::class, |
|
46 | + $parentID = null, |
|
47 | + $tagID = null, |
|
48 | + $dateFrom = null, |
|
49 | + $dateTo = null, |
|
50 | + $year = null, |
|
51 | + $monthNumber = null |
|
52 | + ) { |
|
53 | + return parent::AllUpdates($className, $parentID, $tagID, $dateFrom, $dateTo, $year, $monthNumber) |
|
54 | + ->Sort('Date', 'DESC'); |
|
55 | + } |
|
56 | 56 | } |
@@ -6,13 +6,13 @@ |
||
6 | 6 | |
7 | 7 | class SitemapPage extends Page |
8 | 8 | { |
9 | - private static $description = 'Lists all pages on the site'; |
|
9 | + private static $description = 'Lists all pages on the site'; |
|
10 | 10 | |
11 | - private static $singular_name = 'Sitemap Page'; |
|
11 | + private static $singular_name = 'Sitemap Page'; |
|
12 | 12 | |
13 | - private static $plural_name = 'Sitemap Pages'; |
|
13 | + private static $plural_name = 'Sitemap Pages'; |
|
14 | 14 | |
15 | - private static $table_name = 'SitemapPage'; |
|
15 | + private static $table_name = 'SitemapPage'; |
|
16 | 16 | |
17 | - private static $icon_class = 'font-icon-sitemap'; |
|
17 | + private static $icon_class = 'font-icon-sitemap'; |
|
18 | 18 | } |
@@ -7,57 +7,57 @@ |
||
7 | 7 | |
8 | 8 | class EventHolder extends DatedUpdateHolder |
9 | 9 | { |
10 | - private static $description = 'Container page for Event Pages, provides event filtering and pagination'; |
|
11 | - |
|
12 | - private static $allowed_children = [ |
|
13 | - EventPage::class, |
|
14 | - ]; |
|
15 | - |
|
16 | - private static $default_child = EventPage::class; |
|
17 | - |
|
18 | - private static $update_name = 'Events'; |
|
19 | - |
|
20 | - private static $update_class = EventPage::class; |
|
21 | - |
|
22 | - private static $icon_class = 'font-icon-p-event-alt'; |
|
23 | - |
|
24 | - private static $singular_name = 'Event Holder'; |
|
25 | - |
|
26 | - private static $plural_name = 'Event Holders'; |
|
27 | - |
|
28 | - private static $table_name = 'EventHolder'; |
|
29 | - |
|
30 | - /** |
|
31 | - * Find all site's news items, based on some filters. |
|
32 | - * Omitting parameters will prevent relevant filters from being applied. The filters are ANDed together. |
|
33 | - * |
|
34 | - * @param string $className The name of the class to fetch. |
|
35 | - * @param int $parentID The ID of the holder to extract the news items from. |
|
36 | - * @param int $tagID The ID of the tag to filter the news items by. |
|
37 | - * @param string $dateFrom The beginning of a date filter range. |
|
38 | - * @param string $dateTo The end of the date filter range. If empty, only one day will be searched for. |
|
39 | - * @param int $year Numeric value of the year to show. |
|
40 | - * @param int $monthNumber Numeric value of the month to show. |
|
41 | - * |
|
42 | - * @returns DataList|PaginatedList |
|
43 | - */ |
|
44 | - public static function AllUpdates( |
|
45 | - $className = 'Events', |
|
46 | - $parentID = null, |
|
47 | - $tagID = null, |
|
48 | - $dateFrom = null, |
|
49 | - $dateTo = null, |
|
50 | - $year = null, |
|
51 | - $monthNumber = null |
|
52 | - ) { |
|
53 | - return parent::AllUpdates( |
|
54 | - $className, |
|
55 | - $parentID, |
|
56 | - $tagID, |
|
57 | - $dateFrom, |
|
58 | - $dateTo, |
|
59 | - $year, |
|
60 | - $monthNumber |
|
61 | - )->Sort('Date', 'ASC'); |
|
62 | - } |
|
10 | + private static $description = 'Container page for Event Pages, provides event filtering and pagination'; |
|
11 | + |
|
12 | + private static $allowed_children = [ |
|
13 | + EventPage::class, |
|
14 | + ]; |
|
15 | + |
|
16 | + private static $default_child = EventPage::class; |
|
17 | + |
|
18 | + private static $update_name = 'Events'; |
|
19 | + |
|
20 | + private static $update_class = EventPage::class; |
|
21 | + |
|
22 | + private static $icon_class = 'font-icon-p-event-alt'; |
|
23 | + |
|
24 | + private static $singular_name = 'Event Holder'; |
|
25 | + |
|
26 | + private static $plural_name = 'Event Holders'; |
|
27 | + |
|
28 | + private static $table_name = 'EventHolder'; |
|
29 | + |
|
30 | + /** |
|
31 | + * Find all site's news items, based on some filters. |
|
32 | + * Omitting parameters will prevent relevant filters from being applied. The filters are ANDed together. |
|
33 | + * |
|
34 | + * @param string $className The name of the class to fetch. |
|
35 | + * @param int $parentID The ID of the holder to extract the news items from. |
|
36 | + * @param int $tagID The ID of the tag to filter the news items by. |
|
37 | + * @param string $dateFrom The beginning of a date filter range. |
|
38 | + * @param string $dateTo The end of the date filter range. If empty, only one day will be searched for. |
|
39 | + * @param int $year Numeric value of the year to show. |
|
40 | + * @param int $monthNumber Numeric value of the month to show. |
|
41 | + * |
|
42 | + * @returns DataList|PaginatedList |
|
43 | + */ |
|
44 | + public static function AllUpdates( |
|
45 | + $className = 'Events', |
|
46 | + $parentID = null, |
|
47 | + $tagID = null, |
|
48 | + $dateFrom = null, |
|
49 | + $dateTo = null, |
|
50 | + $year = null, |
|
51 | + $monthNumber = null |
|
52 | + ) { |
|
53 | + return parent::AllUpdates( |
|
54 | + $className, |
|
55 | + $parentID, |
|
56 | + $tagID, |
|
57 | + $dateFrom, |
|
58 | + $dateTo, |
|
59 | + $year, |
|
60 | + $monthNumber |
|
61 | + )->Sort('Date', 'ASC'); |
|
62 | + } |
|
63 | 63 | } |