123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140 |
- <?php
- /**
- * @file
- * ffdn_common.features.field_instance.inc
- */
- /**
- * Implements hook_field_default_field_instances().
- */
- function ffdn_common_field_default_field_instances() {
- $field_instances = array();
- // Exported field_instance: 'comment-comment_node_page-comment_body'.
- $field_instances['comment-comment_node_page-comment_body'] = array(
- 'bundle' => 'comment_node_page',
- 'default_value' => NULL,
- 'deleted' => 0,
- 'description' => '',
- 'display' => array(
- 'default' => array(
- 'label' => 'hidden',
- 'module' => 'text',
- 'settings' => array(),
- 'type' => 'text_default',
- 'weight' => 0,
- ),
- ),
- 'entity_type' => 'comment',
- 'field_name' => 'comment_body',
- 'label' => 'Comment',
- 'required' => TRUE,
- 'settings' => array(
- 'text_processing' => 1,
- 'user_register_form' => FALSE,
- ),
- 'widget' => array(
- 'module' => 'text',
- 'settings' => array(
- 'rows' => 5,
- ),
- 'type' => 'text_textarea',
- 'weight' => 0,
- ),
- );
- // 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' => 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_attachment'.
- $field_instances['node-page-field_attachment'] = array(
- 'bundle' => 'page',
- 'deleted' => 0,
- 'description' => 'Vous pouvez joindre des fichiers à la page, si nécessaire.',
- 'display' => array(
- 'default' => array(
- 'label' => 'above',
- 'settings' => array(),
- 'type' => 'hidden',
- 'weight' => 2,
- ),
- 'teaser' => array(
- 'label' => 'above',
- 'settings' => array(),
- 'type' => 'hidden',
- 'weight' => 0,
- ),
- ),
- 'entity_type' => 'node',
- 'field_name' => 'field_attachment',
- 'label' => 'Pièces jointes',
- 'required' => 0,
- 'settings' => array(
- 'description_field' => 1,
- 'file_directory' => 'files',
- 'file_extensions' => 'txt pdf odt odf ods doc xls png jpeg jpg gif mp3 mp4 mkv ogg ogv avi',
- 'max_filesize' => '',
- 'user_register_form' => FALSE,
- ),
- 'widget' => array(
- 'active' => 1,
- 'module' => 'file',
- 'settings' => array(
- 'progress_indicator' => 'throbber',
- ),
- 'type' => 'file_generic',
- 'weight' => 31,
- ),
- );
- // Translatables
- // Included for use with string extractors like potx.
- t('Body');
- t('Comment');
- t('Pièces jointes');
- t('Vous pouvez joindre des fichiers à la page, si nécessaire.');
- return $field_instances;
- }
|