public function PmAddBlock::build in Open Social 8.8
Same name and namespace in other branches
- 8.9 modules/social_features/social_private_message/src/Plugin/Block/PmAddBlock.php \Drupal\social_private_message\Plugin\Block\PmAddBlock::build()
- 8 modules/social_features/social_private_message/src/Plugin/Block/PmAddBlock.php \Drupal\social_private_message\Plugin\Block\PmAddBlock::build()
- 8.2 modules/social_features/social_private_message/src/Plugin/Block/PmAddBlock.php \Drupal\social_private_message\Plugin\Block\PmAddBlock::build()
- 8.3 modules/social_features/social_private_message/src/Plugin/Block/PmAddBlock.php \Drupal\social_private_message\Plugin\Block\PmAddBlock::build()
- 8.4 modules/social_features/social_private_message/src/Plugin/Block/PmAddBlock.php \Drupal\social_private_message\Plugin\Block\PmAddBlock::build()
- 8.5 modules/social_features/social_private_message/src/Plugin/Block/PmAddBlock.php \Drupal\social_private_message\Plugin\Block\PmAddBlock::build()
- 8.6 modules/social_features/social_private_message/src/Plugin/Block/PmAddBlock.php \Drupal\social_private_message\Plugin\Block\PmAddBlock::build()
- 8.7 modules/social_features/social_private_message/src/Plugin/Block/PmAddBlock.php \Drupal\social_private_message\Plugin\Block\PmAddBlock::build()
- 10.3.x modules/social_features/social_private_message/src/Plugin/Block/PmAddBlock.php \Drupal\social_private_message\Plugin\Block\PmAddBlock::build()
- 10.0.x modules/social_features/social_private_message/src/Plugin/Block/PmAddBlock.php \Drupal\social_private_message\Plugin\Block\PmAddBlock::build()
- 10.1.x modules/social_features/social_private_message/src/Plugin/Block/PmAddBlock.php \Drupal\social_private_message\Plugin\Block\PmAddBlock::build()
- 10.2.x modules/social_features/social_private_message/src/Plugin/Block/PmAddBlock.php \Drupal\social_private_message\Plugin\Block\PmAddBlock::build()
Builds and returns the renderable array for this block plugin.
If a block should not be rendered because it has no content, then this method must also ensure to return no content: it must then only return an empty array, or an empty array with #cache set (with cacheability metadata indicating the circumstances for it being empty).
Return value
array A renderable array representing the content of the block.
Overrides BlockPluginInterface::build
See also
\Drupal\block\BlockViewBuilder
File
- modules/
social_features/ social_private_message/ src/ Plugin/ Block/ PmAddBlock.php, line 36
Class
- PmAddBlock
- Provides a 'PmAddBlock' block.
Namespace
Drupal\social_private_message\Plugin\BlockCode
public function build() {
$build = [];
$url = Url::fromRoute('private_message.private_message_create');
$link_options = [
'attributes' => [
'class' => [
'btn',
'btn-primary',
'btn-raised',
'brand-bg-primary',
],
],
];
$url
->setOptions($link_options);
$build['content'] = Link::fromTextAndUrl(t('New message'), $url)
->toRenderable();
return $build;
}