コード例 #1
0
ファイル: PanelHeading.php プロジェクト: tekkla/core-html
 /**
  *
  * {@inheritDoc}
  *
  * @see \Core\Html\Bootstrap\Panel\AbstractPanelElement::build()
  */
 public function build()
 {
     if (!empty($this->title)) {
         $this->inner = $this->title->build();
     }
     return parent::build();
 }
コード例 #2
0
ファイル: Panel.php プロジェクト: tekkla/core-html
 /**
  *
  * {@inheritDoc}
  *
  * @see \Core\Html\Bootstrap\Panel\AbstractPanelElement::build()
  */
 public function build()
 {
     $this->html->addCss('panel-' . $this->context);
     return parent::build();
 }