Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. SystemController.php

function SystemController::compactPage

Sets whether the admin menu is in compact mode or not.

Parameters

string $mode: Valid values are 'on' and 'off'.

Return value

\Symfony\Component\HttpFoundation\RedirectResponse

1 string reference to 'SystemController::compactPage'
system.routing.yml in core/modules/system/system.routing.yml
core/modules/system/system.routing.yml

File

core/modules/system/src/Controller/SystemController.php, line 183

Class

SystemController
Returns responses for System routes.

Namespace

Drupal\system\Controller

Code

public function compactPage($mode) {
    user_cookie_save([
        'admin_compact_mode' => $mode == 'on',
    ]);
    return $this->redirect('<front>');
}

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal