You are here

function views_handler_filter_block_format::get_value_options 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::get_value_options()

File

views_block/handlers/views_handler_filter_block_format.inc, line 7

Class

views_handler_filter_block_format
Filter based on block body format.

Code

function get_value_options() {
  foreach (filter_formats() as $fid => $format) {
    $this->value_options[$fid] = $format->name;
  }
}