public function PageTitle::preprocess in Open Social 8.8
Same name and namespace in other branches
- 8.9 themes/socialbase/src/Plugin/Preprocess/PageTitle.php \Drupal\socialbase\Plugin\Preprocess\PageTitle::preprocess()
- 8 themes/socialbase/src/Plugin/Preprocess/PageTitle.php \Drupal\socialbase\Plugin\Preprocess\PageTitle::preprocess()
- 8.2 themes/socialbase/src/Plugin/Preprocess/PageTitle.php \Drupal\socialbase\Plugin\Preprocess\PageTitle::preprocess()
- 8.3 themes/socialbase/src/Plugin/Preprocess/PageTitle.php \Drupal\socialbase\Plugin\Preprocess\PageTitle::preprocess()
- 8.4 themes/socialbase/src/Plugin/Preprocess/PageTitle.php \Drupal\socialbase\Plugin\Preprocess\PageTitle::preprocess()
- 8.5 themes/socialbase/src/Plugin/Preprocess/PageTitle.php \Drupal\socialbase\Plugin\Preprocess\PageTitle::preprocess()
- 8.6 themes/socialbase/src/Plugin/Preprocess/PageTitle.php \Drupal\socialbase\Plugin\Preprocess\PageTitle::preprocess()
- 8.7 themes/socialbase/src/Plugin/Preprocess/PageTitle.php \Drupal\socialbase\Plugin\Preprocess\PageTitle::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
File
- themes/
socialbase/ src/ Plugin/ Preprocess/ PageTitle.php, line 21
Class
- PageTitle
- Pre-processes variables for the "page_title" theme hook.
Namespace
Drupal\socialbase\Plugin\PreprocessCode
public function preprocess(array &$variables, $hook, array $info) {
parent::preprocess($variables, $hook, $info);
// Get the current path and if is it stream return a variable.
$current_url = Url::fromRoute('<current>');
$current_path = $current_url
->toString();
$route_name = \Drupal::routeMatch()
->getRouteName();
if ($route_name === 'profile.user_page.single') {
if ($variables['title'] instanceof TranslatableMarkup) {
$profile_type = $variables['title']
->getArguments();
}
if (!empty($profile_type['@label'])) {
$variables['title'] = t('Edit @label', [
'@label' => $profile_type['@label'],
]);
}
}
if ($route_name === 'entity.user.edit_form' && isset($variables['title']['#markup'])) {
$variables['title'] = t('<em>Configure account settings:</em> @label', [
'@label' => $variables['title']['#markup'],
]);
}
if (strpos($current_path, 'stream') !== FALSE || strpos($current_path, 'explore') !== FALSE) {
$variables['stream'] = TRUE;
}
// Check if it is a node.
if (strpos($current_path, 'node') !== FALSE) {
$variables['node'] = TRUE;
}
// Check if it is the edit/add/delete.
if (in_array($route_name, [
'entity.node.edit_form',
'entity.node.delete_form',
'entity.node.add_form',
])) {
$variables['edit'] = TRUE;
}
}