public ForumManager::__wakeup()
File
- core/modules/forum/src/ForumManager.php, line 506
Class
- ForumManager
- Provides forum manager service.
Namespace
Drupal\forum
Code
public function __wakeup() {
$this->defaultWakeup();
// Initialize static cache.
$this->history = array();
$this->lastPostData = array();
$this->forumChildren = array();
$this->forumStatistics = array();
$this->index = NULL;
}
Please login to continue.