/** * Renders the header HTML markup of the modal */ public function renderModalHeader() { echo '<div class="modal-header">' . PHP_EOL; if ($this->closeText) { echo BSHtml::closeButton($this->closeText, array('data-dismiss' => 'modal')); } echo BSHtml::tag('h3', array(), $this->header); echo '</div>' . PHP_EOL; }