Shortcut module error

Created on 31 October 2024, 5 months ago

TypeError: Drupal\shortcut\ShortcutSetStorage::getDisplayedToUser(): Return value must be of type Drupal\shortcut\ShortcutSetInterface, null returned in Drupal\shortcut\ShortcutSetStorage->getDisplayedToUser() (line 134 of core/modules/shortcut/src/ShortcutSetStorage.php).
shortcut_toolbar()
call_user_func_array(Object, Array) (Line: 416)
Drupal\Core\Extension\ModuleHandler->Drupal\Core\Extension\{closure}(Object, 'shortcut') (Line: 395)
Drupal\Core\Extension\ModuleHandler->invokeAllWith('toolbar', Object) (Line: 415)
Drupal\Core\Extension\ModuleHandler->invokeAll('toolbar') (Line: 78)
Drupal\toolbar\Element\Toolbar::preRenderToolbar(Array)
call_user_func_array(Array, Array) (Line: 113)
Drupal\Core\Render\Renderer->doTrustedCallback(Array, Array, 'Render #pre_render callbacks must be methods of a class that implements \Drupal\Core\Security\TrustedCallbackInterface or be an anonymous function. The callback was %s. See https://www.drupal.org/node/2966725 ', 'exception', 'Drupal\Core\Render\Element\RenderCallbackInterface') (Line: 870)
Drupal\Core\Render\Renderer->doCallback('#pre_render', Array, Array) (Line: 432)
Drupal\Core\Render\Renderer->doRender(Array) (Line: 504)
Drupal\Core\Render\Renderer->doRender(Array, ) (Line: 248)
Drupal\Core\Render\Renderer->render(Array) (Line: 476)
Drupal\Core\Template\TwigExtension->escapeFilter(Object, Array, 'html', NULL, 1) (Line: 87)
__TwigTemplate_bbc4e294a65e83fdf163493d2f0cd163->doDisplay(Array, Array) (Line: 393)
Twig\Template->yield(Array, Array) (Line: 349)
Twig\Template->display(Array) (Line: 364)
Twig\Template->render(Array) (Line: 35)
Twig\TemplateWrapper->render(Array) (Line: 33)
twig_render_template('themes/contrib/seven/templates/classy/layout/html.html.twig', Array) (Line: 348)
Drupal\Core\Theme\ThemeManager->render('html', Array) (Line: 491)
Drupal\Core\Render\Renderer->doRender(Array, ) (Line: 248)
Drupal\Core\Render\Renderer->render(Array) (Line: 158)
Drupal\Core\Render\MainContent\HtmlRenderer->Drupal\Core\Render\MainContent\{closure}() (Line: 638)
Drupal\Core\Render\Renderer->executeInRenderContext(Object, Object) (Line: 153)
Drupal\Core\Render\MainContent\HtmlRenderer->renderResponse(Array, Object, Object) (Line: 90)
Drupal\Core\EventSubscriber\MainContentViewSubscriber->onViewRenderArray(Object, 'kernel.view', Object)
call_user_func(Array, Object, 'kernel.view', Object) (Line: 111)
Drupal\Component\EventDispatcher\ContainerAwareEventDispatcher->dispatch(Object, 'kernel.view') (Line: 186)
Symfony\Component\HttpKernel\HttpKernel->handleRaw(Object, 1) (Line: 76)
Symfony\Component\HttpKernel\HttpKernel->handle(Object, 1, 1) (Line: 53)
Drupal\Core\StackMiddleware\Session->handle(Object, 1, 1) (Line: 48)
Drupal\Core\StackMiddleware\KernelPreHandle->handle(Object, 1, 1) (Line: 28)
Drupal\Core\StackMiddleware\ContentLength->handle(Object, 1, 1) (Line: 106)
Drupal\page_cache\StackMiddleware\PageCache->pass(Object, 1, 1) (Line: 85)
Drupal\page_cache\StackMiddleware\PageCache->handle(Object, 1, 1) (Line: 50)
Drupal\ban\BanMiddleware->handle(Object, 1, 1) (Line: 48)
Drupal\Core\StackMiddleware\ReverseProxyMiddleware->handle(Object, 1, 1) (Line: 51)
Drupal\Core\StackMiddleware\NegotiationMiddleware->handle(Object, 1, 1) (Line: 36)
Drupal\Core\StackMiddleware\AjaxPageState->handle(Object, 1, 1) (Line: 51)
Drupal\Core\StackMiddleware\StackedHttpKernel->handle(Object, 1, 1) (Line: 741)
Drupal\Core\DrupalKernel->handle(Object) (Line: 19)

🐛 Bug report
Status

Active

Version

10.3

Component

shortcut.module

Created by

🇮🇳India Hardik Rawal

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Comments & Activities

  • Issue created by @Hardik Rawal
  • First commit to issue fork.
  • 🇳🇿New Zealand quietone

    Changes are made on on 11.x (our main development branch) first, and are then back ported as needed according to our policies.

  • 🇪🇨Ecuador b_harold

    Due to the absence of specific steps for testing, I am uncertain whether this solution will be effective. I encountered a similar error while attempting to import a database to my site on Pantheon; this issue arose from conflicts related to ShortcutSet. After removing the offending records from my database, I attempted to execute the command drush uli and encountered the same problem. To resolve this, it is necessary to establish a default configuration for the ShortcutSet. I executed the following commands:

    drush php-eval '
    use Drupal\shortcut\Entity\ShortcutSet;
    $shortcut_set = ShortcutSet::create([
      "id" => "default",
      "label" => "Default shortcut set",
    ]);
    $shortcut_set->save();
    '
    

    Subsequently, I executed:

    drush php-eval 'Drupal::configFactory()->getEditable("shortcut.settings")->set("default", "default")->save();'

    After completing these steps, I recommend running drush uli again.

    If the issue persists, I recommend you first import the database.

  • 🇪🇨Ecuador b_harold

    Due to the absence of specific steps for testing, I am uncertain whether this solution will be effective. I encountered a similar error while attempting to import a database to my site on Pantheon; this issue arose from conflicts related to ShortcutSet. After removing the offending records from my database, I attempted to execute the command drush uli and encountered the same problem. To resolve this, it is necessary to establish a default configuration for the ShortcutSet. I executed the following commands:

    drush php-eval '
    use Drupal\shortcut\Entity\ShortcutSet;
    $shortcut_set = ShortcutSet::create([
      "id" => "default",
      "label" => "Default shortcut set",
    ]);
    $shortcut_set->save();
    '
    

    Subsequently, I executed:

    drush php-eval 'Drupal::configFactory()->getEditable("shortcut.settings")->set("default", "default")->save();'

    After completing these steps, run drush uli again.

    If the issue persists, I recommend you first import the database.

Production build 0.71.5 2024