Beispiel #1
0
 protected function GetInnerHtml()
 {
     $strText = parent::GetInnerHtml();
     if ($this->blnDismissable) {
         $strText = \Qhtml::RenderTag('button', ['type' => 'button', 'class' => 'close', 'data-dismiss' => 'alert', 'aria-label' => "Close"], '<span aria-hidden="true">&times;</span>', false, true) . $strText;
     }
     return $strText;
 }