Updated from some -dev modules to alpha, beta or full releases
[yaffs-website] / web / modules / contrib / security_review / src / CheckSettings / TrustedHostSettings.php
diff --git a/web/modules/contrib/security_review/src/CheckSettings/TrustedHostSettings.php b/web/modules/contrib/security_review/src/CheckSettings/TrustedHostSettings.php
deleted file mode 100644 (file)
index feb95bb..0000000
+++ /dev/null
@@ -1,38 +0,0 @@
-<?php
-
-namespace Drupal\security_review\CheckSettings;
-
-use Drupal\security_review\CheckSettings;
-
-/**
- * Provides the settings form for the TrustedHosts check.
- */
-class TrustedHostSettings extends CheckSettings {
-
-  /**
-   * {@inheritdoc}
-   */
-  public function buildForm() {
-    $form = [];
-    $form['method'] = [
-      '#type' => 'radios',
-      '#title' => t('Check method'),
-      '#description' => t('Detecting the $base_url in settings.php can be done via PHP tokenization (recommended) or including the file. Note that if you have custom functionality in your settings.php it will be executed if the file is included. Including the file can result in a more accurate $base_url check if you wrap the setting in conditional statements.'),
-      '#options' => [
-        'token' => t('Tokenize settings.php (recommended)'),
-        'include' => t('Include settings.php'),
-      ],
-      '#default_value' => $this->get('method', 'token'),
-    ];
-
-    return $form;
-  }
-
-  /**
-   * {@inheritdoc}
-   */
-  public function submitForm(array &$form, array $values) {
-    $this->set('method', $values['method']);
-  }
-
-}