view->argument['country'])) { $country = $this->view->argument['country']->argument; } else { $country = variable_get('location_default_country', 'us'); } return location_province_name($country, $this->argument); } function summary_name($data) { $value = $data->{$this->name_alias}; if (empty($value)) { return t('Unknown'); } 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, $value); } }