Created
April 24, 2014 05:19
-
-
Save nvahalik/11242391 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$view = new view(); | |
$view->name = 'bundle_entity_reference_display'; | |
$view->description = ''; | |
$view->tag = 'default'; | |
$view->base_table = 'commerce_product'; | |
$view->human_name = 'Bundle Entity Reference Display'; | |
$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['use_more_always'] = FALSE; | |
$handler->display->display_options['access']['type'] = 'none'; | |
$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['style_plugin'] = 'default'; | |
$handler->display->display_options['row_plugin'] = 'fields'; | |
/* Field: Commerce Product: Product ID */ | |
$handler->display->display_options['fields']['product_id']['id'] = 'product_id'; | |
$handler->display->display_options['fields']['product_id']['table'] = 'commerce_product'; | |
$handler->display->display_options['fields']['product_id']['field'] = 'product_id'; | |
$handler->display->display_options['fields']['product_id']['exclude'] = TRUE; | |
$handler->display->display_options['fields']['product_id']['link_to_product'] = 0; | |
/* Field: Commerce Product: SKU */ | |
$handler->display->display_options['fields']['sku']['id'] = 'sku'; | |
$handler->display->display_options['fields']['sku']['table'] = 'commerce_product'; | |
$handler->display->display_options['fields']['sku']['field'] = 'sku'; | |
$handler->display->display_options['fields']['sku']['exclude'] = TRUE; | |
$handler->display->display_options['fields']['sku']['link_to_product'] = 0; | |
/* Field: Commerce Product: Title */ | |
$handler->display->display_options['fields']['title']['id'] = 'title'; | |
$handler->display->display_options['fields']['title']['table'] = 'commerce_product'; | |
$handler->display->display_options['fields']['title']['field'] = 'title'; | |
$handler->display->display_options['fields']['title']['label'] = ''; | |
$handler->display->display_options['fields']['title']['exclude'] = TRUE; | |
$handler->display->display_options['fields']['title']['element_label_colon'] = FALSE; | |
$handler->display->display_options['fields']['title']['link_to_product'] = 0; | |
/* Field: Global: Custom text */ | |
$handler->display->display_options['fields']['nothing']['id'] = 'nothing'; | |
$handler->display->display_options['fields']['nothing']['table'] = 'views'; | |
$handler->display->display_options['fields']['nothing']['field'] = 'nothing'; | |
$handler->display->display_options['fields']['nothing']['label'] = ''; | |
$handler->display->display_options['fields']['nothing']['alter']['text'] = '[title], [sku] (#[product_id])'; | |
$handler->display->display_options['fields']['nothing']['element_label_colon'] = FALSE; | |
/* Filter criterion: Commerce Product: Type */ | |
$handler->display->display_options['filters']['type']['id'] = 'type'; | |
$handler->display->display_options['filters']['type']['table'] = 'commerce_product'; | |
$handler->display->display_options['filters']['type']['field'] = 'type'; | |
$handler->display->display_options['filters']['type']['operator'] = 'not in'; | |
$handler->display->display_options['filters']['type']['value'] = array( | |
'commerce_bundle_group' => 'commerce_bundle_group', | |
); | |
/* Display: Entity Reference */ | |
$handler = $view->new_display('entityreference', 'Entity Reference', 'entityreference_1'); | |
$handler->display->display_options['defaults']['title'] = FALSE; | |
$handler->display->display_options['pager']['type'] = 'some'; | |
$handler->display->display_options['defaults']['style_plugin'] = FALSE; | |
$handler->display->display_options['style_plugin'] = 'entityreference_style'; | |
$handler->display->display_options['style_options']['search_fields'] = array( | |
'sku' => 'sku', | |
'title' => 'title', | |
'product_id' => 0, | |
'nothing' => 0, | |
); | |
$handler->display->display_options['defaults']['style_options'] = FALSE; | |
$handler->display->display_options['defaults']['row_plugin'] = FALSE; | |
$handler->display->display_options['row_plugin'] = 'entityreference_fields'; | |
$handler->display->display_options['defaults']['row_options'] = FALSE; | |
$translatables['bundle_entity_reference_display'] = array( | |
t('Master'), t('more'), t('Apply'), t('Reset'), t('Sort by'), t('Asc'), | |
t('Desc'), t('Items per page'), t('- All -'), t('Offset'), t('« first'), | |
t('‹ previous'), t('next ›'), t('last »'), t('Product ID'), | |
t('SKU'), t('[title], [sku] (#[product_id])'), t('Entity Reference'), | |
); | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment