Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / chi-teck / drupal-code-generator / templates / d7 / hook / form_FORM_ID_alter.twig
diff --git a/vendor/chi-teck/drupal-code-generator/templates/d7/hook/form_FORM_ID_alter.twig b/vendor/chi-teck/drupal-code-generator/templates/d7/hook/form_FORM_ID_alter.twig
new file mode 100644 (file)
index 0000000..25de869
--- /dev/null
@@ -0,0 +1,15 @@
+/**
+ * Implements hook_form_FORM_ID_alter().
+ */
+function {{ machine_name }}_form_FORM_ID_alter(&$form, &$form_state, $form_id) {
+  // Modification for the form with the given form ID goes here. For example, if
+  // FORM_ID is "user_register_form" this code would run only on the user
+  // registration form.
+
+  // Add a checkbox to registration form about agreeing to terms of use.
+  $form['terms_of_use'] = array(
+    '#type' => 'checkbox',
+    '#title' => t("I agree with the website's terms and conditions."),
+    '#required' => TRUE,
+  );
+}