public function SocialPageTitleBlock::build in Open Social 8
Same name and namespace in other branches
- 8.9 modules/social_features/social_core/src/Plugin/Block/SocialPageTitleBlock.php \Drupal\social_core\Plugin\Block\SocialPageTitleBlock::build()
- 8.2 modules/social_features/social_core/src/Plugin/Block/SocialPageTitleBlock.php \Drupal\social_core\Plugin\Block\SocialPageTitleBlock::build()
- 8.3 modules/social_features/social_core/src/Plugin/Block/SocialPageTitleBlock.php \Drupal\social_core\Plugin\Block\SocialPageTitleBlock::build()
- 8.4 modules/social_features/social_core/src/Plugin/Block/SocialPageTitleBlock.php \Drupal\social_core\Plugin\Block\SocialPageTitleBlock::build()
- 8.5 modules/social_features/social_core/src/Plugin/Block/SocialPageTitleBlock.php \Drupal\social_core\Plugin\Block\SocialPageTitleBlock::build()
- 8.6 modules/social_features/social_core/src/Plugin/Block/SocialPageTitleBlock.php \Drupal\social_core\Plugin\Block\SocialPageTitleBlock::build()
- 8.7 modules/social_features/social_core/src/Plugin/Block/SocialPageTitleBlock.php \Drupal\social_core\Plugin\Block\SocialPageTitleBlock::build()
- 8.8 modules/social_features/social_core/src/Plugin/Block/SocialPageTitleBlock.php \Drupal\social_core\Plugin\Block\SocialPageTitleBlock::build()
- 10.3.x modules/social_features/social_core/src/Plugin/Block/SocialPageTitleBlock.php \Drupal\social_core\Plugin\Block\SocialPageTitleBlock::build()
- 10.0.x modules/social_features/social_core/src/Plugin/Block/SocialPageTitleBlock.php \Drupal\social_core\Plugin\Block\SocialPageTitleBlock::build()
- 10.1.x modules/social_features/social_core/src/Plugin/Block/SocialPageTitleBlock.php \Drupal\social_core\Plugin\Block\SocialPageTitleBlock::build()
- 10.2.x modules/social_features/social_core/src/Plugin/Block/SocialPageTitleBlock.php \Drupal\social_core\Plugin\Block\SocialPageTitleBlock::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 PageTitleBlock::build
See also
\Drupal\block\BlockViewBuilder
File
- modules/
social_features/ social_core/ src/ Plugin/ Block/ SocialPageTitleBlock.php, line 23
Class
- SocialPageTitleBlock
- Provides a 'SocialPageTitleBlock' block.
Namespace
Drupal\social_core\Plugin\BlockCode
public function build() {
// Take the raw parameter. We'll load it ourselves.
$nid = \Drupal::routeMatch()
->getRawParameter('node');
$node = FALSE;
$current_url = Url::fromRoute('<current>');
$current_path = $current_url
->toString();
// At this point the parameter could also be a simple string of a nid.
// EG: on: /node/%node/enrollments.
if (!is_null($nid) && !is_object($nid)) {
$node = Node::load($nid);
}
if ($node) {
$translation = \Drupal::service('entity.repository')
->getTranslationFromContext($node);
if (!empty($translation)) {
$node
->setTitle($translation
->getTitle());
}
$paths_to_exclude = [
'edit',
'add',
'delete',
];
$in_path = str_replace($paths_to_exclude, '', $current_path) != $current_path;
if (!$in_path) {
$title = $node
->getTitle();
return [
'#theme' => 'page_hero_data',
'#title' => $title,
'#node' => $node,
'#section_class' => 'page-title',
];
}
else {
return [
'#type' => 'page_title',
'#title' => $this->title,
];
}
}
else {
$request = \Drupal::request();
if ($route = $request->attributes
->get(RouteObjectInterface::ROUTE_OBJECT)) {
$title = \Drupal::service('title_resolver')
->getTitle($request, $route);
return [
'#type' => 'page_title',
'#title' => $title,
];
}
else {
return [
'#type' => 'page_title',
'#title' => '',
];
}
}
}