You are here

commons_body.features.field_base.inc in Drupal Commons 7.3

File

modules/commons/commons_body/commons_body.features.field_base.inc
View source
<?php

/**
 * @file
 * commons_body.features.field_base.inc
 */

/**
 * Implements hook_field_default_field_bases().
 */
function commons_body_field_default_field_bases() {
  $field_bases = array();

  // Exported field_base: 'body'
  $field_bases['body'] = array(
    'active' => 1,
    'cardinality' => 1,
    'deleted' => 0,
    'entity_types' => array(
      0 => 'node',
    ),
    'field_name' => 'body',
    'indexes' => array(
      'format' => array(
        0 => 'format',
      ),
    ),
    'locked' => 0,
    'module' => 'text',
    'settings' => array(),
    'translatable' => 0,
    'type' => 'text_with_summary',
  );
  return $field_bases;
}

Functions

Namesort descending Description
commons_body_field_default_field_bases Implements hook_field_default_field_bases().