TestMediaFilterController.php

Same filename in other branches
  1. 8.9.x core/modules/media/tests/modules/media_test_ckeditor/src/Controller/TestMediaFilterController.php
  2. 10 core/modules/media/tests/modules/media_test_embed/src/Controller/TestMediaFilterController.php
  3. 11.x core/modules/media/tests/modules/media_test_embed/src/Controller/TestMediaFilterController.php

Namespace

Drupal\media_test_embed\Controller

File

core/modules/media/tests/modules/media_test_embed/src/Controller/TestMediaFilterController.php

View source
<?php

namespace Drupal\media_test_embed\Controller;

use Drupal\filter\FilterFormatInterface;
use Drupal\media\Controller\MediaFilterController;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;

/**
 * Controller to allow testing of error handling of Media Embed in text editors.
 */
class TestMediaFilterController extends MediaFilterController {
    
    /**
     * {@inheritdoc}
     */
    public function preview(Request $request, FilterFormatInterface $filter_format) {
        if (\Drupal::state()->get('test_media_filter_controller_throw_error', FALSE)) {
            throw new NotFoundHttpException();
        }
        return parent::preview($request, $filter_format);
    }

}

Classes

Title Deprecated Summary
TestMediaFilterController Controller to allow testing of error handling of Media Embed in text editors.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.