ILIAS  trunk Revision v12.0_alpha-1227-g7ff6d300864
Digest.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
22
23use Generator;
27use ILIAS\UI\Component\Modal\Interruptive as InterruptiveModal;
28
29class Digest
30{
32
33 public function __construct(
35 ) {
36 $this->content_assembler = $content_assembler;
37 }
38
42 public function getContent(
43 SetInterface $set,
44 ?RequestForFormInterface $request = null
45 ): Generator {
46 yield from $this->content_assembler->get($set, $request);
47 }
48}
__construct(ContentAssembler $content_assembler)
Definition: Digest.php:33
ContentAssembler $content_assembler
Definition: Digest.php:31
getContent(SetInterface $set, ?RequestForFormInterface $request=null)
Definition: Digest.php:42
This describes a standard form.
Definition: Standard.php:30
get(string $class_name)