123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182 |
- <?php
- /**
- * @file
- * popsu_actualites.features.field_base.inc
- */
- /**
- * Implements hook_field_default_field_bases().
- */
- function popsu_actualites_field_default_field_bases() {
- $field_bases = array();
- // Exported field_base: 'field_popsu_actu_attachment'.
- $field_bases['field_popsu_actu_attachment'] = array(
- 'active' => 1,
- 'cardinality' => -1,
- 'deleted' => 0,
- 'entity_types' => array(),
- 'field_name' => 'field_popsu_actu_attachment',
- 'indexes' => array(
- 'fid' => array(
- 0 => 'fid',
- ),
- ),
- 'locked' => 0,
- 'module' => 'file',
- 'settings' => array(
- 'display_default' => 0,
- 'display_field' => 0,
- 'uri_scheme' => 'public',
- ),
- 'translatable' => 0,
- 'type' => 'file',
- );
- // Exported field_base: 'field_popsu_actu_body'.
- $field_bases['field_popsu_actu_body'] = array(
- 'active' => 1,
- 'cardinality' => 1,
- 'deleted' => 0,
- 'entity_types' => array(),
- 'field_name' => 'field_popsu_actu_body',
- 'indexes' => array(
- 'format' => array(
- 0 => 'format',
- ),
- ),
- 'locked' => 0,
- 'module' => 'text',
- 'settings' => array(),
- 'translatable' => 0,
- 'type' => 'text_with_summary',
- );
- // Exported field_base: 'field_popsu_actu_date'.
- $field_bases['field_popsu_actu_date'] = array(
- 'active' => 1,
- 'cardinality' => 1,
- 'deleted' => 0,
- 'entity_types' => array(),
- 'field_name' => 'field_popsu_actu_date',
- 'indexes' => array(),
- 'locked' => 0,
- 'module' => 'date',
- 'settings' => array(
- 'cache_count' => 4,
- 'cache_enabled' => 0,
- 'granularity' => array(
- 'day' => 'day',
- 'hour' => 0,
- 'minute' => 0,
- 'month' => 'month',
- 'second' => 0,
- 'year' => 'year',
- ),
- 'timezone_db' => '',
- 'todate' => '',
- 'tz_handling' => 'none',
- ),
- 'translatable' => 0,
- 'type' => 'datetime',
- );
- // Exported field_base: 'field_popsu_actu_date_fin'.
- $field_bases['field_popsu_actu_date_fin'] = array(
- 'active' => 1,
- 'cardinality' => 1,
- 'deleted' => 0,
- 'entity_types' => array(),
- 'field_name' => 'field_popsu_actu_date_fin',
- 'indexes' => array(),
- 'locked' => 0,
- 'module' => 'date',
- 'settings' => array(
- 'cache_count' => 4,
- 'cache_enabled' => 0,
- 'granularity' => array(
- 'day' => 'day',
- 'hour' => 0,
- 'minute' => 0,
- 'month' => 'month',
- 'second' => 0,
- 'year' => 'year',
- ),
- 'timezone_db' => '',
- 'todate' => '',
- 'tz_handling' => 'none',
- ),
- 'translatable' => 0,
- 'type' => 'datetime',
- );
- // Exported field_base: 'field_popsu_actu_enhome'.
- $field_bases['field_popsu_actu_enhome'] = array(
- 'active' => 1,
- 'cardinality' => 1,
- 'deleted' => 0,
- 'entity_types' => array(),
- 'field_name' => 'field_popsu_actu_enhome',
- 'indexes' => array(
- 'value' => array(
- 0 => 'value',
- ),
- ),
- 'locked' => 0,
- 'module' => 'list',
- 'settings' => array(
- 'allowed_values' => array(
- 0 => '',
- 1 => 'Publié sur la page d\'accueil',
- ),
- 'allowed_values_function' => '',
- ),
- 'translatable' => 0,
- 'type' => 'list_boolean',
- );
- // Exported field_base: 'field_popsu_actu_image'.
- $field_bases['field_popsu_actu_image'] = array(
- 'active' => 1,
- 'cardinality' => 1,
- 'deleted' => 0,
- 'entity_types' => array(),
- 'field_name' => 'field_popsu_actu_image',
- 'indexes' => array(
- 'fid' => array(
- 0 => 'fid',
- ),
- ),
- 'locked' => 0,
- 'module' => 'image',
- 'settings' => array(
- 'default_image' => 0,
- 'uri_scheme' => 'public',
- ),
- 'translatable' => 0,
- 'type' => 'image',
- );
- // Exported field_base: 'field_popsu_actu_soustitre'.
- $field_bases['field_popsu_actu_soustitre'] = array(
- 'active' => 1,
- 'cardinality' => 1,
- 'deleted' => 0,
- 'entity_types' => array(),
- 'field_name' => 'field_popsu_actu_soustitre',
- 'indexes' => array(
- 'format' => array(
- 0 => 'format',
- ),
- ),
- 'locked' => 0,
- 'module' => 'text',
- 'settings' => array(
- 'max_length' => 255,
- ),
- 'translatable' => 0,
- 'type' => 'text',
- );
- return $field_bases;
- }
|