ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
RequestForForm.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
27 
29 {
30  protected Request $request;
31  protected ?PathInterface $path;
32 
33  public function __construct(
34  Request $request,
35  ?PathInterface $path = null
36  ) {
37  $this->request = $request;
38  $this->path = $path;
39  }
40 
41  public function path(): ?PathInterface
42  {
43  return $this->path;
44  }
45 
47  {
48  return $form->withRequest($this->request);
49  }
50 
52  {
53  return $modal->withRequest($this->request);
54  }
55 }
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
__construct(Request $request, ?PathInterface $path=null)