public function ContactInfoBlock::defaultConfiguration in Brainstorm profile 8
Overrides BlockPluginTrait::defaultConfiguration
1 call to ContactInfoBlock::defaultConfiguration()
- ContactInfoBlock::blockForm in module/
custom/ adci_contact_info/ src/ Plugin/ Block/ ContactInfoBlock.php
File
- module/
custom/ adci_contact_info/ src/ Plugin/ Block/ ContactInfoBlock.php, line 282
Class
- ContactInfoBlock
- Provides an contact info block.
Namespace
Drupal\adci_contact_info\Plugin\BlockCode
public function defaultConfiguration() {
return [
'info' => 'The website is using Drupal @version',
'site' => [
'title' => 'Supported by',
'text' => 'ADCI Solutions',
'link' => 'https://www.adcisolutions.com/',
],
'email' => [
'title' => 'Email',
'email' => 'hello@adcillc.com',
],
];
}