public function boxes_box::cache_setting in Boxes 7
Returns the block cache settings for this box. Subclasses can override this to perform more intricate operations around deciding the cache settings of the specific box instance.
File
- plugins/
boxes_box.inc, line 141
Class
- boxes_box
- Abstract base class defining a box. A boxes content plugin provides a form of options for configuring content and renders content for display.
Code
public function cache_setting() {
return DRUPAL_CACHE_CUSTOM;
}