Skip to content
Snippets Groups Projects
Commit bcf83117 authored by Chris Gross's avatar Chris Gross
Browse files

daily build

parent 49d87adb
No related branches found
No related tags found
No related merge requests found
Showing
with 280 additions and 100 deletions
WCM Base 7.x-1.x, 2016-01-07
----------------------------
- OCIO UUID Settings: Disable auto-adding terms to exported vocabularies.
- OCIO Taxonomy: Added tags page with better breadcrumbs.
- WCM User Profile: Fixed display bug on Leadership profiles.
- OCIO Omega Base: Alter DPS Panels layout to provide a row of 5 tiles instead of 4.
WCM Base 7.x-1.x, 2015-12-30
----------------------------
- OCIO Landing Page:
- Add option to give banner text a translucent background.
- Add option to add a link to banner text.
- OCIO Landing Page:
- Add option to give banner text a translucent background.
- Add option to add a link to banner text.
WCM Base 7.x-1.x, 2015-12-16
----------------------------
- OCIO Omega: Update to version 4.4.
- OCIO Search: Remove variable that was already declared in Panopoly Search.
- OCIO Sample Content: Remove module from profile.
- OCIO Permissions: Add Landing Page panel permissions for Site Editors.
- OCIO Omega Base:
- Minor visual modifications.
- Increase banner image max-height from 420 to 500.
- OCIO Omega 4: Minor visual modifications.
- OCIO Search: Remove variable that was already declared in Panopoly Search.
- OCIO Sample Content: Remove module from profile.
- OCIO Permissions: Add Landing Page panel permissions for Site Editors.
- OCIO Omega Base:
- Minor visual modifications.
- Increase banner image max-height from 420 to 500.
- OCIO Omega 4: Minor visual modifications.
WCM Base 7.x-1.x, 2015-12-09
----------------------------
- OCIO Search: Update Apachesolr to 1.8; security update.
- OCIO Accessibility: Add pathologic settings and update Extlink settings.
- OCIO Accessibility: Add pathologic settings and update Extlink settings.
- OCIO WYSIWYG: Add <br> to available html tags.
- OCIO Site Info: Add Google+ and Instagram social media options.
- OCIO Omega Base:
- Update to latest version of FontAwesome.
- Fix left margin on ul within accordions.
- Adjust row padding on panels.
- Add min-height to content region.
- Minor spacing adjustments to news page.
- OCIO Omega 4:
- Remove padding top on l-main (to fix gap above breadcrumbs on many pages).
- Minor adjustment to box shadows.
- OCIO Omega Base:
- Update to latest version of FontAwesome.
- Fix left margin on ul within accordions.
- Adjust row padding on panels.
- Add min-height to content region.
- Minor spacing adjustments to news page.
- OCIO Omega 4:
- Remove padding top on l-main (to fix gap above breadcrumbs on many pages).
- Minor adjustment to box shadows.
- WCM User Contact: Update contact views to not link to user profile page.
WCM Base 7.x-1.x, 2015-11-24
----------------------------
- OCIO Permissions: Added edit permissions for Editors specific panel types.
......
......@@ -7,9 +7,9 @@ dependencies[] = views
files[] = better_exposed_filters_exposed_form_plugin.inc
files[] = tests/better_exposed_filters.test
; Information added by Drupal.org packaging script on 2015-11-08
version = "7.x-3.2+37-dev"
; Information added by Drupal.org packaging script on 2016-01-07
version = "7.x-3.2+44-dev"
core = "7.x"
project = "better_exposed_filters"
datestamp = "1446999846"
datestamp = "1452128043"
......@@ -194,7 +194,7 @@ function better_exposed_filters_preprocess_views_view(&$variables) {
$filters = array();
foreach ($variables['view']->filter as $filter) {
if ($filter->options['exposed']) {
$identifier = $filter->options['is_grouped'] ? $filter->options['group_info']['identifier'] : $filter->options['expose']['identifier'];
$identifier = !empty($filter->options['is_grouped']) ? $filter->options['group_info']['identifier'] : $filter->options['expose']['identifier'];
$filters[$identifier] = array(
'required' => $filter->options['expose']['required'] ? TRUE : FALSE,
);
......
......@@ -481,7 +481,7 @@ function theme_select_as_links($vars) {
$urllist = parse_url(request_uri());
if (isset($urllist['query'])) {
$query = array();
parse_str(urldecode($urllist['query']), $query);
parse_str($urllist['query'], $query);
foreach ($query as $key => $value) {
if ($key != $name) {
continue;
......@@ -555,7 +555,7 @@ function theme_select_as_links($vars) {
$link_options = array();
// Add "active" class to the currently active filter link.
if (in_array((string) $key, $selected_options)) {
$link_options['attributes'] = array('class' => 'active');
$link_options['attributes'] = array('class' => array('active'));
}
$url = bef_replace_query_string_arg($name, $key, $multiple, FALSE, $path);
$elem['#children'] = l($value, $url, $link_options);
......@@ -733,7 +733,7 @@ function bef_replace_query_string_arg($key, $value, $multiple = FALSE, $remove =
$urllist = array_merge($urllist, parse_url(request_uri()));
$fragment = urldecode($urllist['fragment']);
$query = array();
parse_str(urldecode($urllist['query']), $query);
parse_str($urllist['query'], $query);
if (isset($query[$key]) && is_array($query[$key])) {
// Multiple values allowed for this existing key.
if ($remove && ($key_remove = array_search($value, $query[$key])) !== FALSE) {
......@@ -752,9 +752,10 @@ function bef_replace_query_string_arg($key, $value, $multiple = FALSE, $remove =
$query[$key] = $value;
}
}
// Unset page arg so we don't land on an empty page off the end of the newly filtered listing
// Unset page arg so we don't land on an empty page off the end of the newly
// filtered listing.
unset($query['page']);
return url($path, array(
return url(ltrim($path, '/'), array(
'query' => $query,
'fragment' => $fragment,
'absolute' => TRUE,
......
......@@ -98,6 +98,27 @@ class better_exposed_filters_exposed_form_plugin extends views_plugin_exposed_fo
),
),
);
$bef_options['general']['secondary_collapse_override'] = array(
'#type' => 'select',
'#title' => t('Override secondary options fieldset'),
'#default_value' => $existing['general']['secondary_collapse_override'],
'#description' => t(
'This setting overrides the secondary options fieldset collapsed value. By default the fieldset renders opened if a value within is selected and closed otherwise.'
),
'#options' => array(
0 => t('Default'),
1 => t('Always open'),
2 => t('Always closed'),
),
// Indent dependent options.
'#prefix' => '<div class="dependent-options">',
'#suffix' => '</div>',
'#states' => array(
'visible' => array(
':input[name="exposed_form_options[bef][general][allow_secondary]"]' => array('checked' => TRUE),
),
),
);
/*
* Add options for exposed sorts.
......@@ -794,23 +815,33 @@ dateFormat: "dd-mm-yy"
$context['display'] = $this->display;
drupal_alter('better_exposed_filters_settings', $settings, $context);
// Adds view's arguments (if any) to the path to be used use for #bef_path.
$view_path = $this->view->args ? implode('/', array_merge(array($this->view->get_path()), $this->view->args)) : $this->view->get_path();
// Some elements may be placed in a secondary fieldset (eg: "Advanced
// search options"). Place this after the exposed filters and before the
// rest of the items in the exposed form.
if ($allow_secondary = $settings['general']['allow_secondary']) {
// If one of the secondary widgets has exposed input, do not collapse
// the secondary fieldset.
// If one of the secondary widgets has exposed input, do not collapse the
// secondary fieldset. Or is the "always open" or "always closed" option
// is selected, use that instead.
$secondary_collapse = TRUE;
$exposed_input = $this->view->get_exposed_input();
foreach ($this->display->handler->get_handlers('filter') as $label => $filter) {
if (!$filter->options['exposed']) {
continue;
}
if (!empty($exposed_input[$filter->options['expose']['identifier']]) && $settings[$label]['more_options']['is_secondary']) {
$secondary_collapse = FALSE;
break;
if ($settings['general']['secondary_collapse_override']) {
$secondary_collapse = $settings['general']['secondary_collapse_override'] == 2;
}
else {
$exposed_input = $this->view->get_exposed_input();
foreach ($this->display->handler->get_handlers('filter') as $label => $filter) {
if (!$filter->options['exposed']) {
continue;
}
if (!empty($exposed_input[$filter->options['expose']['identifier']]) && $settings[$label]['more_options']['is_secondary']) {
$secondary_collapse = FALSE;
break;
}
}
}
$secondary = array(
'#type' => 'fieldset',
'#title' => $settings['general']['secondary_label'],
......@@ -937,7 +968,7 @@ dateFormat: "dd-mm-yy"
// select_as_links options as they will use the wrong path. We
// provide a hint for theme functions to correct this.
if (!empty($this->display->display_options['exposed_block'])) {
$form[$settings['sort']['advanced']['combine_param']]['#bef_path'] = $this->view->get_path();
$form[$settings['sort']['advanced']['combine_param']]['#bef_path'] = $view_path;
}
break;
......@@ -991,7 +1022,7 @@ dateFormat: "dd-mm-yy"
// select_as_links options as they will use the wrong path. We provide
// a hint for theme functions to correct this.
if (!empty($this->display->display_options['exposed_block'])) {
$form['sort_by']['#bef_path'] = $form['sort_order']['#bef_path'] = $this->view->get_path();
$form['sort_by']['#bef_path'] = $form['sort_order']['#bef_path'] = $view_path;
}
}
......@@ -1040,7 +1071,7 @@ dateFormat: "dd-mm-yy"
// select_as_links options as they will use the wrong path. We
// provide a hint for theme functions to correct this.
if (!empty($this->display->display_options['exposed_block'])) {
$form['sort_by']['#bef_path'] = $this->display->display_options['path'];
$form['sort_by']['#bef_path'] = $view_path;
}
}
}
......@@ -1073,7 +1104,7 @@ dateFormat: "dd-mm-yy"
// select_as_links options as they will use the wrong path. We
// provide a hint for theme functions to correct this.
if (!empty($this->display->display_options['exposed_block'])) {
$form['items_per_page']['#bef_path'] = $this->view->get_path();
$form['items_per_page']['#bef_path'] = $view_path;
}
}
break;
......@@ -1102,7 +1133,7 @@ dateFormat: "dd-mm-yy"
// Form element is designated by the element ID which is user-
// configurable.
$filter_key = 'filter-' . ($filters[$label]->options['is_grouped'] ? $filters[$label]->options['group_info']['identifier'] : $label);
$filter_key = 'filter-' . (!empty($filters[$label]->options['is_grouped']) ? $filters[$label]->options['group_info']['identifier'] : $label);
$filter_id = $form['#info'][$filter_key]['value'];
// Token replacement on BEF Description fields.
......@@ -1422,7 +1453,7 @@ dateFormat: "dd-mm-yy"
// select_as_links options as they will use the wrong path. We provide
// a hint for theme functions to correct this.
if (!empty($this->display->display_options['exposed_block'])) {
$form[$filter_id]['#bef_path'] = $this->view->get_path();
$form[$filter_id]['#bef_path'] = $view_path;
}
break;
......@@ -1434,7 +1465,27 @@ dateFormat: "dd-mm-yy"
$form[$filter_id]['#description'] = $options['more_options']['bef_filter_description'];
$form[$filter_id]['#return_value'] = 1;
$form[$filter_id]['#type'] = 'checkbox';
// Views populates missing values in $form_state['input'] with the
// defaults and a checkbox does not appear in $_GET (or $_POST) so it
// will appear to be missing when a user submits a form. Because of
// this, instead of unchecking the checkbox value will revert to the
// default. More, the default value for select values is reused which
// results in the checkbox always checked. So we need to add a form
// element to see whether the form is submitted or not and then we
// need to look at $_GET directly to see whether the checkbox is
// there. For security reasons, we must not copy the $_GET value.
// First, let's figure out a short name for the signal element and
// then add it.
if (empty($signal)) {
for ($signal = 'a'; isset($form[$signal]); $signal++);
// This is all the signal element needs.
$form[$signal]['#type'] = 'hidden';
}
$checked = isset($form_state['input'][$signal]) ? isset($_GET[$filter_id]) : $form[$filter_id]['#default_value'];
// Now we know whether the checkbox is checked or not, set #value
// accordingly.
$form[$filter_id]['#value'] = $checked ? $form[$filter_id]['#return_value'] : 0;
// Handoff to the theme layer.
$form[$filter_id]['#theme'] = 'checkbox';
break;
......@@ -1876,6 +1927,7 @@ dateFormat: "dd-mm-yy"
),
'allow_secondary' => FALSE,
'secondary_label' => t('Advanced options'),
'secondary_collapse_override' => 0,
),
'sort' => array(
'bef_format' => 'default',
......
......@@ -41,9 +41,9 @@ features_exclude[field][node-bef_test-field_price] = node-bef_test-field_price
features_exclude[field][node-bef_test-field_date] = node-bef_test-field_date
hidden = 1
; Information added by Drupal.org packaging script on 2015-11-08
version = "7.x-3.2+37-dev"
; Information added by Drupal.org packaging script on 2016-01-07
version = "7.x-3.2+44-dev"
core = "7.x"
project = "better_exposed_filters"
datestamp = "1446999846"
datestamp = "1452128043"
......@@ -32,6 +32,7 @@ function bef_test_content_views_default_views() {
'general' => array(
'allow_secondary' => 0,
'secondary_label' => 'Advanced options',
'secondary_collapse_override' => 0,
),
'sort' => array(
'bef_format' => 'bef_toggle_links',
......
......@@ -687,6 +687,7 @@ class BEF_TestSecondaryFilters extends BEF_TestBase {
$this->setBefSettings(array(
'exposed_form_options[bef][general][allow_secondary]' => 1,
'exposed_form_options[bef][general][secondary_label]' => 'Custom Label',
'exposed_form_options[bef][general][secondary_collapse_override]' => 0,
'exposed_form_options[bef][type][more_options][is_secondary]' => 1,
));
$this->saveView();
......@@ -697,10 +698,26 @@ class BEF_TestSecondaryFilters extends BEF_TestBase {
$this->assertFieldByXpath('//div[@id="edit-secondary-wrapper"]//fieldset/legend/span', 'Custom Label', 'Collapsible fieldset has the correct custom label');
$this->assertFieldByXpath('//div[@id="edit-secondary-wrapper"]//fieldset//select[@name="type[]"]', NULL, 'The node.type filter is within the secondary fieldset');
// Select an option and make sure the fielset is expanded when rendered.
// Select an option and make sure the fieldset is expanded when rendered.
$this->drupalGet('bef_test_page', array('query' => array('type' => 'page')));
$this->assertFieldByXpath('//div[@id="edit-secondary-wrapper"]//fieldset[contains(@class, "collapsible") and not(contains(@class, "collapsed"))]', NULL, 'Collapsible fieldset starts open');
// Verify force-open and force-closed fieldset options.
$this->setBefSettings(array(
// Always render opened.
'exposed_form_options[bef][general][secondary_collapse_override]' => 1,
));
$this->saveView();
$this->drupalGet('bef_test_page');
$this->assertFieldByXpath('//div[@id="edit-secondary-wrapper"]//fieldset[contains(@class, "collapsible") and not(contains(@class, "collapsed"))]', NULL, 'Collapsible fieldset starts open');
$this->setBefSettings(array(
// Always render closed.
'exposed_form_options[bef][general][secondary_collapse_override]' => 2,
));
$this->saveView();
$this->drupalGet('bef_test_page', array('query' => array('type' => 'page')));
$this->assertFieldByXpath('//div[@id="edit-secondary-wrapper"]//fieldset[contains(@class, "collapsible") and contains(@class, "collapsed")]', NULL, 'Collapsible fieldset starts closed');
// https://drupal.org/node/2189321
// Verify fieldset is collapsed/expanded when a custom filter ID is set.
// @TODO: Consider refactoring so we can leverage all existing tests to use
......@@ -708,6 +725,10 @@ class BEF_TestSecondaryFilters extends BEF_TestBase {
$this->editFilter('node.type', array(
'options[expose][identifier]' => 'custom_id',
));
$this->setBefSettings(array(
// Use default open/closed rendering.
'exposed_form_options[bef][general][secondary_collapse_override]' => 0,
));
$this->saveView();
$this->drupalGet('bef_test_page');
......@@ -726,6 +747,7 @@ class BEF_TestSecondaryFilters extends BEF_TestBase {
$this->setBefSettings(array(
'exposed_form_options[bef][general][allow_secondary]' => 1,
'exposed_form_options[bef][general][secondary_label]' => 'Custom Label',
'exposed_form_options[bef][general][secondary_collapse_override]' => 0,
'exposed_form_options[bef][field_bef_test_integer_value][more_options][is_secondary]' => 1,
));
$this->saveView();
......
......@@ -3,11 +3,4 @@ description = "Provides a datepicker for the 'Authored on' field on node forms."
core = 7.x
files[] = date_popup_authored.test
package = Date/Time
dependencies[] = date_popup
; Information added by drush on 2015-12-30
version = "7.x-1.1+2-dev"
core = "7.x"
project = "date_popup_authored"
datestamp = "1451456414"
dependencies[] = date_popup
\ No newline at end of file
......@@ -7,11 +7,3 @@ dependencies[] = image (>=7.8)
dependencies[] = libraries (>=2.1)
files[] = includes/views/manualcrop.views.inc
; Information added by drush on 2015-12-30
version = "7.x-1.4+109-dev"
core = "7.x"
project = "manualcrop"
datestamp = "1451456311"
......@@ -4,11 +4,3 @@ package = Workbench
core = 7.x
configure = admin/config/workbench/settings
dependencies[] = views
; Information added by drush on 2015-12-30
version = "7.x-1.2"
core = "7.x"
project = "workbench"
datestamp = "1451456360"
......@@ -4,11 +4,3 @@ package = Workbench
core = 7.x
dependencies[] = workbench
dependencies[] = media
; Information added by drush on 2015-12-30
version = "7.x-2.1"
core = "7.x"
project = "workbench_media"
datestamp = "1451456361"
......@@ -3,11 +3,3 @@ description = Test module for Workbench Moderation.
package = Workbench
core = 7.x
hidden = TRUE
; Information added by drush on 2015-12-30
version = "7.x-1.4+8-dev"
core = "7.x"
project = "workbench_moderation"
datestamp = "1451456362"
......@@ -16,11 +16,3 @@ files[] = workbench_moderation.migrate.inc
files[] = tests/external_node_update.test
files[] = tests/workbench_moderation.test
files[] = tests/workbench_moderation.files.test
; Information added by drush on 2015-12-30
version = "7.x-1.4+8-dev"
core = "7.x"
project = "workbench_moderation"
datestamp = "1451456362"
......@@ -17,6 +17,12 @@ function ocio_taxonomy_field_default_field_instances() {
'deleted' => 0,
'description' => '',
'display' => array(
'colorbox' => array(
'label' => 'above',
'settings' => array(),
'type' => 'hidden',
'weight' => 0,
),
'default' => array(
'label' => 'above',
'module' => 'taxonomy',
......@@ -65,6 +71,12 @@ function ocio_taxonomy_field_default_field_instances() {
'deleted' => 0,
'description' => '',
'display' => array(
'colorbox' => array(
'label' => 'above',
'settings' => array(),
'type' => 'hidden',
'weight' => 0,
),
'default' => array(
'label' => 'above',
'module' => 'taxonomy',
......@@ -113,6 +125,12 @@ function ocio_taxonomy_field_default_field_instances() {
'deleted' => 0,
'description' => '',
'display' => array(
'colorbox' => array(
'label' => 'above',
'settings' => array(),
'type' => 'hidden',
'weight' => 0,
),
'default' => array(
'label' => 'above',
'module' => 'taxonomy',
......@@ -191,6 +209,12 @@ function ocio_taxonomy_field_default_field_instances() {
'deleted' => 0,
'description' => '',
'display' => array(
'colorbox' => array(
'label' => 'above',
'settings' => array(),
'type' => 'hidden',
'weight' => 0,
),
'default' => array(
'label' => 'above',
'module' => 'taxonomy',
......
......@@ -15,3 +15,50 @@ function ocio_taxonomy_ctools_plugin_api($module = NULL, $api = NULL) {
return array("version" => "1");
}
}
/**
* Implements hook_views_api().
*/
function ocio_taxonomy_views_api($module = NULL, $api = NULL) {
return array("api" => "3.0");
}
/**
* Implements hook_custom_breadcrumbs_paths_features_default_settings().
*/
function ocio_taxonomy_custom_breadcrumbs_paths_features_default_settings() {
$custom_breadcrumbs = array();
// Exported custom breadcrumb: tags.
$custom_breadcrumbs['tags'] = array(
'name' => 'tags',
'titles' => 'Tags',
'paths' => 'tags',
'visibility_php' => '',
'specific_path' => 'tags/*',
'language' => '',
'machine_name' => 'tags',
);
return $custom_breadcrumbs;
}
/**
* Implements hook_custom_breadcrumbs_views_features_default_settings().
*/
function ocio_taxonomy_custom_breadcrumbs_views_features_default_settings() {
$custom_breadcrumbs = array();
// Exported custom breadcrumb: tags.
$custom_breadcrumbs['tags'] = array(
'name' => 'tags',
'titles' => 'Tags',
'paths' => '<none>',
'visibility_php' => '',
'views_path' => 'tags',
'language' => '',
'machine_name' => 'tags',
);
return $custom_breadcrumbs;
}
......@@ -5,6 +5,9 @@ package = OCIO Features
version = 7.x-1.0
project = ocio_taxonomy
dependencies[] = ctools
dependencies[] = custom_breadcrumbs_features
dependencies[] = custom_breadcrumbs_paths
dependencies[] = custom_breadcrumbs_views
dependencies[] = ds
dependencies[] = features
dependencies[] = strongarm
......@@ -14,6 +17,9 @@ dependencies[] = uuid
dependencies[] = uuid_features
features[ctools][] = ds:ds:1
features[ctools][] = strongarm:strongarm:1
features[ctools][] = views:views_default:3.0
features[custom_breadcrumbs_paths][] = tags
features[custom_breadcrumbs_views][] = tags
features[ds_layout_settings][] = taxonomy_term|ocio_tags|form
features[ds_layout_settings][] = taxonomy_term|panopoly_categories|form
features[ds_layout_settings][] = taxonomy_term|wcm_file_tags|form
......@@ -39,8 +45,11 @@ features[uuid_term][] = 48e6d0a8-38df-445c-b739-efe08f048cb6
features[uuid_term][] = 6cd2714c-91a5-4b78-8f36-ee2f613380fc
features[uuid_term][] = 958c7ff0-5741-4954-aad7-c35a2c6cc0cc
features[uuid_term][] = 9f57971f-1cbf-4b2b-a0df-262d2ea80f64
features[variable][] = custom_breadcrumbs_paths_allow_wildcards
features[variable][] = simplify_taxonomy_ocio_tags
features[variable][] = simplify_taxonomy_panopoly_categories
features[variable][] = simplify_taxonomy_wcm_file_tags
features[variable][] = simplify_taxonomy_wcm_user_contact_group
features[variable][] = simplify_taxonomy_wcm_user_leadership_group
features[views_view][] = tags
features_exclude[dependencies][views] = views
......@@ -10,6 +10,13 @@
function ocio_taxonomy_strongarm() {
$export = array();
$strongarm = new stdClass();
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'custom_breadcrumbs_paths_allow_wildcards';
$strongarm->value = 1;
$export['custom_breadcrumbs_paths_allow_wildcards'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
......
<?php
/**
* @file
* ocio_taxonomy.views_default.inc
*/
/**
* Implements hook_views_default_views().
*/
function ocio_taxonomy_views_default_views() {
$export = array();
$view = new view();
$view->name = 'tags';
$view->description = '';
$view->tag = 'default';
$view->base_table = 'taxonomy_term_data';
$view->human_name = 'Tags';
$view->core = 7;
$view->api_version = '3.0';
$view->disabled = FALSE; /* Edit this to true to make a default view disabled initially */
/* Display: Master */
$handler = $view->new_display('default', 'Master', 'default');
$handler->display->display_options['title'] = 'Tags';
$handler->display->display_options['use_more_always'] = FALSE;
$handler->display->display_options['access']['type'] = 'perm';
$handler->display->display_options['cache']['type'] = 'none';
$handler->display->display_options['query']['type'] = 'views_query';
$handler->display->display_options['exposed_form']['type'] = 'basic';
$handler->display->display_options['pager']['type'] = 'full';
$handler->display->display_options['pager']['options']['items_per_page'] = '20';
$handler->display->display_options['style_plugin'] = 'list';
$handler->display->display_options['style_options']['default_row_class'] = FALSE;
$handler->display->display_options['row_plugin'] = 'fields';
/* Field: Taxonomy term: Name */
$handler->display->display_options['fields']['name']['id'] = 'name';
$handler->display->display_options['fields']['name']['table'] = 'taxonomy_term_data';
$handler->display->display_options['fields']['name']['field'] = 'name';
$handler->display->display_options['fields']['name']['label'] = '';
$handler->display->display_options['fields']['name']['alter']['word_boundary'] = FALSE;
$handler->display->display_options['fields']['name']['alter']['ellipsis'] = FALSE;
$handler->display->display_options['fields']['name']['link_to_taxonomy'] = TRUE;
/* Filter criterion: Taxonomy vocabulary: Machine name */
$handler->display->display_options['filters']['machine_name']['id'] = 'machine_name';
$handler->display->display_options['filters']['machine_name']['table'] = 'taxonomy_vocabulary';
$handler->display->display_options['filters']['machine_name']['field'] = 'machine_name';
$handler->display->display_options['filters']['machine_name']['value'] = array(
'ocio_tags' => 'ocio_tags',
);
/* Display: Page */
$handler = $view->new_display('page', 'Page', 'page');
$handler->display->display_options['path'] = 'tags';
$export['tags'] = $view;
return $export;
}
......@@ -392,7 +392,7 @@ function ocio_uuid_settings_strongarm() {
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'uuid_features_vocabulary_terms';
$strongarm->value = 1;
$strongarm->value = 0;
$export['uuid_features_vocabulary_terms'] = $strongarm;
return $export;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment