You are here

function getlocations_fields_handler_argument_country::options_form in Get Locations 7.2

Same name and namespace in other branches
  1. 7 modules/getlocations_fields/handlers/getlocations_fields_handler_argument_country.inc \getlocations_fields_handler_argument_country::options_form()

Build the options form.

Overrides views_handler_argument::options_form

File

modules/getlocations_fields/handlers/getlocations_fields_handler_argument_country.inc, line 21
getlocations_fields_handler_argument_country.inc @author Bob Hutchinson http://drupal.org/user/52366 @copyright GNU GPL

Class

getlocations_fields_handler_argument_country
Argument handler to accept country code

Code

function options_form(&$form, &$form_state) {
  parent::options_form($form, $form_state);
  $form['type'] = array(
    '#type' => 'value',
    '#value' => 'country',
  );
}