public function Page::preprocess in Open Social 8.9
Same name in this branch
- 8.9 themes/socialblue/src/Plugin/Preprocess/Page.php \Drupal\socialblue\Plugin\Preprocess\Page::preprocess()
- 8.9 themes/socialbase/src/Plugin/Preprocess/Page.php \Drupal\socialbase\Plugin\Preprocess\Page::preprocess()
Same name and namespace in other branches
- 8 themes/socialbase/src/Plugin/Preprocess/Page.php \Drupal\socialbase\Plugin\Preprocess\Page::preprocess()
- 8.2 themes/socialbase/src/Plugin/Preprocess/Page.php \Drupal\socialbase\Plugin\Preprocess\Page::preprocess()
- 8.3 themes/socialbase/src/Plugin/Preprocess/Page.php \Drupal\socialbase\Plugin\Preprocess\Page::preprocess()
- 8.4 themes/socialbase/src/Plugin/Preprocess/Page.php \Drupal\socialbase\Plugin\Preprocess\Page::preprocess()
- 8.5 themes/socialbase/src/Plugin/Preprocess/Page.php \Drupal\socialbase\Plugin\Preprocess\Page::preprocess()
- 8.6 themes/socialbase/src/Plugin/Preprocess/Page.php \Drupal\socialbase\Plugin\Preprocess\Page::preprocess()
- 8.7 themes/socialbase/src/Plugin/Preprocess/Page.php \Drupal\socialbase\Plugin\Preprocess\Page::preprocess()
- 8.8 themes/socialbase/src/Plugin/Preprocess/Page.php \Drupal\socialbase\Plugin\Preprocess\Page::preprocess()
Preprocess theme hook variables.
Parameters
array $variables: The variables array, passed by reference (modify in place).
string $hook: The name of the theme hook.
array $info: The theme hook info array.
Overrides PreprocessBase::preprocess
1 call to Page::preprocess()
- Page::preprocess in themes/
socialblue/ src/ Plugin/ Preprocess/ Page.php - Preprocess theme hook variables.
1 method overrides Page::preprocess()
- Page::preprocess in themes/
socialblue/ src/ Plugin/ Preprocess/ Page.php - Preprocess theme hook variables.
File
- themes/
socialbase/ src/ Plugin/ Preprocess/ Page.php, line 23
Class
- Page
- Pre-processes variables for the "page" theme hook.
Namespace
Drupal\socialbase\Plugin\PreprocessCode
public function preprocess(array &$variables, $hook, array $info) {
parent::preprocess($variables, $hook, $info);
$attributes = $variables['content_attributes'] instanceof Attribute ? $variables['content_attributes'] : new Attribute();
// Default classes.
$attributes
->addClass('row', 'container');
// If page has title.
if ($variables['page']['title']) {
$attributes
->addClass('with-title-region');
$variables['display_page_title'] = TRUE;
}
// If we have the admin toolbar permission.
$user = \Drupal::currentUser();
// Check for permission.
if ($user
->hasPermission('access toolbar')) {
$variables['#attached']['library'][] = 'socialbase/admin-toolbar';
}
// Add plain title for node preview page templates.
if (!empty($variables['page']['#title'])) {
$variables['plain_title'] = strip_tags($variables['page']['#title']);
}
// Hide page title for pages where we want to
// display it in the Hero instead, like event, topic, basic page.
// First determine if we are looking at a node.
$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) {
// List pages where we want to hide the default page title.
$page_to_exclude = [
'event',
'topic',
'page',
'book',
];
// Alter list of content types where need to hide the default page title.
\Drupal::moduleHandler()
->alter('social_content_type', $page_to_exclude);
$paths_to_exclude = [
'edit',
'add',
'delete',
];
$in_path = str_replace($paths_to_exclude, '', $current_path) != $current_path;
if (!$in_path) {
// If there is a title and node type is excluded remove class.
if (in_array($node
->bundle(), $page_to_exclude, TRUE)) {
$attributes
->removeClass('with-title-region');
$variables['display_page_title'] = FALSE;
}
}
}
// Check complementary_top and complementary_bottom variables.
if ($variables['page']['complementary_top'] || $variables['page']['complementary_bottom']) {
$attributes
->addClass('layout--with-complementary');
}
// Check if sidebars are empty.
if (empty($variables['page']['sidebar_first']) && empty($variables['page']['sidebar_second'])) {
$attributes
->addClass('layout--with-complementary');
}
// Sidebars logic.
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');
}
}
// This behavior should be fixed in the if statements above on the checks
// for empty sidebars and complementary top/bottom parts. Due to time
// restrains for TB-4116 I've added an additional rule to this quick-fix
// solution.
// @see https://www.drupal.org/project/social/issues/3119191
// @todo: remove the if statement below and fix logic mentioned above.
$route = \Drupal::routeMatch()
->getRouteName();
$routes_remove_complementary_class = [
'view.event_manage_enrollments.page_manage_enrollments',
'view.group_manage_members.page_group_manage_members',
'view.group_pending_members.membership_requests',
'view.event_manage_enrollment_requests.page_manage_enrollment_requests',
'view.event_manage_enrollment_invites.page_manage_enrollment_invites',
'view.user_event_invites.page_user_event_invites',
'view.social_group_invitations.page_1',
'view.social_group_user_invitations.page_1',
];
if (in_array($route, $routes_remove_complementary_class)) {
$attributes
->removeClass('row', 'layout--with-complementary');
}
// Only whenever the social_core layout service is registered
// see SocialCoreServiceProvider, we can run this code.
if (\Drupal::hasService('social_core.layout')) {
// Let's grab all entities available from the route params.
foreach (\Drupal::routeMatch()
->getParameters() as $param) {
// If it is an Entity, lets see if layout_builder is enabled
// and remove or add necessary classes.
if ($param instanceof EntityInterface && \Drupal::service('social_core.layout')
->isTrueLayoutCompatibleEntity($param)) {
$attributes
->removeClass('row', 'layout--with-complementary');
$attributes
->addClass('layout--full');
}
}
}
$variables['content_attributes'] = $attributes;
}