You are here

public function Theme::__wakeup in Express 8

Unserialize method.

File

themes/contrib/bootstrap/src/Theme.php, line 212
Contains \Drupal\bootstrap.

Class

Theme
Defines a theme object.

Namespace

Drupal\bootstrap

Code

public function __wakeup() {
  $theme_handler = Bootstrap::getThemeHandler();
  $theme = $theme_handler
    ->getTheme($this->name);
  $this
    ->__construct($theme, $theme_handler);
}