Page.php in Open Social 8.6
File
themes/socialbase/src/Plugin/Preprocess/Page.php
View source
<?php
namespace Drupal\socialbase\Plugin\Preprocess;
use Drupal\bootstrap\Plugin\Preprocess\PreprocessBase;
use Drupal\Core\Template\Attribute;
use Drupal\node\Entity\Node;
use Drupal\Core\Url;
class Page extends PreprocessBase {
public function preprocess(array &$variables, $hook, array $info) {
parent::preprocess($variables, $hook, $info);
$attributes = $variables['content_attributes'] instanceof Attribute ? $variables['content_attributes'] : new Attribute();
$attributes
->addClass('row', 'container');
if ($variables['page']['title']) {
$attributes
->addClass('with-title-region');
$variables['display_page_title'] = TRUE;
}
$user = \Drupal::currentUser();
if ($user
->hasPermission('access toolbar')) {
$variables['#attached']['library'][] = 'socialbase/admin-toolbar';
}
if (!empty($variables['page']['#title'])) {
$variables['plain_title'] = strip_tags($variables['page']['#title']);
}
$nid = \Drupal::routeMatch()
->getRawParameter('node');
$node = FALSE;
$current_url = Url::fromRoute('<current>');
$current_path = $current_url
->toString();
if (!is_null($nid) && !is_object($nid)) {
$node = Node::load($nid);
}
if ($node instanceof Node) {
$page_to_exclude = [
'event',
'topic',
'page',
'book',
];
$paths_to_exclude = [
'edit',
'add',
'delete',
];
$in_path = str_replace($paths_to_exclude, '', $current_path) != $current_path;
if (!$in_path) {
if (in_array($node
->bundle(), $page_to_exclude, TRUE)) {
$attributes
->removeClass('with-title-region');
$variables['display_page_title'] = FALSE;
}
}
}
if ($variables['page']['complementary_top'] || $variables['page']['complementary_bottom']) {
$attributes
->addClass('layout--with-complementary');
}
if (empty($variables['page']['sidebar_first']) && empty($variables['page']['sidebar_second'])) {
$attributes
->addClass('layout--with-complementary');
}
if (empty($variables['page']['complementary_top']) && empty($variables['page']['complementary_bottom'])) {
if ($variables['page']['sidebar_first'] && $variables['page']['sidebar_second']) {
$attributes
->addClass('layout--with-three-columns');
}
if (!empty($variables['page']['sidebar_second']) xor !empty($variables['page']['sidebar_first'])) {
$attributes
->addClass('layout--with-two-columns');
}
}
$route = \Drupal::routeMatch()
->getRouteName();
if ($route === 'view.event_manage_enrollments.page_manage_enrollments' || $route === 'view.group_manage_members.page_group_manage_members') {
$attributes
->removeClass('row', 'layout--with-complementary');
}
$variables['content_attributes'] = $attributes;
}
}
Classes
Name |
Description |
Page |
Pre-processes variables for the "page" theme hook. |