SocialGroupTagsBlock.php in Open Social 8.7
Same filename and directory in other branches
- 8.9 modules/social_features/social_tagging/src/Plugin/Block/SocialGroupTagsBlock.php
- 8.4 modules/social_features/social_tagging/src/Plugin/Block/SocialGroupTagsBlock.php
- 8.5 modules/social_features/social_tagging/src/Plugin/Block/SocialGroupTagsBlock.php
- 8.6 modules/social_features/social_tagging/src/Plugin/Block/SocialGroupTagsBlock.php
- 8.8 modules/social_features/social_tagging/src/Plugin/Block/SocialGroupTagsBlock.php
- 10.3.x modules/social_features/social_tagging/src/Plugin/Block/SocialGroupTagsBlock.php
- 10.0.x modules/social_features/social_tagging/src/Plugin/Block/SocialGroupTagsBlock.php
- 10.1.x modules/social_features/social_tagging/src/Plugin/Block/SocialGroupTagsBlock.php
- 10.2.x modules/social_features/social_tagging/src/Plugin/Block/SocialGroupTagsBlock.php
Namespace
Drupal\social_tagging\Plugin\BlockFile
modules/social_features/social_tagging/src/Plugin/Block/SocialGroupTagsBlock.phpView source
<?php
namespace Drupal\social_tagging\Plugin\Block;
use Drupal\Core\Access\AccessResult;
use Drupal\Core\Block\BlockBase;
use Drupal\Core\Cache\Cache;
use Drupal\Core\Plugin\ContainerFactoryPluginInterface;
use Drupal\Core\Routing\RouteMatchInterface;
use Drupal\Core\Session\AccountInterface;
use Drupal\group\Entity\Group;
use Drupal\group\Entity\GroupInterface;
use Drupal\social_tagging\SocialTaggingService;
use Symfony\Component\DependencyInjection\ContainerInterface;
/**
* Provides a 'SocialGroupTags' block.
*
* @Block(
* id = "social_group_tags_block",
* admin_label = @Translation("Social Group Tags block"),
* )
*/
class SocialGroupTagsBlock extends BlockBase implements ContainerFactoryPluginInterface {
/**
* The route match.
*
* @var \Drupal\Core\Routing\RouteMatchInterface
*/
protected $routeMatch;
/**
* The route match.
*
* @var \Drupal\social_tagging\SocialTaggingService
*/
protected $tagService;
/**
* 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 $routeMatch
* The route match.
* @param \Drupal\social_tagging\SocialTaggingService $tagging_service
* The tag service.
*/
public function __construct(array $configuration, $plugin_id, $plugin_definition, RouteMatchInterface $routeMatch, SocialTaggingService $tagging_service) {
parent::__construct($configuration, $plugin_id, $plugin_definition);
$this->routeMatch = $routeMatch;
$this->tagService = $tagging_service;
}
/**
* {@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('social_tagging.tag_service'));
}
/**
* {@inheritdoc}
*
* Logic to display the block in the sidebar.
*/
protected function blockAccess(AccountInterface $account) {
// If tagging is off, deny access always.
if (!$this->tagService
->active() || !$this->tagService
->groupActive()) {
return AccessResult::forbidden();
}
// Routes we don't want to display the tag block on.
$ignore_routes = [
'entity.group.join',
'entity.group.leave',
'entity.group.edit_form',
'entity.group.delete_form',
'entity.group_content.collection',
'view.group_manage_members.page_group_manage_members',
];
// Don't display on group edit.
if (in_array($this->routeMatch
->getRouteName(), $ignore_routes)) {
return AccessResult::forbidden();
}
// Get group from route.
$group = $this->routeMatch
->getParameter('group');
if ($group instanceof Group) {
if ($group
->hasField('social_tagging')) {
if (!empty($group
->get('social_tagging')
->getValue())) {
// We only show the block if the field contains values.
return AccessResult::allowed();
}
}
}
return AccessResult::forbidden();
}
/**
* {@inheritdoc}
*/
public function getCacheTags() {
$cache_tags = parent::getCacheTags();
$group = $this->routeMatch
->getParameter('group');
if ($group instanceof GroupInterface) {
$cache_tags[] = 'group:' . $group
->id();
}
return $cache_tags;
}
/**
* {@inheritdoc}
*/
public function getCacheContexts() {
$contexts = parent::getCacheContexts();
$group = $this->routeMatch
->getParameter('group');
if ($group instanceof GroupInterface) {
$contexts = Cache::mergeContexts($contexts, [
'group',
]);
}
return $contexts;
}
/**
* {@inheritdoc}
*/
public function build() {
$build = [];
$group = $this->routeMatch
->getParameter('group');
if ($group instanceof GroupInterface) {
$build['content']['#markup'] = social_tagging_process_tags($group);
}
return $build;
}
}
Classes
Name | Description |
---|---|
SocialGroupTagsBlock | Provides a 'SocialGroupTags' block. |