ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.assAnswerBinaryStateImage.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
37 {
38  protected ?string $image = null;
39 
50  public function __construct($answertext = "", $points = 0.0, $order = 0, $state = false, ?string $a_image = null, int $id = -1)
51  {
52  parent::__construct($answertext, (float) $points, $order, $state, $id);
53  $this->setImage($a_image);
54  }
55 
56  public function getImage(): ?string
57  {
58  return $this->image;
59  }
60 
61  public function setImage(?string $image = null): void
62  {
63  if ($image === '') {
64  throw new \Exception('imagename must not be empty');
65  }
66  $this->image = $image;
67  }
68 
69  public function hasImage(): bool
70  {
71  return $this->image !== null;
72  }
73 }
Class for answers with a binary state indicator.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
__construct(Container $dic, ilPlugin $plugin)
__construct($answertext="", $points=0.0, $order=0, $state=false, ?string $a_image=null, int $id=-1)
ASS_AnswerBinaryStateImage constructor The constructor takes possible arguments an creates an instanc...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...