123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131 |
- <?php
- /**
- * @file
- * page.features.field_instance.inc
- */
- /**
- * Implements hook_field_default_field_instances().
- */
- function page_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(
- 'chapter' => array(
- 'label' => 'above',
- 'settings' => array(),
- 'type' => 'hidden',
- 'weight' => 0,
- ),
- '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' => TRUE,
- '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,
- ),
- );
- // Exported field_instance: 'node-page-field_fichiers'
- $field_instances['node-page-field_fichiers'] = array(
- 'bundle' => 'page',
- 'deleted' => 0,
- 'description' => '',
- 'display' => array(
- 'chapter' => array(
- 'label' => 'above',
- 'settings' => array(),
- 'type' => 'hidden',
- 'weight' => 0,
- ),
- 'default' => array(
- 'label' => 'hidden',
- 'settings' => array(),
- 'type' => 'hidden',
- 'weight' => 1,
- ),
- 'teaser' => array(
- 'label' => 'above',
- 'settings' => array(),
- 'type' => 'hidden',
- 'weight' => 0,
- ),
- ),
- 'entity_type' => 'node',
- 'field_name' => 'field_fichiers',
- 'label' => 'Fichiers',
- 'required' => 0,
- 'settings' => array(
- 'description_field' => 0,
- 'file_directory' => 'fichiers_joinds',
- 'file_extensions' => 'txt pdf doc docx csv epub',
- 'max_filesize' => '',
- 'user_register_form' => FALSE,
- ),
- 'widget' => array(
- 'active' => 1,
- 'module' => 'file',
- 'settings' => array(
- 'insert' => 1,
- 'insert_absolute' => 0,
- 'insert_class' => '',
- 'insert_default' => 'icon_link',
- 'insert_styles' => array(
- 'auto' => 0,
- 'icon_link' => 'icon_link',
- 'image' => 0,
- 'image_large' => 0,
- 'image_linkit_thumb' => 0,
- 'image_medium' => 0,
- 'image_thumbnail' => 0,
- 'link' => 0,
- ),
- 'insert_width' => '',
- 'progress_indicator' => 'throbber',
- ),
- 'type' => 'file_generic',
- 'weight' => 100,
- ),
- );
- // Translatables
- // Included for use with string extractors like potx.
- t('Body');
- t('Fichiers');
- return $field_instances;
- }
|