ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
Markdown.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
22
24use ILIAS\UI\Component\Input\Field\Markdown as MarkdownInterface;
25use ILIAS\Refinery\Factory as Refinery;
26use ILIAS\Data\Factory as DataFactory;
27
31class Markdown extends Textarea implements MarkdownInterface
32{
33 public function __construct(
34 DataFactory $data_factory,
36 protected MarkdownRenderer $md_renderer,
37 string $label,
38 ?string $byline,
39 ) {
40 parent::__construct($data_factory, $refinery, $label, $byline);
41 }
42
44 {
45 return $this->md_renderer;
46 }
47}
Builds data types.
Definition: Factory.php:36
__construct(DataFactory $data_factory, Refinery $refinery, protected MarkdownRenderer $md_renderer, string $label, ?string $byline,)
Definition: Markdown.php:33
This implements the textarea input.
Definition: Textarea.php:34
__construct(Container $dic, ilPlugin $plugin)
@inheritDoc
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition: Checkbox.php:21