8ac59801be
Update commons modules to release 7.12, and move the codebase under modules/commons instead of constant fetching from remote repository. The commons.make file removed so it is not required to rebuild groups distribution. Change-Id: I3be393ba1af34427e2915b18ab1ad718fd4e54db
67 lines
1.8 KiB
PHP
67 lines
1.8 KiB
PHP
<?php
|
|
/**
|
|
* @file
|
|
* commons_topics.features.field_instance.inc
|
|
*/
|
|
|
|
/**
|
|
* Implements hook_field_default_field_instances().
|
|
*/
|
|
function commons_topics_field_default_field_instances() {
|
|
$field_instances = array();
|
|
|
|
// Get a list of content types that should have the field_topics field added.
|
|
$commons_groups_entity_types = commons_topics_get_entity_types_with_topics();
|
|
if (!empty($commons_groups_entity_types)) {
|
|
foreach ($commons_groups_entity_types as $entity_type => $bundles) {
|
|
foreach(array_keys($bundles) as $bundle) {
|
|
commons_topics_field_definition($field_instances, $entity_type, $bundle);
|
|
}
|
|
}
|
|
}
|
|
|
|
return $field_instances;
|
|
}
|
|
|
|
function commons_topics_field_definition(&$field_instances, $entity_type, $bundle) {
|
|
// Exported field_instance: 'ENTITY_TYPE-BUNDLE-field_topics'
|
|
$field_instances["$entity_type-$bundle-field_topics"] = array(
|
|
'bundle' => $bundle,
|
|
'default_value' => NULL,
|
|
'deleted' => '0',
|
|
'description' => '',
|
|
'display' => array(
|
|
'default' => array(
|
|
'label' => 'above',
|
|
'module' => 'taxonomy',
|
|
'settings' => array(),
|
|
'type' => 'taxonomy_term_reference_link',
|
|
'weight' => '6',
|
|
),
|
|
'teaser' => array(
|
|
'label' => 'above',
|
|
'settings' => array(),
|
|
'type' => 'hidden',
|
|
'weight' => 0,
|
|
),
|
|
),
|
|
'entity_type' => $entity_type,
|
|
'field_name' => 'field_topics',
|
|
'label' => 'Topics',
|
|
'required' => 0,
|
|
'settings' => array(
|
|
'user_register_form' => FALSE,
|
|
),
|
|
'widget' => array(
|
|
'active' => 0,
|
|
'module' => 'taxonomy',
|
|
'settings' => array(
|
|
'autocomplete_path' => 'taxonomy/autocomplete',
|
|
'size' => 60,
|
|
),
|
|
'type' => 'taxonomy_autocomplete',
|
|
'weight' => '13',
|
|
),
|
|
);
|
|
}
|