예제 #1
0
 /**
  * @param string $caption
  * @param string $contentEncoding
  * @param string $message
  * @param string $description
  * @param Page   $parentPage
  */
 public function __construct($caption, $contentEncoding, $message, $description, $parentPage)
 {
     parent::__construct($caption, $contentEncoding);
     $this->parentPage = $parentPage;
     $this->message = $message;
     $this->description = $description;
 }
예제 #2
0
 public function __construct()
 {
     parent::__construct('Login', 'UTF-8');
     $this->OnGetCustomTemplate = new Event();
 }
 public function __construct($tableBasedGrantsManager)
 {
     parent::__construct($this->GetCaption(), 'UTF-8');
     $this->tableBasedGrantsManager = $tableBasedGrantsManager;
     $this->OnGetCustomTemplate = new Event();
 }