Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / chi-teck / drupal-code-generator / templates / d7 / hook / field_instance_settings_form.twig
diff --git a/vendor/chi-teck/drupal-code-generator/templates/d7/hook/field_instance_settings_form.twig b/vendor/chi-teck/drupal-code-generator/templates/d7/hook/field_instance_settings_form.twig
new file mode 100644 (file)
index 0000000..6a43201
--- /dev/null
@@ -0,0 +1,30 @@
+/**
+ * Implements hook_field_instance_settings_form().
+ */
+function {{ machine_name }}_field_instance_settings_form($field, $instance) {
+  $settings = $instance['settings'];
+
+  $form['text_processing'] = array(
+    '#type' => 'radios',
+    '#title' => t('Text processing'),
+    '#default_value' => $settings['text_processing'],
+    '#options' => array(
+      t('Plain text'),
+      t('Filtered text (user selects text format)'),
+    ),
+  );
+  if ($field['type'] == 'text_with_summary') {
+    $form['display_summary'] = array(
+      '#type' => 'select',
+      '#title' => t('Display summary'),
+      '#options' => array(
+        t('No'),
+        t('Yes'),
+      ),
+      '#description' => t('Display the summary to allow the user to input a summary value. Hide the summary to automatically fill it with a trimmed portion from the main post.'),
+      '#default_value' => !empty($settings['display_summary']) ? $settings['display_summary'] :  0,
+    );
+  }
+
+  return $form;
+}