You are here

function location_handler_argument_location_province::title in Location 7.5

Same name and namespace in other branches
  1. 6.3 handlers/location_handler_argument_location_province.inc \location_handler_argument_location_province::title()
  2. 7.3 handlers/location_handler_argument_location_province.inc \location_handler_argument_location_province::title()
  3. 7.4 handlers/location_handler_argument_location_province.inc \location_handler_argument_location_province::title()

Override the behavior of title(). Get the province name.

Overrides views_handler_argument::title

File

handlers/location_handler_argument_location_province.inc, line 10

Class

location_handler_argument_location_province
Argument handler to accept a province code or name.

Code

function title() {
  if (isset($this->view->argument['country'])) {
    $country = $this->view->argument['country']->argument;
  }
  else {
    $country = variable_get('location_default_country', 'us');
  }
  return location_province_name($country, $this->argument);
}