You are here

HoneypotTestController.php in Honeypot 2.0.x

File

tests/modules/honeypot_test/src/Controller/HoneypotTestController.php
View source
<?php

namespace Drupal\honeypot_test\Controller;

use Drupal\Core\Form\FormState;
use Symfony\Component\HttpFoundation\JsonResponse;
use Drupal\Core\StringTranslation\StringTranslationTrait;

/**
 * Controller for honeypot_test routes.
 */
class HoneypotTestController {
  use StringTranslationTrait;

  /**
   * Page that triggers a programmatic form submission.
   *
   * Returns the validation errors triggered by the form submission as json.
   */
  public function submitFormPage() {
    $form_state = new FormState();
    $values = [
      'name' => 'robo-user',
      'mail' => 'robouser@example.com',
      'op' => $this
        ->t('Submit'),
    ];
    $form_state
      ->setValues($values);
    \Drupal::formBuilder()
      ->submitForm('\\Drupal\\user\\Form\\UserPasswordForm', $form_state);
    return new JsonResponse($form_state
      ->getErrors());
  }

}

Classes

Namesort descending Description
HoneypotTestController Controller for honeypot_test routes.