function panels_cache_object::add_content in Panels 5.2
Same name and namespace in other branches
- 6.3 includes/plugins.inc \panels_cache_object::add_content()
- 6.2 includes/plugins.inc \panels_cache_object::add_content()
- 7.3 includes/plugins.inc \panels_cache_object::add_content()
Add content to the cache. This assumes a pure stream; use set_content() if it's something else.
File
- includes/
plugins.inc, line 646 - plugins.inc
Class
- panels_cache_object
- An object to hold caching information while it is happening.
Code
function add_content($content) {
$this->content .= $content;
}