@@ -5,41 +5,41 @@ |
||
5 | 5 | */ |
6 | 6 | class CwpSiteSummaryExtension extends Extension |
7 | 7 | { |
8 | - /** |
|
9 | - * Updates the modules used for the version label by: |
|
10 | - * - Removing SS Framework |
|
11 | - * - Adding CWP |
|
12 | - * - Relabelling SS CMS |
|
13 | - * |
|
14 | - * @param array $modules |
|
15 | - */ |
|
16 | - public function updateVersionModules(&$modules) |
|
17 | - { |
|
18 | - unset($modules['silverstripe/framework']); |
|
19 | - $modules = ['cwp/cwp' => 'CWP'] + $modules; |
|
20 | - $modules['silverstripe/cms'] = 'SilverStripe CMS'; |
|
21 | - } |
|
8 | + /** |
|
9 | + * Updates the modules used for the version label by: |
|
10 | + * - Removing SS Framework |
|
11 | + * - Adding CWP |
|
12 | + * - Relabelling SS CMS |
|
13 | + * |
|
14 | + * @param array $modules |
|
15 | + */ |
|
16 | + public function updateVersionModules(&$modules) |
|
17 | + { |
|
18 | + unset($modules['silverstripe/framework']); |
|
19 | + $modules = ['cwp/cwp' => 'CWP'] + $modules; |
|
20 | + $modules['silverstripe/cms'] = 'SilverStripe CMS'; |
|
21 | + } |
|
22 | 22 | |
23 | - /** |
|
24 | - * Updates the dropdown filter used to filter supported packages by renaming the labels (replaces the existing |
|
25 | - * filter options) |
|
26 | - * |
|
27 | - * @param GridFieldDropdownFilter $dropdownFilter |
|
28 | - */ |
|
29 | - public function updateDropdownFilterOptions($dropdownFilter) |
|
30 | - { |
|
31 | - $dropdownFilter->removeFilterOption('supported'); |
|
32 | - $dropdownFilter->removeFilterOption('unsupported'); |
|
23 | + /** |
|
24 | + * Updates the dropdown filter used to filter supported packages by renaming the labels (replaces the existing |
|
25 | + * filter options) |
|
26 | + * |
|
27 | + * @param GridFieldDropdownFilter $dropdownFilter |
|
28 | + */ |
|
29 | + public function updateDropdownFilterOptions($dropdownFilter) |
|
30 | + { |
|
31 | + $dropdownFilter->removeFilterOption('supported'); |
|
32 | + $dropdownFilter->removeFilterOption('unsupported'); |
|
33 | 33 | |
34 | - $dropdownFilter->addFilterOption( |
|
35 | - 'supported', |
|
36 | - _t(__CLASS__ . '.FilterSupported', 'CWP recipe modules'), |
|
37 | - ['Supported' => true] |
|
38 | - ); |
|
39 | - $dropdownFilter->addFilterOption( |
|
40 | - 'unsupported', |
|
41 | - _t(__CLASS__ . '.FilterUnsupported', 'Non CWP modules'), |
|
42 | - ['Supported' => false] |
|
43 | - ); |
|
44 | - } |
|
34 | + $dropdownFilter->addFilterOption( |
|
35 | + 'supported', |
|
36 | + _t(__CLASS__ . '.FilterSupported', 'CWP recipe modules'), |
|
37 | + ['Supported' => true] |
|
38 | + ); |
|
39 | + $dropdownFilter->addFilterOption( |
|
40 | + 'unsupported', |
|
41 | + _t(__CLASS__ . '.FilterUnsupported', 'Non CWP modules'), |
|
42 | + ['Supported' => false] |
|
43 | + ); |
|
44 | + } |
|
45 | 45 | } |
@@ -13,48 +13,48 @@ |
||
13 | 13 | */ |
14 | 14 | class MaintenanceProxyExtension extends Extension |
15 | 15 | { |
16 | - /** |
|
17 | - * Configures required environment settings for Composer's use, applies to |
|
18 | - * {@link \BringYourOwnIdeas\Maintenance\Util\ComposerLoader} and is applied before ComposerLoaderExtension in |
|
19 | - * bringyourownideas/silverstripe-composer-update-checker to ensure the proxy information is set before Composer |
|
20 | - * is created |
|
21 | - */ |
|
22 | - public function onAfterBuild() |
|
23 | - { |
|
24 | - // Provide access for Composer's StreamContextFactory, since it creates its own stream context |
|
25 | - if ($proxy = $this->getCwpProxy()) { |
|
26 | - $_SERVER['CGI_HTTP_PROXY'] = $proxy; |
|
27 | - } |
|
28 | - } |
|
16 | + /** |
|
17 | + * Configures required environment settings for Composer's use, applies to |
|
18 | + * {@link \BringYourOwnIdeas\Maintenance\Util\ComposerLoader} and is applied before ComposerLoaderExtension in |
|
19 | + * bringyourownideas/silverstripe-composer-update-checker to ensure the proxy information is set before Composer |
|
20 | + * is created |
|
21 | + */ |
|
22 | + public function onAfterBuild() |
|
23 | + { |
|
24 | + // Provide access for Composer's StreamContextFactory, since it creates its own stream context |
|
25 | + if ($proxy = $this->getCwpProxy()) { |
|
26 | + $_SERVER['CGI_HTTP_PROXY'] = $proxy; |
|
27 | + } |
|
28 | + } |
|
29 | 29 | |
30 | - /** |
|
31 | - * Provide proxy options for {@link \BringYourOwnIdeas\Maintenance\Util\ApiLoader} instances to use in |
|
32 | - * their Guzzle clients |
|
33 | - * |
|
34 | - * @param array $options |
|
35 | - */ |
|
36 | - public function updateClientOptions(&$options) |
|
37 | - { |
|
38 | - if ($proxy = $this->getCwpProxy()) { |
|
39 | - $options['proxy'] = $proxy; |
|
40 | - } |
|
41 | - } |
|
30 | + /** |
|
31 | + * Provide proxy options for {@link \BringYourOwnIdeas\Maintenance\Util\ApiLoader} instances to use in |
|
32 | + * their Guzzle clients |
|
33 | + * |
|
34 | + * @param array $options |
|
35 | + */ |
|
36 | + public function updateClientOptions(&$options) |
|
37 | + { |
|
38 | + if ($proxy = $this->getCwpProxy()) { |
|
39 | + $options['proxy'] = $proxy; |
|
40 | + } |
|
41 | + } |
|
42 | 42 | |
43 | - /** |
|
44 | - * Returns a formatted CWP proxy string, e.g. `tcp://proxy.cwp.govt.nz:1234` |
|
45 | - * |
|
46 | - * @return string |
|
47 | - */ |
|
48 | - protected function getCwpProxy() |
|
49 | - { |
|
50 | - if (!Environment::getEnv('SS_OUTBOUND_PROXY') || !Environment::getEnv('SS_OUTBOUND_PROXY_PORT')) { |
|
51 | - return ''; |
|
52 | - } |
|
43 | + /** |
|
44 | + * Returns a formatted CWP proxy string, e.g. `tcp://proxy.cwp.govt.nz:1234` |
|
45 | + * |
|
46 | + * @return string |
|
47 | + */ |
|
48 | + protected function getCwpProxy() |
|
49 | + { |
|
50 | + if (!Environment::getEnv('SS_OUTBOUND_PROXY') || !Environment::getEnv('SS_OUTBOUND_PROXY_PORT')) { |
|
51 | + return ''; |
|
52 | + } |
|
53 | 53 | |
54 | - return sprintf( |
|
55 | - 'tcp://%s:%d', |
|
56 | - Environment::getEnv('SS_OUTBOUND_PROXY'), |
|
57 | - Environment::getEnv('SS_OUTBOUND_PROXY_PORT') |
|
58 | - ); |
|
59 | - } |
|
54 | + return sprintf( |
|
55 | + 'tcp://%s:%d', |
|
56 | + Environment::getEnv('SS_OUTBOUND_PROXY'), |
|
57 | + Environment::getEnv('SS_OUTBOUND_PROXY_PORT') |
|
58 | + ); |
|
59 | + } |
|
60 | 60 | } |
@@ -11,42 +11,42 @@ |
||
11 | 11 | |
12 | 12 | class CwpStatsReportTest extends SapphireTest |
13 | 13 | { |
14 | - protected static $fixture_file = 'CwpStatsReportTest.yml'; |
|
15 | - |
|
16 | - protected function setUp() |
|
17 | - { |
|
18 | - Config::modify()->set(SiteTree::class, 'create_default_pages', false); |
|
19 | - |
|
20 | - parent::setUp(); |
|
21 | - } |
|
22 | - |
|
23 | - public function testCount() |
|
24 | - { |
|
25 | - // Publish all pages apart from page3. |
|
26 | - $this->objFromFixture(Page::class, 'page1')->publishRecursive(); |
|
27 | - $this->objFromFixture(Page::class, 'page2')->publishRecursive(); |
|
28 | - $this->objFromFixture(Page::class, 'page3')->publishRecursive(); |
|
29 | - |
|
30 | - // Add page5s to a subsite, if the module is installed. |
|
31 | - $page5s = $this->objFromFixture(Page::class, 'page5s'); |
|
32 | - if (class_exists(Subsite::class)) { |
|
33 | - $subsite = Subsite::create(); |
|
34 | - $subsite->Title = 'subsite'; |
|
35 | - $subsite->write(); |
|
36 | - |
|
37 | - $page5s->SubsiteID = $subsite->ID; |
|
38 | - $page5s->write(); |
|
39 | - } |
|
40 | - $page5s->publishRecursive(); |
|
41 | - |
|
42 | - $report = CwpStatsReport::create(); |
|
43 | - $records = $report->sourceRecords([])->toArray(); |
|
44 | - $i = 0; |
|
45 | - $this->assertEquals(4, $records[$i++]['Count'], 'Four pages in total, across locales, subsites, live only.'); |
|
46 | - if (class_exists(Subsite::class)) { |
|
47 | - $this->assertEquals(3, $records[$i++]['Count'], 'Three pages in the main site, if subsites installed.'); |
|
48 | - $this->assertEquals(1, $records[$i++]['Count'], 'One page in the subsite, if subsites installed'); |
|
49 | - } |
|
50 | - $this->assertEquals(1, $records[$i++]['Count'], 'One file in total.'); |
|
51 | - } |
|
14 | + protected static $fixture_file = 'CwpStatsReportTest.yml'; |
|
15 | + |
|
16 | + protected function setUp() |
|
17 | + { |
|
18 | + Config::modify()->set(SiteTree::class, 'create_default_pages', false); |
|
19 | + |
|
20 | + parent::setUp(); |
|
21 | + } |
|
22 | + |
|
23 | + public function testCount() |
|
24 | + { |
|
25 | + // Publish all pages apart from page3. |
|
26 | + $this->objFromFixture(Page::class, 'page1')->publishRecursive(); |
|
27 | + $this->objFromFixture(Page::class, 'page2')->publishRecursive(); |
|
28 | + $this->objFromFixture(Page::class, 'page3')->publishRecursive(); |
|
29 | + |
|
30 | + // Add page5s to a subsite, if the module is installed. |
|
31 | + $page5s = $this->objFromFixture(Page::class, 'page5s'); |
|
32 | + if (class_exists(Subsite::class)) { |
|
33 | + $subsite = Subsite::create(); |
|
34 | + $subsite->Title = 'subsite'; |
|
35 | + $subsite->write(); |
|
36 | + |
|
37 | + $page5s->SubsiteID = $subsite->ID; |
|
38 | + $page5s->write(); |
|
39 | + } |
|
40 | + $page5s->publishRecursive(); |
|
41 | + |
|
42 | + $report = CwpStatsReport::create(); |
|
43 | + $records = $report->sourceRecords([])->toArray(); |
|
44 | + $i = 0; |
|
45 | + $this->assertEquals(4, $records[$i++]['Count'], 'Four pages in total, across locales, subsites, live only.'); |
|
46 | + if (class_exists(Subsite::class)) { |
|
47 | + $this->assertEquals(3, $records[$i++]['Count'], 'Three pages in the main site, if subsites installed.'); |
|
48 | + $this->assertEquals(1, $records[$i++]['Count'], 'One page in the subsite, if subsites installed'); |
|
49 | + } |
|
50 | + $this->assertEquals(1, $records[$i++]['Count'], 'One file in total.'); |
|
51 | + } |
|
52 | 52 | } |
@@ -14,20 +14,20 @@ |
||
14 | 14 | */ |
15 | 15 | class CwpCommentingExtension extends Extension |
16 | 16 | { |
17 | - public function alterCommentForm(Form $form) |
|
18 | - { |
|
19 | - $fields = $form->Fields(); |
|
17 | + public function alterCommentForm(Form $form) |
|
18 | + { |
|
19 | + $fields = $form->Fields(); |
|
20 | 20 | |
21 | - if ($emailField = $fields->dataFieldByName('Email')) { |
|
22 | - $emailField |
|
23 | - ->setTitle(_t(__CLASS__ . '.EMAIL_TITLE', 'Email')) |
|
24 | - ->setDescription(_t(__CLASS__ . '.WILL_NOT_BE_PUBLISHED', 'Will not be published.')); |
|
25 | - } |
|
21 | + if ($emailField = $fields->dataFieldByName('Email')) { |
|
22 | + $emailField |
|
23 | + ->setTitle(_t(__CLASS__ . '.EMAIL_TITLE', 'Email')) |
|
24 | + ->setDescription(_t(__CLASS__ . '.WILL_NOT_BE_PUBLISHED', 'Will not be published.')); |
|
25 | + } |
|
26 | 26 | |
27 | - if ($urlField = $fields->dataFieldByName('URL')) { |
|
28 | - $urlField |
|
29 | - ->setTitle(_t(__CLASS__ . '.WEBSITE_TITLE', 'Your website (optional)')) |
|
30 | - ->setAttribute('placeholder', 'http://'); |
|
31 | - } |
|
32 | - } |
|
27 | + if ($urlField = $fields->dataFieldByName('URL')) { |
|
28 | + $urlField |
|
29 | + ->setTitle(_t(__CLASS__ . '.WEBSITE_TITLE', 'Your website (optional)')) |
|
30 | + ->setAttribute('placeholder', 'http://'); |
|
31 | + } |
|
32 | + } |
|
33 | 33 | } |
@@ -8,30 +8,30 @@ |
||
8 | 8 | |
9 | 9 | class RelatedPageLink extends DataObject |
10 | 10 | { |
11 | - private static $table_name = 'BasePage_RelatedPages'; |
|
11 | + private static $table_name = 'BasePage_RelatedPages'; |
|
12 | 12 | |
13 | - private static $extensions = [ |
|
14 | - Versioned::class, |
|
15 | - ]; |
|
13 | + private static $extensions = [ |
|
14 | + Versioned::class, |
|
15 | + ]; |
|
16 | 16 | |
17 | - private static $db = [ |
|
18 | - 'SortOrder' => 'Int', |
|
19 | - ]; |
|
17 | + private static $db = [ |
|
18 | + 'SortOrder' => 'Int', |
|
19 | + ]; |
|
20 | 20 | |
21 | - /** |
|
22 | - * For backwards compatibility these must match a traditional 'many_many' definition. |
|
23 | - * This was BasePage.RelatedPages => BasePage |
|
24 | - * ManyMany relations are normally joined by ${DefiningClass}ID && ${RelatedClass}ID |
|
25 | - * excepting in the case where ${DefiningClass} === ${RelatedClass} |
|
26 | - * Then the 'related class' column changes from ${RelatedClass}ID to "ChildID". |
|
27 | - * |
|
28 | - * {@see SilverStripe\ORM\DataObjectSchema->parseManyManyComponent()} |
|
29 | - * |
|
30 | - * @var array |
|
31 | - * @config |
|
32 | - */ |
|
33 | - private static $has_one = [ |
|
34 | - 'BasePage' => BasePage::class, |
|
35 | - 'Child' => BasePage::class, |
|
36 | - ]; |
|
21 | + /** |
|
22 | + * For backwards compatibility these must match a traditional 'many_many' definition. |
|
23 | + * This was BasePage.RelatedPages => BasePage |
|
24 | + * ManyMany relations are normally joined by ${DefiningClass}ID && ${RelatedClass}ID |
|
25 | + * excepting in the case where ${DefiningClass} === ${RelatedClass} |
|
26 | + * Then the 'related class' column changes from ${RelatedClass}ID to "ChildID". |
|
27 | + * |
|
28 | + * {@see SilverStripe\ORM\DataObjectSchema->parseManyManyComponent()} |
|
29 | + * |
|
30 | + * @var array |
|
31 | + * @config |
|
32 | + */ |
|
33 | + private static $has_one = [ |
|
34 | + 'BasePage' => BasePage::class, |
|
35 | + 'Child' => BasePage::class, |
|
36 | + ]; |
|
37 | 37 | } |
@@ -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 | } |
@@ -12,81 +12,81 @@ |
||
12 | 12 | |
13 | 13 | class EventPage extends DatedUpdatePage |
14 | 14 | { |
15 | - private static $description = 'Describes an event occurring on a specific date.'; |
|
16 | - |
|
17 | - private static $default_parent = EventHolder::class; |
|
18 | - |
|
19 | - private static $can_be_root = false; |
|
20 | - |
|
21 | - private static $icon_class = 'font-icon-p-event'; |
|
22 | - |
|
23 | - private static $singular_name = 'Event Page'; |
|
24 | - |
|
25 | - private static $plural_name = 'Event Pages'; |
|
26 | - |
|
27 | - private static $db = [ |
|
28 | - 'StartTime' => 'Time', |
|
29 | - 'EndTime' => 'Time', |
|
30 | - 'Location' => 'Text', |
|
31 | - ]; |
|
32 | - |
|
33 | - private static $table_name = 'EventPage'; |
|
34 | - |
|
35 | - public function fieldLabels($includerelations = true) |
|
36 | - { |
|
37 | - $labels = parent::fieldLabels($includerelations); |
|
38 | - $labels['StartTime'] = _t('CWP\\CWP\\PageTypes\\DateUpdatePage.StartTimeFieldLabel', 'Start Time'); |
|
39 | - $labels['EndTime'] = _t('CWP\\CWP\\PageTypes\\DateUpdatePage.EndTimeFieldLabel', 'End Time'); |
|
40 | - $labels['Location'] = _t('CWP\\CWP\\PageTypes\\DateUpdatePage.LocationFieldLabel', 'Location'); |
|
41 | - |
|
42 | - return $labels; |
|
43 | - } |
|
44 | - |
|
45 | - /** |
|
46 | - * Add the default for the Date being the current day. |
|
47 | - */ |
|
48 | - public function populateDefaults() |
|
49 | - { |
|
50 | - if (!isset($this->Date) || $this->Date === null) { |
|
51 | - $this->Date = DBDatetime::now()->Format('y-MM-dd'); |
|
52 | - } |
|
53 | - |
|
54 | - if (!isset($this->StartTime) || $this->StartTime === null) { |
|
55 | - $this->StartTime = '09:00:00'; |
|
56 | - } |
|
57 | - |
|
58 | - if (!isset($this->EndTime) || $this->EndTime === null) { |
|
59 | - $this->EndTime = '17:00:00'; |
|
60 | - } |
|
61 | - |
|
62 | - parent::populateDefaults(); |
|
63 | - } |
|
64 | - |
|
65 | - public function getCMSFields() |
|
66 | - { |
|
67 | - $this->beforeUpdateCMSFields(function (FieldList $fields) { |
|
68 | - $fields->removeByName('Date'); |
|
69 | - |
|
70 | - $dateTimeFields = array(); |
|
71 | - |
|
72 | - $dateTimeFields[] = $dateField = DateField::create('Date', 'Date'); |
|
73 | - $dateTimeFields[] = $startTimeField = TimeField::create( |
|
74 | - 'StartTime', |
|
75 | - $this->fieldLabel('StartTime') |
|
76 | - ); |
|
77 | - $dateTimeFields[] = $endTimeField = TimeField::create('EndTime', $this->fieldLabel('EndTime')); |
|
78 | - |
|
79 | - $fields->addFieldsToTab('Root.Main', [ |
|
80 | - $dateTimeField = FieldGroup::create('Date and time', $dateTimeFields), |
|
81 | - $locationField = TextareaField::create('Location', $this->fieldLabel('Location')) |
|
82 | - ], 'Abstract'); |
|
83 | - $locationField->setRows(4); |
|
84 | - }); |
|
85 | - return parent::getCMSFields(); |
|
86 | - } |
|
87 | - |
|
88 | - public function NiceLocation() |
|
89 | - { |
|
90 | - return nl2br(Convert::raw2xml($this->Location), true); |
|
91 | - } |
|
15 | + private static $description = 'Describes an event occurring on a specific date.'; |
|
16 | + |
|
17 | + private static $default_parent = EventHolder::class; |
|
18 | + |
|
19 | + private static $can_be_root = false; |
|
20 | + |
|
21 | + private static $icon_class = 'font-icon-p-event'; |
|
22 | + |
|
23 | + private static $singular_name = 'Event Page'; |
|
24 | + |
|
25 | + private static $plural_name = 'Event Pages'; |
|
26 | + |
|
27 | + private static $db = [ |
|
28 | + 'StartTime' => 'Time', |
|
29 | + 'EndTime' => 'Time', |
|
30 | + 'Location' => 'Text', |
|
31 | + ]; |
|
32 | + |
|
33 | + private static $table_name = 'EventPage'; |
|
34 | + |
|
35 | + public function fieldLabels($includerelations = true) |
|
36 | + { |
|
37 | + $labels = parent::fieldLabels($includerelations); |
|
38 | + $labels['StartTime'] = _t('CWP\\CWP\\PageTypes\\DateUpdatePage.StartTimeFieldLabel', 'Start Time'); |
|
39 | + $labels['EndTime'] = _t('CWP\\CWP\\PageTypes\\DateUpdatePage.EndTimeFieldLabel', 'End Time'); |
|
40 | + $labels['Location'] = _t('CWP\\CWP\\PageTypes\\DateUpdatePage.LocationFieldLabel', 'Location'); |
|
41 | + |
|
42 | + return $labels; |
|
43 | + } |
|
44 | + |
|
45 | + /** |
|
46 | + * Add the default for the Date being the current day. |
|
47 | + */ |
|
48 | + public function populateDefaults() |
|
49 | + { |
|
50 | + if (!isset($this->Date) || $this->Date === null) { |
|
51 | + $this->Date = DBDatetime::now()->Format('y-MM-dd'); |
|
52 | + } |
|
53 | + |
|
54 | + if (!isset($this->StartTime) || $this->StartTime === null) { |
|
55 | + $this->StartTime = '09:00:00'; |
|
56 | + } |
|
57 | + |
|
58 | + if (!isset($this->EndTime) || $this->EndTime === null) { |
|
59 | + $this->EndTime = '17:00:00'; |
|
60 | + } |
|
61 | + |
|
62 | + parent::populateDefaults(); |
|
63 | + } |
|
64 | + |
|
65 | + public function getCMSFields() |
|
66 | + { |
|
67 | + $this->beforeUpdateCMSFields(function (FieldList $fields) { |
|
68 | + $fields->removeByName('Date'); |
|
69 | + |
|
70 | + $dateTimeFields = array(); |
|
71 | + |
|
72 | + $dateTimeFields[] = $dateField = DateField::create('Date', 'Date'); |
|
73 | + $dateTimeFields[] = $startTimeField = TimeField::create( |
|
74 | + 'StartTime', |
|
75 | + $this->fieldLabel('StartTime') |
|
76 | + ); |
|
77 | + $dateTimeFields[] = $endTimeField = TimeField::create('EndTime', $this->fieldLabel('EndTime')); |
|
78 | + |
|
79 | + $fields->addFieldsToTab('Root.Main', [ |
|
80 | + $dateTimeField = FieldGroup::create('Date and time', $dateTimeFields), |
|
81 | + $locationField = TextareaField::create('Location', $this->fieldLabel('Location')) |
|
82 | + ], 'Abstract'); |
|
83 | + $locationField->setRows(4); |
|
84 | + }); |
|
85 | + return parent::getCMSFields(); |
|
86 | + } |
|
87 | + |
|
88 | + public function NiceLocation() |
|
89 | + { |
|
90 | + return nl2br(Convert::raw2xml($this->Location), true); |
|
91 | + } |
|
92 | 92 | } |
@@ -26,137 +26,137 @@ |
||
26 | 26 | */ |
27 | 27 | class BaseHomePage extends Page |
28 | 28 | { |
29 | - private static $icon_class = 'font-icon-p-home'; |
|
30 | - |
|
31 | - private static $hide_ancestor = BaseHomePage::class; |
|
32 | - |
|
33 | - private static $singular_name = 'Home Page'; |
|
34 | - |
|
35 | - private static $plural_name = 'Home Pages'; |
|
36 | - |
|
37 | - private static $table_name = 'BaseHomePage'; |
|
38 | - |
|
39 | - private static $db = [ |
|
40 | - 'FeatureOneTitle' => 'Varchar(255)', |
|
41 | - 'FeatureOneCategory' => "Enum('bell,comments,film,flag,globe,group,list,phone,rss,time,user','comments')", |
|
42 | - 'FeatureOneContent' => 'HTMLText', |
|
43 | - 'FeatureOneButtonText' => 'Varchar(255)', |
|
44 | - 'FeatureTwoTitle' => 'Varchar(255)', |
|
45 | - 'FeatureTwoCategory' => "Enum('bell,comments,film,flag,globe,group,list,phone,rss,time,user','comments')", |
|
46 | - 'FeatureTwoContent' => 'HTMLText', |
|
47 | - 'FeatureTwoButtonText' => 'Varchar(255)' |
|
48 | - ]; |
|
49 | - |
|
50 | - private static $has_one = [ |
|
51 | - 'LearnMorePage' => SiteTree::class, |
|
52 | - 'FeatureOneLink' => SiteTree::class, |
|
53 | - 'FeatureTwoLink' => SiteTree::class, |
|
54 | - ]; |
|
55 | - |
|
56 | - private static $has_many = [ |
|
57 | - 'Quicklinks' => Quicklink::class . '.Parent', |
|
58 | - ]; |
|
59 | - |
|
60 | - public function Quicklinks() |
|
61 | - { |
|
62 | - return $this->getComponents('Quicklinks')->sort('SortOrder'); |
|
63 | - } |
|
64 | - |
|
65 | - public function getCMSFields() |
|
66 | - { |
|
67 | - $this->beforeUpdateCMSFields(function (FieldList $fields) { |
|
68 | - // Main Content tab |
|
69 | - $fields->addFieldToTab( |
|
70 | - 'Root.Main', |
|
71 | - TreeDropdownField::create( |
|
72 | - 'LearnMorePageID', |
|
73 | - _t(__CLASS__ . '.LearnMoreLink', 'Page to link the "Learn More" button to:'), |
|
74 | - SiteTree::class |
|
75 | - ), |
|
76 | - 'Metadata' |
|
77 | - ); |
|
78 | - |
|
79 | - $gridField = GridField::create( |
|
80 | - 'Quicklinks', |
|
81 | - 'Quicklinks', |
|
82 | - $this->Quicklinks(), |
|
83 | - GridFieldConfig_RelationEditor::create() |
|
84 | - ); |
|
85 | - $gridConfig = $gridField->getConfig(); |
|
86 | - $gridConfig->getComponentByType(GridFieldAddNewButton::class)->setButtonName( |
|
87 | - _t(__CLASS__ . '.AddNewButton', 'Add new') |
|
88 | - ); |
|
89 | - |
|
90 | - $injector = Injector::inst(); |
|
91 | - |
|
92 | - $gridConfig->removeComponentsByType(GridFieldAddExistingAutocompleter::class); |
|
93 | - $gridConfig->removeComponentsByType(GridFieldDeleteAction::class); |
|
94 | - $gridConfig->addComponent($injector->create(GridFieldDeleteAction::class)); |
|
95 | - $gridConfig->addComponent($injector->create(GridFieldOrderableRows::class, 'SortOrder')); |
|
96 | - $gridField->setModelClass(Quicklink::class); |
|
97 | - |
|
98 | - $fields->addFieldToTab('Root.Quicklinks', $gridField); |
|
99 | - |
|
100 | - $fields->removeByName('Import'); |
|
101 | - |
|
102 | - $fields->addFieldToTab( |
|
103 | - 'Root.Features', |
|
104 | - ToggleCompositeField::create( |
|
105 | - 'FeatureOne', |
|
106 | - _t(__CLASS__ . '.FeatureOne', 'Feature One'), |
|
107 | - array( |
|
108 | - TextField::create('FeatureOneTitle', _t(__CLASS__ . '.Title', 'Title')), |
|
109 | - $dropdownField = DropdownField::create( |
|
110 | - 'FeatureOneCategory', |
|
111 | - _t(__CLASS__ . '.FeatureCategoryDropdown', 'Category icon'), |
|
112 | - singleton(BaseHomePage::class)->dbObject('FeatureOneCategory')->enumValues() |
|
113 | - ), |
|
114 | - HTMLEditorField::create( |
|
115 | - 'FeatureOneContent', |
|
116 | - _t(__CLASS__ . '.FeatureContentFieldLabel', 'Content') |
|
117 | - ), |
|
118 | - TextField::create( |
|
119 | - 'FeatureOneButtonText', |
|
120 | - _t(__CLASS__ . '.FeatureButtonText', 'Button text') |
|
121 | - ), |
|
122 | - TreeDropdownField::create( |
|
123 | - 'FeatureOneLinkID', |
|
124 | - _t(__CLASS__ . '.FeatureLink', 'Page to link to'), |
|
125 | - SiteTree::class |
|
126 | - )->setDescription(_t(__CLASS__ . '.ButtonTextRequired', 'Button text must be filled in')) |
|
127 | - ) |
|
128 | - )->setHeadingLevel(3) |
|
129 | - ); |
|
130 | - $dropdownField->setEmptyString('none'); |
|
131 | - |
|
132 | - $fields->addFieldToTab('Root.Features', ToggleCompositeField::create( |
|
133 | - 'FeatureTwo', |
|
134 | - _t(__CLASS__ . '.FeatureTwo', 'Feature Two'), |
|
135 | - array( |
|
136 | - TextField::create('FeatureTwoTitle', _t(__CLASS__ . '.Title', 'Title')), |
|
137 | - $dropdownField = DropdownField::create( |
|
138 | - 'FeatureTwoCategory', |
|
139 | - _t(__CLASS__ . '.FeatureCategoryDropdown', 'Category icon'), |
|
140 | - singleton(BaseHomePage::class)->dbObject('FeatureTwoCategory')->enumValues() |
|
141 | - ), |
|
142 | - HTMLEditorField::create( |
|
143 | - 'FeatureTwoContent', |
|
144 | - _t(__CLASS__ . '.FeatureContentFieldLabel', 'Content') |
|
145 | - ), |
|
146 | - TextField::create( |
|
147 | - 'FeatureTwoButtonText', |
|
148 | - _t(__CLASS__ . '.FeatureButtonText', 'Button text') |
|
149 | - ), |
|
150 | - TreeDropdownField::create( |
|
151 | - 'FeatureTwoLinkID', |
|
152 | - _t(__CLASS__ . '.FeatureLink', 'Page to link to'), |
|
153 | - SiteTree::class |
|
154 | - )->setDescription(_t(__CLASS__ . '.ButtonTextRequired', 'Button text must be filled in')) |
|
155 | - ) |
|
156 | - )->setHeadingLevel(3)); |
|
157 | - $dropdownField->setEmptyString('none'); |
|
158 | - }); |
|
159 | - |
|
160 | - return parent::getCMSFields(); |
|
161 | - } |
|
29 | + private static $icon_class = 'font-icon-p-home'; |
|
30 | + |
|
31 | + private static $hide_ancestor = BaseHomePage::class; |
|
32 | + |
|
33 | + private static $singular_name = 'Home Page'; |
|
34 | + |
|
35 | + private static $plural_name = 'Home Pages'; |
|
36 | + |
|
37 | + private static $table_name = 'BaseHomePage'; |
|
38 | + |
|
39 | + private static $db = [ |
|
40 | + 'FeatureOneTitle' => 'Varchar(255)', |
|
41 | + 'FeatureOneCategory' => "Enum('bell,comments,film,flag,globe,group,list,phone,rss,time,user','comments')", |
|
42 | + 'FeatureOneContent' => 'HTMLText', |
|
43 | + 'FeatureOneButtonText' => 'Varchar(255)', |
|
44 | + 'FeatureTwoTitle' => 'Varchar(255)', |
|
45 | + 'FeatureTwoCategory' => "Enum('bell,comments,film,flag,globe,group,list,phone,rss,time,user','comments')", |
|
46 | + 'FeatureTwoContent' => 'HTMLText', |
|
47 | + 'FeatureTwoButtonText' => 'Varchar(255)' |
|
48 | + ]; |
|
49 | + |
|
50 | + private static $has_one = [ |
|
51 | + 'LearnMorePage' => SiteTree::class, |
|
52 | + 'FeatureOneLink' => SiteTree::class, |
|
53 | + 'FeatureTwoLink' => SiteTree::class, |
|
54 | + ]; |
|
55 | + |
|
56 | + private static $has_many = [ |
|
57 | + 'Quicklinks' => Quicklink::class . '.Parent', |
|
58 | + ]; |
|
59 | + |
|
60 | + public function Quicklinks() |
|
61 | + { |
|
62 | + return $this->getComponents('Quicklinks')->sort('SortOrder'); |
|
63 | + } |
|
64 | + |
|
65 | + public function getCMSFields() |
|
66 | + { |
|
67 | + $this->beforeUpdateCMSFields(function (FieldList $fields) { |
|
68 | + // Main Content tab |
|
69 | + $fields->addFieldToTab( |
|
70 | + 'Root.Main', |
|
71 | + TreeDropdownField::create( |
|
72 | + 'LearnMorePageID', |
|
73 | + _t(__CLASS__ . '.LearnMoreLink', 'Page to link the "Learn More" button to:'), |
|
74 | + SiteTree::class |
|
75 | + ), |
|
76 | + 'Metadata' |
|
77 | + ); |
|
78 | + |
|
79 | + $gridField = GridField::create( |
|
80 | + 'Quicklinks', |
|
81 | + 'Quicklinks', |
|
82 | + $this->Quicklinks(), |
|
83 | + GridFieldConfig_RelationEditor::create() |
|
84 | + ); |
|
85 | + $gridConfig = $gridField->getConfig(); |
|
86 | + $gridConfig->getComponentByType(GridFieldAddNewButton::class)->setButtonName( |
|
87 | + _t(__CLASS__ . '.AddNewButton', 'Add new') |
|
88 | + ); |
|
89 | + |
|
90 | + $injector = Injector::inst(); |
|
91 | + |
|
92 | + $gridConfig->removeComponentsByType(GridFieldAddExistingAutocompleter::class); |
|
93 | + $gridConfig->removeComponentsByType(GridFieldDeleteAction::class); |
|
94 | + $gridConfig->addComponent($injector->create(GridFieldDeleteAction::class)); |
|
95 | + $gridConfig->addComponent($injector->create(GridFieldOrderableRows::class, 'SortOrder')); |
|
96 | + $gridField->setModelClass(Quicklink::class); |
|
97 | + |
|
98 | + $fields->addFieldToTab('Root.Quicklinks', $gridField); |
|
99 | + |
|
100 | + $fields->removeByName('Import'); |
|
101 | + |
|
102 | + $fields->addFieldToTab( |
|
103 | + 'Root.Features', |
|
104 | + ToggleCompositeField::create( |
|
105 | + 'FeatureOne', |
|
106 | + _t(__CLASS__ . '.FeatureOne', 'Feature One'), |
|
107 | + array( |
|
108 | + TextField::create('FeatureOneTitle', _t(__CLASS__ . '.Title', 'Title')), |
|
109 | + $dropdownField = DropdownField::create( |
|
110 | + 'FeatureOneCategory', |
|
111 | + _t(__CLASS__ . '.FeatureCategoryDropdown', 'Category icon'), |
|
112 | + singleton(BaseHomePage::class)->dbObject('FeatureOneCategory')->enumValues() |
|
113 | + ), |
|
114 | + HTMLEditorField::create( |
|
115 | + 'FeatureOneContent', |
|
116 | + _t(__CLASS__ . '.FeatureContentFieldLabel', 'Content') |
|
117 | + ), |
|
118 | + TextField::create( |
|
119 | + 'FeatureOneButtonText', |
|
120 | + _t(__CLASS__ . '.FeatureButtonText', 'Button text') |
|
121 | + ), |
|
122 | + TreeDropdownField::create( |
|
123 | + 'FeatureOneLinkID', |
|
124 | + _t(__CLASS__ . '.FeatureLink', 'Page to link to'), |
|
125 | + SiteTree::class |
|
126 | + )->setDescription(_t(__CLASS__ . '.ButtonTextRequired', 'Button text must be filled in')) |
|
127 | + ) |
|
128 | + )->setHeadingLevel(3) |
|
129 | + ); |
|
130 | + $dropdownField->setEmptyString('none'); |
|
131 | + |
|
132 | + $fields->addFieldToTab('Root.Features', ToggleCompositeField::create( |
|
133 | + 'FeatureTwo', |
|
134 | + _t(__CLASS__ . '.FeatureTwo', 'Feature Two'), |
|
135 | + array( |
|
136 | + TextField::create('FeatureTwoTitle', _t(__CLASS__ . '.Title', 'Title')), |
|
137 | + $dropdownField = DropdownField::create( |
|
138 | + 'FeatureTwoCategory', |
|
139 | + _t(__CLASS__ . '.FeatureCategoryDropdown', 'Category icon'), |
|
140 | + singleton(BaseHomePage::class)->dbObject('FeatureTwoCategory')->enumValues() |
|
141 | + ), |
|
142 | + HTMLEditorField::create( |
|
143 | + 'FeatureTwoContent', |
|
144 | + _t(__CLASS__ . '.FeatureContentFieldLabel', 'Content') |
|
145 | + ), |
|
146 | + TextField::create( |
|
147 | + 'FeatureTwoButtonText', |
|
148 | + _t(__CLASS__ . '.FeatureButtonText', 'Button text') |
|
149 | + ), |
|
150 | + TreeDropdownField::create( |
|
151 | + 'FeatureTwoLinkID', |
|
152 | + _t(__CLASS__ . '.FeatureLink', 'Page to link to'), |
|
153 | + SiteTree::class |
|
154 | + )->setDescription(_t(__CLASS__ . '.ButtonTextRequired', 'Button text must be filled in')) |
|
155 | + ) |
|
156 | + )->setHeadingLevel(3)); |
|
157 | + $dropdownField->setEmptyString('none'); |
|
158 | + }); |
|
159 | + |
|
160 | + return parent::getCMSFields(); |
|
161 | + } |
|
162 | 162 | } |
@@ -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 | } |