ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilPollBlock.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
27 {
28  protected ilLanguage $lng;
29  protected ilObjPoll $poll;
30 
31  public function __construct(int $a_id = 0)
32  {
33  global $DIC;
34 
35  parent::__construct($a_id);
36  $this->lng = $DIC->language();
37  }
38 
42  public function setRefId(int $a_id): void
43  {
44  $this->poll = new ilObjPoll($a_id, true);
45  }
46 
47  public function getPoll(): ilObjPoll
48  {
49  return $this->poll;
50  }
51 }
__construct(int $a_id=0)
setRefId(int $a_id)
Set ref id (needed for poll access)
global $DIC
Definition: shib_login.php:22
ilLanguage $lng
This is the super class of all custom blocks.
Class ilObjPoll.
Custom block for polls.
__construct(Container $dic, ilPlugin $plugin)