function panels_cache_object::__construct in Panels 7.3
When constructed, take a snapshot of our existing out of band data.
File
- includes/
plugins.inc, line 127 - Contains helper code for plugins and contexts.
Class
- panels_cache_object
- An object to hold caching information while it is happening.
Code
function __construct() {
$this->head = drupal_add_html_head();
$this->css = drupal_add_css();
$this->tokens = ctools_set_page_token();
$this->js = drupal_add_js();
}