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
63 lines
1.4 KiB
PHP
63 lines
1.4 KiB
PHP
<?php
|
|
/**
|
|
* @file
|
|
* commons_pages.features.field_instance.inc
|
|
*/
|
|
|
|
/**
|
|
* Implements hook_field_default_field_instances().
|
|
*/
|
|
function commons_pages_field_default_field_instances() {
|
|
$field_instances = array();
|
|
|
|
// Exported field_instance: 'node-page-body'
|
|
$field_instances['node-page-body'] = array(
|
|
'bundle' => 'page',
|
|
'default_value' => NULL,
|
|
'deleted' => 0,
|
|
'description' => '',
|
|
'display' => array(
|
|
'default' => array(
|
|
'label' => 'hidden',
|
|
'module' => 'text',
|
|
'settings' => array(),
|
|
'type' => 'text_default',
|
|
'weight' => 0,
|
|
),
|
|
'teaser' => array(
|
|
'label' => 'hidden',
|
|
'module' => 'text',
|
|
'settings' => array(
|
|
'trim_length' => 600,
|
|
),
|
|
'type' => 'text_summary_or_trimmed',
|
|
'weight' => 0,
|
|
),
|
|
),
|
|
'entity_type' => 'node',
|
|
'field_name' => 'body',
|
|
'label' => 'Body',
|
|
'required' => FALSE,
|
|
'settings' => array(
|
|
'display_summary' => FALSE,
|
|
'text_processing' => 1,
|
|
'user_register_form' => FALSE,
|
|
),
|
|
'widget' => array(
|
|
'module' => 'text',
|
|
'settings' => array(
|
|
'rows' => 20,
|
|
'summary_rows' => 5,
|
|
),
|
|
'type' => 'text_textarea_with_summary',
|
|
'weight' => -4,
|
|
),
|
|
);
|
|
|
|
// Translatables
|
|
// Included for use with string extractors like potx.
|
|
t('Body');
|
|
|
|
return $field_instances;
|
|
}
|