You are here

function views_handler_argument_countries_country::option_definition in Countries 8

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

File

views/views_handler_argument_countries_country.inc, line 26
Argument handler for countries properties.

Class

views_handler_argument_countries_country
@file Argument handler for countries properties.

Code

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