toolbar_language_switcher.module in Admin Toolbar Language Switcher 2.0.x
Same filename and directory in other branches
Contains module functionality.
File
toolbar_language_switcher.moduleView source
<?php
/**
* @file
* Contains module functionality.
*/
/**
* Implements hook_toolbar().
*/
function toolbar_language_switcher_toolbar() {
$user = \Drupal::currentUser();
if ($user
->hasPermission('use toolbar_language_switcher')) {
return \Drupal::service('tls.render.builder')
->build();
}
return [];
}
Functions
Name | Description |
---|---|
toolbar_language_switcher_toolbar | Implements hook_toolbar(). |