ILIAS  release_9 Revision v9.13-25-g2c18ec4c24f
class.ilTestSettingsGUI.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
27 abstract class ilTestSettingsGUI
28 {
29  public function __construct(protected ilObjTest $test_object)
30  {
31  }
32 
33  protected function formPropertyExists(ilPropertyFormGUI $form, $propertyId): bool
34  {
35  return $form->getItemByPostVar($propertyId) instanceof ilFormPropertyGUI;
36  }
37 }
getItemByPostVar(string $a_post_var)
__construct(protected ilObjTest $test_object)
formPropertyExists(ilPropertyFormGUI $form, $propertyId)