| 1 | <?php |
||
| 14 | class EmbedInsertCommand implements CommandInterface, CommandWithAttachedAssetsInterface { |
||
| 15 | |||
| 16 | use CommandWithAttachedAssetsTrait; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * The content for the matched element(s). |
||
| 20 | * |
||
| 21 | * Either a render array or an HTML string. |
||
| 22 | * |
||
| 23 | * @var string|array |
||
| 24 | */ |
||
| 25 | protected $content; |
||
| 26 | |||
| 27 | /** |
||
| 28 | * Constructs an EmbedInsertCommand object. |
||
| 29 | * |
||
| 30 | * @param string|array $content |
||
| 31 | * The content that will be inserted in the matched element(s), either a |
||
| 32 | * render array or an HTML string. |
||
| 33 | */ |
||
| 34 | public function __construct($content) { |
||
| 37 | |||
| 38 | /** |
||
| 39 | * {@inheritdoc} |
||
| 40 | */ |
||
| 41 | public function render() { |
||
| 47 | |||
| 48 | } |
||
| 49 |