|
@@ -0,0 +1,105 @@
|
|
|
|
+<?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: '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('Pièces jointes');
|
|
|
|
+ t('Vous pouvez joindre des fichiers à la page, si nécessaire.');
|
|
|
|
+
|
|
|
|
+ return $field_instances;
|
|
|
|
+}
|