SocialPageTitleBlock.php in Open Social 8.5
Same filename and directory in other branches
- 8.9 modules/social_features/social_core/src/Plugin/Block/SocialPageTitleBlock.php
- 8 modules/social_features/social_core/src/Plugin/Block/SocialPageTitleBlock.php
- 8.2 modules/social_features/social_core/src/Plugin/Block/SocialPageTitleBlock.php
- 8.3 modules/social_features/social_core/src/Plugin/Block/SocialPageTitleBlock.php
- 8.4 modules/social_features/social_core/src/Plugin/Block/SocialPageTitleBlock.php
- 8.6 modules/social_features/social_core/src/Plugin/Block/SocialPageTitleBlock.php
- 8.7 modules/social_features/social_core/src/Plugin/Block/SocialPageTitleBlock.php
- 8.8 modules/social_features/social_core/src/Plugin/Block/SocialPageTitleBlock.php
- 10.3.x modules/social_features/social_core/src/Plugin/Block/SocialPageTitleBlock.php
- 10.0.x modules/social_features/social_core/src/Plugin/Block/SocialPageTitleBlock.php
- 10.1.x modules/social_features/social_core/src/Plugin/Block/SocialPageTitleBlock.php
- 10.2.x modules/social_features/social_core/src/Plugin/Block/SocialPageTitleBlock.php
Namespace
Drupal\social_core\Plugin\BlockFile
modules/social_features/social_core/src/Plugin/Block/SocialPageTitleBlock.phpView source
<?php
namespace Drupal\social_core\Plugin\Block;
use Drupal\Core\Controller\TitleResolverInterface;
use Drupal\Core\Entity\EntityRepositoryInterface;
use Drupal\Core\Plugin\ContainerFactoryPluginInterface;
use Drupal\Core\Routing\RouteMatchInterface;
use Symfony\Cmf\Component\Routing\RouteObjectInterface;
use Drupal\node\Entity\Node;
use Drupal\Core\Block\Plugin\Block\PageTitleBlock;
use Drupal\Core\Url;
use Symfony\Component\DependencyInjection\ContainerInterface;
use Symfony\Component\HttpFoundation\RequestStack;
use Symfony\Component\HttpKernel\Exception\AccessDeniedHttpException;
use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
/**
* Provides a 'SocialPageTitleBlock' block.
*
* @Block(
* id = "social_page_title_block",
* admin_label = @Translation("Page title block"),
* )
*/
class SocialPageTitleBlock extends PageTitleBlock implements ContainerFactoryPluginInterface {
/**
* The route match.
*
* @var \Drupal\Core\Routing\RouteMatchInterface
*/
protected $routeMatch;
/**
* The route match.
*
* @var \Drupal\social_tagging\SocialTaggingService
*/
protected $requestStack;
/**
* The entity repository.
*
* @var \Drupal\Core\Entity\EntityRepositoryInterface
*/
protected $entityRepository;
/**
* The title resolver service.
*
* @var \Drupal\Core\Controller\TitleResolverInterface
*/
protected $titleResolver;
/**
* EventAddBlock constructor.
*
* @param array $configuration
* The given configuration.
* @param string $plugin_id
* The given plugin id.
* @param mixed $plugin_definition
* The given plugin definition.
* @param \Drupal\Core\Routing\RouteMatchInterface $route_match
* The route match.
* @param \Symfony\Component\HttpFoundation\RequestStack $request_stack
* The current request stack.
* @param \Drupal\Core\Entity\EntityRepositoryInterface $entity_repository
* The entity repository.
* @param \Drupal\Core\Controller\TitleResolverInterface $title_resolver
* The title resolver.
*/
public function __construct(array $configuration, $plugin_id, $plugin_definition, RouteMatchInterface $route_match, RequestStack $request_stack, EntityRepositoryInterface $entity_repository, TitleResolverInterface $title_resolver) {
parent::__construct($configuration, $plugin_id, $plugin_definition);
$this->routeMatch = $route_match;
$this->requestStack = $request_stack;
$this->entityRepository = $entity_repository;
$this->titleResolver = $title_resolver;
}
/**
* {@inheritdoc}
*/
public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition) {
return new static($configuration, $plugin_id, $plugin_definition, $container
->get('current_route_match'), $container
->get('request_stack'), $container
->get('entity.repository'), $container
->get('title_resolver'));
}
/**
* {@inheritdoc}
*/
public function build() {
// Take the raw parameter. We'll load it ourselves.
$nid = $this->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);
}
$request = $this->requestStack
->getCurrentRequest();
if ($node) {
// Landing pages have their own heroes. Usually we're not displayed for
// landing page. However, when a landing page is used as a 404 or 403 page
// then this block is still rendered. Therefor if we're asked to render
// for a landing page we check if we're not in a 404 or 403. If we are
// then we can quickly determine we won't render anything.
if ($node
->getType() === "landing_page") {
$exception = $request->attributes
->get('exception');
if ($exception instanceof NotFoundHttpException || $exception instanceof AccessDeniedHttpException) {
return [];
}
}
$translation = $this->entityRepository
->getTranslationFromContext($node);
if (!empty($translation)) {
$node
->setTitle($translation
->getTitle());
}
$name = $this->routeMatch
->getRouteName();
if (!in_array($name, [
'entity.node.edit_form',
'entity.node.delete_form',
'entity.node.add_form',
])) {
$title = $node
->getTitle();
return [
'#theme' => 'page_hero_data',
'#title' => $title,
'#node' => $node,
];
}
else {
return [
'#type' => 'page_title',
'#title' => $this->title,
];
}
}
else {
if ($route = $request->attributes
->get(RouteObjectInterface::ROUTE_OBJECT)) {
$title = $this->titleResolver
->getTitle($request, $route);
return [
'#type' => 'page_title',
'#title' => $title,
];
}
else {
return [
'#type' => 'page_title',
'#title' => '',
];
}
}
}
}
Classes
Name | Description |
---|---|
SocialPageTitleBlock | Provides a 'SocialPageTitleBlock' block. |