updated core to 8.6.1 via composer
This commit is contained in:
@@ -10,7 +10,7 @@
|
||||
* @{
|
||||
*/
|
||||
|
||||
use Drupal\Component\Utility\SafeMarkup;
|
||||
use Drupal\Component\Render\FormattableMarkup;
|
||||
use Drupal\Core\Render\Element;
|
||||
|
||||
/**
|
||||
@@ -36,7 +36,7 @@ function template_preprocess_menu_local_task(&$variables) {
|
||||
$variables['is_active'] = TRUE;
|
||||
|
||||
// Add text to indicate active tab for non-visual users.
|
||||
$active = SafeMarkup::format('<span class="visually-hidden">@label</span>', ['@label' => t('(active tab)')]);
|
||||
$active = new FormattableMarkup('<span class="visually-hidden">@label</span>', ['@label' => t('(active tab)')]);
|
||||
$link_text = t('@local-task-title@active', ['@local-task-title' => $link_text, '@active' => $active]);
|
||||
}
|
||||
|
||||
@@ -161,8 +161,14 @@ function menu_local_tabs() {
|
||||
*
|
||||
* This should be called any time broad changes
|
||||
* might have been made to the router items or menu links.
|
||||
*
|
||||
* @deprecated in Drupal 8.6.0, will be removed before Drupal 9.0.0. Use
|
||||
* \Drupal::cache('menu')->invalidateAll() instead.
|
||||
*
|
||||
* @see https://www.drupal.org/node/2989138
|
||||
*/
|
||||
function menu_cache_clear_all() {
|
||||
@trigger_error("menu_cache_clear_all() is deprecated in Drupal 8.6.0 and will be removed before Drupal 9.0.0. Use \Drupal::cache('menu')->invalidateAll() instead. See https://www.drupal.org/node/2989138", E_USER_DEPRECATED);
|
||||
\Drupal::cache('menu')->invalidateAll();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user