comparison core/modules/media/src/IFrameMarkup.php @ 17:129ea1e6d783

Update, including to Drupal core 8.6.10
author Chris Cannam
date Thu, 28 Feb 2019 13:21:36 +0000
parents
children
comparison
equal deleted inserted replaced
16:c2387f117808 17:129ea1e6d783
1 <?php
2
3 namespace Drupal\media;
4
5 use Drupal\Component\Render\MarkupInterface;
6 use Drupal\Component\Render\MarkupTrait;
7
8 /**
9 * Defines an object that wraps oEmbed markup for use in an iFrame.
10 *
11 * This object is not constructed with a known safe string as the strings come
12 * from an external site. It must not be used outside the Media module's oEmbed
13 * iframe rendering.
14 *
15 * @internal
16 * This object is an internal part of the oEmbed system and should only be
17 * used in \Drupal\media\Controller\OEmbedIframeController.
18 *
19 * @see \Drupal\media\Controller\OEmbedIframeController
20 */
21 class IFrameMarkup implements MarkupInterface {
22 use MarkupTrait;
23
24 }