You are here

function views_handler_filter_block_cache::admin_summary in Views Hacks 6

Same name and namespace in other branches
  1. 7 views_block/handlers/views_handler_filter_block_cache.inc \views_handler_filter_block_cache::admin_summary()

File

views_block/handlers/views_handler_filter_block_cache.inc, line 9

Class

views_handler_filter_block_cache
Filter based on block cache settings.

Code

function admin_summary() {
  if (!empty($this->options['exposed'])) {
    return t('exposed');
  }
  return parent::admin_summary();
}