You are here

function views_handler_field_countries_continent::option_definition in Countries 8

Same name and namespace in other branches
  1. 7.2 views/views_handler_field_countries_continent.inc \views_handler_field_countries_continent::option_definition()

File

views/views_handler_field_countries_continent.inc, line 12
Views module filter handler class.

Class

views_handler_field_countries_continent
Provides a continent filter.

Code

function option_definition() {
  $options = parent::option_definition();
  $options['continent_code'] = array(
    'default' => FALSE,
  );
  return $options;
}