SystemPoweredByBlock.php in Drupal 8
File
core/modules/system/src/Plugin/Block/SystemPoweredByBlock.php
View source
<?php
namespace Drupal\system\Plugin\Block;
use Drupal\Core\Block\BlockBase;
class SystemPoweredByBlock extends BlockBase {
public function defaultConfiguration() {
return [
'label_display' => FALSE,
];
}
public function build() {
return [
'#markup' => '<span>' . $this
->t('Powered by <a href=":poweredby">Drupal</a>', [
':poweredby' => 'https://www.drupal.org',
]) . '</span>',
];
}
}