MenuLocalAction.php in Open Social 8.9
Same filename and directory in other branches
- 8 themes/socialbase/src/Plugin/Preprocess/MenuLocalAction.php
- 8.2 themes/socialbase/src/Plugin/Preprocess/MenuLocalAction.php
- 8.3 themes/socialbase/src/Plugin/Preprocess/MenuLocalAction.php
- 8.4 themes/socialbase/src/Plugin/Preprocess/MenuLocalAction.php
- 8.5 themes/socialbase/src/Plugin/Preprocess/MenuLocalAction.php
- 8.6 themes/socialbase/src/Plugin/Preprocess/MenuLocalAction.php
- 8.7 themes/socialbase/src/Plugin/Preprocess/MenuLocalAction.php
- 8.8 themes/socialbase/src/Plugin/Preprocess/MenuLocalAction.php
Namespace
Drupal\socialbase\Plugin\PreprocessFile
themes/socialbase/src/Plugin/Preprocess/MenuLocalAction.phpView source
<?php
namespace Drupal\socialbase\Plugin\Preprocess;
use Drupal\bootstrap\Plugin\Preprocess\MenuLocalAction as BaseMenuLocalAction;
use Drupal\bootstrap\Utility\Element;
use Drupal\bootstrap\Utility\Variables;
/**
* Pre-processes variables for the "menu_local_action" theme hook.
*
* @ingroup plugins_preprocess
*
* @BootstrapPreprocess("menu_local_action")
*/
class MenuLocalAction extends BaseMenuLocalAction {
/**
* {@inheritdoc}
*/
public function preprocessElement(Element $element, Variables $variables) {
parent::preprocessElement($element, $variables);
$route_names = [
// Identify the `Add member` button on the manage members page of a group.
'view.group_manage_members.page_group_manage_members',
// Identify the `Add enrollee` button on the manage enrollments page.
'view.event_manage_enrollments.page_manage_enrollments',
// Identify the `New message` button on the private message page.
'entity.private_message_thread.canonical',
];
if (in_array(\Drupal::routeMatch()
->getRouteName(), $route_names)) {
$variables['link']['#options']['attributes']['class'] = 'btn btn-primary btn-raised';
$variables['attributes']['class'][] = 'margin-bottom-l';
}
}
}
Classes
Name | Description |
---|---|
MenuLocalAction | Pre-processes variables for the "menu_local_action" theme hook. |