public function SystemController::compactPage in Zircon Profile 8.0
Same name and namespace in other branches
- 8 core/modules/system/src/Controller/SystemController.php \Drupal\system\Controller\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 180 - Contains \Drupal\system\Controller\SystemController.
Class
- SystemController
- Returns responses for System routes.
Namespace
Drupal\system\ControllerCode
public function compactPage($mode) {
user_cookie_save(array(
'admin_compact_mode' => $mode == 'on',
));
return $this
->redirect('<front>');
}