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
118 lines
2.8 KiB
PHP
118 lines
2.8 KiB
PHP
<?php
|
|
/**
|
|
* @file
|
|
* commons_posts.features.field_instance.inc
|
|
*/
|
|
|
|
/**
|
|
* Implements hook_field_default_field_instances().
|
|
*/
|
|
function commons_posts_field_default_field_instances() {
|
|
$field_instances = array();
|
|
|
|
// Exported field_instance: 'message-commons_posts_post_created-field_target_nodes'
|
|
$field_instances['message-commons_posts_post_created-field_target_nodes'] = array(
|
|
'bundle' => 'commons_posts_post_created',
|
|
'default_value' => NULL,
|
|
'default_value_function' => '',
|
|
'deleted' => 0,
|
|
'description' => '',
|
|
'display' => array(
|
|
'default' => array(
|
|
'label' => 'hidden',
|
|
'settings' => array(),
|
|
'type' => 'hidden',
|
|
'weight' => 0,
|
|
),
|
|
'message_notify_email_body' => array(
|
|
'label' => 'above',
|
|
'settings' => array(),
|
|
'type' => 'hidden',
|
|
'weight' => 0,
|
|
),
|
|
'message_notify_email_subject' => array(
|
|
'label' => 'above',
|
|
'settings' => array(),
|
|
'type' => 'hidden',
|
|
'weight' => 0,
|
|
),
|
|
),
|
|
'entity_type' => 'message',
|
|
'field_name' => 'field_target_nodes',
|
|
'label' => 'Target nodes',
|
|
'required' => 1,
|
|
'settings' => array(
|
|
'behaviors' => array(
|
|
'prepopulate' => array(
|
|
'status' => 0,
|
|
),
|
|
),
|
|
'user_register_form' => FALSE,
|
|
),
|
|
'widget' => array(
|
|
'active' => 1,
|
|
'module' => 'entityreference',
|
|
'settings' => array(
|
|
'match_operator' => 'CONTAINS',
|
|
'path' => '',
|
|
'size' => 60,
|
|
),
|
|
'type' => 'entityreference_autocomplete',
|
|
'weight' => 2,
|
|
),
|
|
);
|
|
|
|
// Exported field_instance: 'node-post-body'
|
|
$field_instances['node-post-body'] = array(
|
|
'bundle' => 'post',
|
|
'default_value' => NULL,
|
|
'deleted' => 0,
|
|
'description' => '',
|
|
'display' => array(
|
|
'default' => array(
|
|
'label' => 'hidden',
|
|
'module' => 'text',
|
|
'settings' => array(),
|
|
'type' => 'text_default',
|
|
'weight' => 2,
|
|
),
|
|
'teaser' => array(
|
|
'label' => 'hidden',
|
|
'module' => 'text',
|
|
'settings' => array(
|
|
'trim_length' => 600,
|
|
),
|
|
'type' => 'text_summary_or_trimmed',
|
|
'weight' => 1,
|
|
),
|
|
),
|
|
'display_in_partial_form' => 1,
|
|
'entity_type' => 'node',
|
|
'field_name' => 'body',
|
|
'label' => 'Body',
|
|
'required' => 0,
|
|
'settings' => array(
|
|
'display_summary' => 0,
|
|
'text_processing' => 1,
|
|
'user_register_form' => FALSE,
|
|
),
|
|
'widget' => array(
|
|
'active' => 1,
|
|
'module' => 'text',
|
|
'settings' => array(
|
|
'rows' => 20,
|
|
'summary_rows' => 5,
|
|
),
|
|
'type' => 'text_textarea_with_summary',
|
|
'weight' => 2,
|
|
),
|
|
);
|
|
|
|
// Translatables
|
|
// Included for use with string extractors like potx.
|
|
t('Body');
|
|
t('Target nodes');
|
|
|
|
return $field_instances;
|
|
}
|