You are here

class views_handler_filter_block_format in Views Hacks 6

Same name and namespace in other branches
  1. 7 views_block/handlers/views_handler_filter_block_format.inc \views_handler_filter_block_format

Filter based on block body format.

Hierarchy

Expanded class hierarchy of views_handler_filter_block_format

1 string reference to 'views_handler_filter_block_format'
views_block_views_data in views_block/views_block.views.inc
Implementation of hook_views_data()

File

views_block/handlers/views_handler_filter_block_format.inc, line 6

View source
class views_handler_filter_block_format extends views_handler_filter_in_operator {
  function get_value_options() {
    foreach (filter_formats() as $fid => $format) {
      $this->value_options[$fid] = $format->name;
    }
  }

}

Members