Skip to content
Snippets Groups Projects
Commit 03ef133c authored by Kristen Pol's avatar Kristen Pol
Browse files

Update content provisioning to be more generic.

parent aa68d054
Branches
Tags
No related merge requests found
Pipeline #249552 passed
......@@ -885,7 +885,7 @@ function _civictheme_provision__blocks__acknowledgment_of_country(array $block):
'type' => 'civictheme_content',
]);
$paragraph->set('field_c_p_content', [
'value' => "<p class=\"ct-text-small\">We acknowledge the traditional owners of the country throughout Australia and their continuing connection to land, sea and community. We pay our respect to them and their cultures and to the elders past and present.</p>\r\n",
'value' => "<p class=\"ct-text-small\">We acknowledge the traditional owners of the country and their continuing connection to land, sea and community. We pay our respect to them and their cultures and to the elders past and present.</p>\r\n",
'format' => 'civictheme_rich_text',
]);
$paragraph->set('field_c_p_theme', CivicthemeConstants::THEME_DARK);
......@@ -905,12 +905,13 @@ function _civictheme_provision__blocks__acknowledgment_of_country(array $block):
* @SuppressWarnings(PHPMD.StaticAccess)
*/
function _civictheme_provision__blocks__copyright(array $block): void {
return;
$block_content = civictheme_provision_create_block_content($block['type'], $block['name'], $block['uuid']);
$paragraph = Paragraph::create([
'type' => 'civictheme_content',
]);
$paragraph->set('field_c_p_content', [
'value' => "<p class=\"text-align-right ct-text-small\">©2024 Commonwealth of Australia</p>\r\n",
'value' => "<p class=\"text-align-right ct-text-small\">©2024 Republic of CivicTech</p>\r\n",
'format' => 'civictheme_rich_text',
]);
$paragraph->set('field_c_p_theme', CivicthemeConstants::THEME_DARK);
......@@ -984,7 +985,7 @@ function civictheme_provision__permissions(): void {
*/
function civictheme_provision__site_settings(): void {
$config = \Drupal::service('config.factory')->getEditable('system.site');
$config->set('slogan', 'A design system by Salsa Digital');
$config->set('slogan', 'A true design system for everyone!');
$config->save();
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment