ILIAS  release_5-0 Revision 5.0.0-1144-gc4397b1f870
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilTermsOfServiceSignedDocumentFormElementGUI.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (c) 1998-2014 ILIAS open source, Extended GPL, see docs/LICENSE */
3 
4 require_once 'Services/Form/classes/class.ilFormPropertyGUI.php';
5 
10 {
14  protected $entity;
15 
21  public function __construct($a_title = '', $a_postvar = '', ilTermsOfServiceAcceptanceEntity $entity)
22  {
23  parent::__construct($a_title, $a_postvar);
24  $this->entity = $entity;
25  }
26 
30  public function checkInput()
31  {
32  return true;
33  }
34 
38  public function insert(ilTemplate $tpl)
39  {
43  global $lng;
44 
45  $local_tpl = new ilTemplate('tpl.prop_tos_signed_document.html', true, true, 'Services/TermsOfService');
46 
47  require_once 'Services/UIComponent/Modal/classes/class.ilModalGUI.php';
48  $modal = ilModalGUI::getInstance();
49  $modal->setHeading($lng->txt('tos_agreement_document'));
50  $modal->setId('accepted_tos_' . $this->entity->getUserId());
51  $modal->setBody($this->entity->getText());
52 
53  require_once 'Services/UIComponent/Glyph/classes/class.ilGlyphGUI.php';
54  $local_tpl->setVariable('MODAL_TRIGGER_HTML', ilGlyphGUI::get(ilGlyphGUI::SEARCH));
55  $local_tpl->setVariable('MODAL', $modal->getHTML());
56  $local_tpl->setVariable('MODAL_ID', 'accepted_tos_' . $this->entity->getUserId());
57 
58  $tpl->setCurrentBlock('prop_generic');
59  $tpl->setVariable('PROP_GENERIC', $local_tpl->get());
60  $tpl->parseCurrentBlock();
61  }
62 }
static get($a_glyph, $a_text="")
Get glyph html.
__construct($a_title='', $a_postvar='', ilTermsOfServiceAcceptanceEntity $entity)
global $tpl
Definition: ilias.php:8
setVariable($variable, $value='')
Sets a variable value.
Definition: IT.php:626
special template class to simplify handling of ITX/PEAR
setCurrentBlock($part="DEFAULT")
Überladene Funktion, die sich hier lokal noch den aktuellen Block merkt.
static getInstance()
Get instance.
This class represents a property in a property form.
global $lng
Definition: privfeed.php:40
parseCurrentBlock($part="DEFAULT")
Überladene Funktion, die auf den aktuelle Block vorher noch ein replace ausführt public...