| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621 | <?php/** * @file * Default views for location module. *//** * Implementation of hook_default_view_views(). */function location_views_default_views() {  $view = new view;  $view->name = 'location_table';  $view->description = 'Node location table.';  $view->tag = '';  $view->view_php = '';  $view->base_table = 'node';  $view->is_cacheable = FALSE;  $view->api_version = 2;  $view->disabled = TRUE;  $handler = $view->new_display('default', 'Defaults', 'default');  $handler->override_option('fields', array(    'title' => array(      'label' => 'Title',      'link_to_node' => 1,      'exclude' => 0,      'id' => 'title',      'table' => 'node',      'field' => 'title',      'override' => array(        'button' => 'Override',      ),      'relationship' => 'none',    ),    'street' => array(      'label' => 'Street',      'style' => 'both',      'exclude' => 0,      'id' => 'street',      'table' => 'location',      'field' => 'street',      'override' => array(        'button' => 'Override',      ),      'relationship' => 'none',    ),    'city' => array(      'label' => 'City',      'exclude' => 0,      'id' => 'city',      'table' => 'location',      'field' => 'city',      'override' => array(        'button' => 'Override',      ),      'relationship' => 'none',    ),    'province' => array(      'label' => 'Province',      'style' => 'name',      'exclude' => 0,      'id' => 'province',      'table' => 'location',      'field' => 'province',      'relationship' => 'none',    ),    'postal_code' => array(      'label' => 'Postal Code',      'exclude' => 0,      'id' => 'postal_code',      'table' => 'location',      'field' => 'postal_code',      'override' => array(        'button' => 'Override',      ),      'relationship' => 'none',    ),    'country' => array(      'label' => 'Country',      'style' => 'name',      'exclude' => 0,      'id' => 'country',      'table' => 'location',      'field' => 'country',      'relationship' => 'none',    ),  ));  $handler->override_option('filters', array(    'status_extra' => array(      'operator' => '=',      'value' => '',      'group' => '0',      'exposed' => FALSE,      'expose' => array(        'operator' => FALSE,        'label' => '',      ),      'id' => 'status_extra',      'table' => 'node',      'field' => 'status_extra',      'override' => array(        'button' => 'Override',      ),      'relationship' => 'none',    ),    'lid' => array(      'operator' => 'not empty',      'value' => array(        'value' => '',        'min' => '',        'max' => '',      ),      'group' => '0',      'exposed' => FALSE,      'expose' => array(        'operator' => FALSE,        'label' => '',      ),      'id' => 'lid',      'table' => 'location',      'field' => 'lid',      'relationship' => 'none',    ),  ));  $handler->override_option('access', array(    'type' => 'perm',    'perm' => 'view node location table',  ));  $handler->override_option('style_plugin', 'table');  $handler->override_option('style_options', array(    'grouping' => '',    'override' => 1,    'sticky' => 0,    'order' => 'asc',    'columns' => array(      'title' => 'title',      'street' => 'street',      'city' => 'city',      'province' => 'province',      'postal_code' => 'postal_code',      'country' => 'country',    ),    'info' => array(      'title' => array(        'sortable' => 1,        'separator' => '',      ),      'street' => array(        'sortable' => 1,        'separator' => '',      ),      'city' => array(        'sortable' => 1,        'separator' => '',      ),      'province' => array(        'sortable' => 1,        'separator' => '',      ),      'postal_code' => array(        'sortable' => 1,        'separator' => '',      ),      'country' => array(        'sortable' => 1,        'separator' => '',      ),    ),    'default' => '-1',  ));  $handler = $view->new_display('page', 'Page', 'page_1');  $handler->override_option('path', 'location/views');  $handler->override_option('menu', array(    'type' => 'normal',    'title' => 'Location table',    'weight' => '0',  ));  $handler->override_option('tab_options', array(    'type' => 'none',    'title' => '',    'weight' => 0,  ));  $views[$view->name] = $view;  $view = new view;  $view->name = 'location_directory';  $view->description = 'Location directory filtered by arguments in the url.';  $view->tag = '';  $view->view_php = '';  $view->base_table = 'node';  $view->is_cacheable = FALSE;  $view->api_version = 2;  $view->disabled = TRUE;  $handler = $view->new_display('default', 'Defaults', 'default');  $handler->override_option('fields', array(    'title' => array(      'label' => 'Title',      'link_to_node' => 1,      'exclude' => 0,      'id' => 'title',      'table' => 'node',      'field' => 'title',      'relationship' => 'none',    ),    'street' => array(      'label' => 'Street',      'style' => 'both',      'exclude' => 0,      'id' => 'street',      'table' => 'location',      'field' => 'street',      'relationship' => 'none',    ),    'city' => array(      'label' => 'City',      'exclude' => 0,      'id' => 'city',      'table' => 'location',      'field' => 'city',      'relationship' => 'none',    ),    'province' => array(      'label' => 'Province',      'style' => 'name',      'exclude' => 0,      'id' => 'province',      'table' => 'location',      'field' => 'province',      'relationship' => 'none',    ),    'postal_code' => array(      'label' => 'Postal Code',      'exclude' => 0,      'id' => 'postal_code',      'table' => 'location',      'field' => 'postal_code',      'relationship' => 'none',    ),    'country' => array(      'label' => 'Country',      'style' => 'name',      'exclude' => 0,      'id' => 'country',      'table' => 'location',      'field' => 'country',      'relationship' => 'none',    ),  ));  $handler->override_option('arguments', array(    'country' => array(      'default_action' => 'summary asc',      'style_plugin' => 'default_summary',      'style_options' => array(        'count' => 1,        'override' => 0,        'items_per_page' => '25',      ),      'wildcard' => 'all',      'wildcard_substitution' => 'All',      'title' => '%1',      'default_argument_type' => 'fixed',      'default_argument' => '',      'validate_type' => 'none',      'validate_fail' => 'not found',      'id' => 'country',      'table' => 'location',      'field' => 'country',      'relationship' => 'none',      'default_options_div_prefix' => '',      'default_argument_fixed' => '',      'default_argument_php' => '',      'validate_argument_node_type' => array(        'page' => 0,        'story' => 0,      ),      'validate_argument_node_access' => 0,      'validate_argument_nid_type' => 'nid',      'validate_argument_php' => '',    ),    'province' => array(      'default_action' => 'summary asc',      'style_plugin' => 'default_summary',      'style_options' => array(        'count' => 1,        'override' => 0,        'items_per_page' => '25',      ),      'wildcard' => 'all',      'wildcard_substitution' => 'All',      'title' => '%2',      'default_argument_type' => 'fixed',      'default_argument' => '',      'validate_type' => 'none',      'validate_fail' => 'not found',      'id' => 'province',      'table' => 'location',      'field' => 'province',      'relationship' => 'none',      'default_options_div_prefix' => '',      'default_argument_fixed' => '',      'default_argument_php' => '',      'validate_argument_node_type' => array(        'page' => 0,        'story' => 0,      ),      'validate_argument_node_access' => 0,      'validate_argument_nid_type' => 'nid',      'validate_argument_php' => '',    ),    'city' => array(      'default_action' => 'summary asc',      'style_plugin' => 'default_summary',      'style_options' => array(        'count' => 1,        'override' => 0,        'items_per_page' => '25',      ),      'wildcard' => 'all',      'wildcard_substitution' => 'All',      'title' => '%3',      'default_argument_type' => 'fixed',      'default_argument' => '',      'validate_type' => 'none',      'validate_fail' => 'not found',      'glossary' => 1,      'limit' => '1',      'case' => 'none',      'path_case' => 'none',      'transform_dash' => 0,      'id' => 'city',      'table' => 'location',      'field' => 'city',      'relationship' => 'none',      'default_options_div_prefix' => '',      'default_argument_fixed' => '',      'default_argument_php' => '',      'validate_argument_node_type' => array(        'page' => 0,        'story' => 0,      ),      'validate_argument_node_access' => 0,      'validate_argument_nid_type' => 'nid',      'validate_argument_php' => '',    ),  ));  $handler->override_option('filters', array(    'status_extra' => array(      'operator' => '=',      'value' => '',      'group' => '0',      'exposed' => FALSE,      'expose' => array(        'operator' => FALSE,        'label' => '',      ),      'id' => 'status_extra',      'table' => 'node',      'field' => 'status_extra',      'relationship' => 'none',    ),    'lid' => array(      'operator' => 'not empty',      'value' => array(        'value' => '',        'min' => '',        'max' => '',      ),      'group' => '0',      'exposed' => FALSE,      'expose' => array(        'operator' => FALSE,        'label' => '',      ),      'id' => 'lid',      'table' => 'location',      'field' => 'lid',      'relationship' => 'none',    ),  ));  $handler->override_option('access', array(    'type' => 'perm',    'perm' => 'view location directory',  ));  $handler->override_option('style_plugin', 'table');  $handler->override_option('style_options', array(    'grouping' => '',    'override' => 1,    'sticky' => 0,    'order' => 'asc',    'columns' => array(      'title' => 'title',      'street' => 'street',      'city' => 'city',      'province' => 'province',      'postal_code' => 'postal_code',      'country' => 'country',    ),    'info' => array(      'title' => array(        'sortable' => 1,        'separator' => '',      ),      'street' => array(        'sortable' => 1,        'separator' => '',      ),      'city' => array(        'sortable' => 1,        'separator' => '',      ),      'province' => array(        'sortable' => 1,        'separator' => '',      ),      'postal_code' => array(        'sortable' => 1,        'separator' => '',      ),      'country' => array(        'sortable' => 1,        'separator' => '',      ),    ),    'default' => '-1',  ));  $handler = $view->new_display('page', 'Page', 'page_1');  $handler->override_option('title', 'Locations');  $handler->override_option('path', 'location/directory');  $handler->override_option('menu', array(    'type' => 'normal',    'title' => 'Locations',    'weight' => '0',  ));  $handler->override_option('tab_options', array(    'type' => 'none',    'title' => '',    'weight' => 0,  ));  $views[$view->name] = $view;  $view = new view;  $view->name = 'user_location_table';  $view->description = 'User location table.';  $view->tag = '';  $view->view_php = '';  $view->base_table = 'users';  $view->is_cacheable = FALSE;  $view->api_version = 2;  $view->disabled = TRUE;  $handler = $view->new_display('default', 'Defaults', 'default');  $handler->override_option('fields', array(    'name' => array(      'label' => 'Name',      'link_to_user' => 1,      'exclude' => 0,      'id' => 'name',      'table' => 'users',      'field' => 'name',      'override' => array(        'button' => 'Override',      ),      'relationship' => 'none',    ),    'street' => array(      'label' => 'Street',      'style' => 'both',      'exclude' => 0,      'id' => 'street',      'table' => 'location',      'field' => 'street',      'override' => array(        'button' => 'Override',      ),      'relationship' => 'none',    ),    'city' => array(      'label' => 'City',      'exclude' => 0,      'id' => 'city',      'table' => 'location',      'field' => 'city',      'override' => array(        'button' => 'Override',      ),      'relationship' => 'none',    ),    'province' => array(      'label' => 'Province',      'style' => 'name',      'exclude' => 0,      'id' => 'province',      'table' => 'location',      'field' => 'province',      'override' => array(        'button' => 'Override',      ),      'relationship' => 'none',    ),    'postal_code' => array(      'label' => 'Postal Code',      'exclude' => 0,      'id' => 'postal_code',      'table' => 'location',      'field' => 'postal_code',      'override' => array(        'button' => 'Override',      ),      'relationship' => 'none',    ),    'country' => array(      'label' => 'Country',      'style' => 'name',      'exclude' => 0,      'id' => 'country',      'table' => 'location',      'field' => 'country',      'override' => array(        'button' => 'Override',      ),      'relationship' => 'none',    ),  ));  $handler->override_option('filters', array(    'status' => array(      'operator' => '=',      'value' => 1,      'group' => '0',      'exposed' => FALSE,      'expose' => array(        'operator' => FALSE,        'label' => '',      ),      'id' => 'status',      'table' => 'users',      'field' => 'status',      'relationship' => 'none',    ),    'lid' => array(      'operator' => 'not empty',      'value' => array(        'value' => '',        'min' => '',        'max' => '',      ),      'group' => '0',      'exposed' => FALSE,      'expose' => array(        'operator' => FALSE,        'label' => '',      ),      'id' => 'lid',      'table' => 'location',      'field' => 'lid',      'relationship' => 'none',    ),  ));  $handler->override_option('access', array(    'type' => 'perm',    'perm' => 'view user location table',  ));  $handler->override_option('style_plugin', 'table');  $handler->override_option('style_options', array(    'grouping' => '',    'override' => 1,    'sticky' => 0,    'order' => 'asc',    'columns' => array(      'name' => 'name',      'street' => 'street',      'city' => 'city',      'province' => 'province',      'postal_code' => 'postal_code',      'country' => 'country',    ),    'info' => array(      'name' => array(        'sortable' => 1,        'separator' => '',      ),      'street' => array(        'sortable' => 1,        'separator' => '',      ),      'city' => array(        'sortable' => 1,        'separator' => '',      ),      'province' => array(        'sortable' => 1,        'separator' => '',      ),      'postal_code' => array(        'sortable' => 1,        'separator' => '',      ),      'country' => array(        'sortable' => 1,        'separator' => '',      ),    ),    'default' => '-1',  ));  $handler = $view->new_display('page', 'Page', 'page_1');  $handler->override_option('path', 'location/users');  $handler->override_option('menu', array(    'type' => 'normal',    'title' => 'User location table',    'weight' => '0',  ));  $handler->override_option('tab_options', array(    'type' => 'none',    'title' => '',    'weight' => 0,  ));  $views[$view->name] = $view;  return $views;}
 |