ILIAS  trunk Revision v11.0_alpha-1749-g1a06bdef097
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
Markdown.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
24 use ILIAS\UI\Component\Input\Field\Markdown as MarkdownInterface;
27 
31 class 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 }
This implements the textarea input.
Definition: Textarea.php:33
__construct(DataFactory $data_factory, Refinery $refinery, protected MarkdownRenderer $md_renderer, string $label, ?string $byline,)
Definition: Markdown.php:33
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition: Checkbox.php:21
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct(Container $dic, ilPlugin $plugin)