예제 #1
0
파일: Prompt.php 프로젝트: neatphp/neat
 /**
  * Retrieves the HTML string.
  *
  * @return string
  */
 public function toHtml()
 {
     $dialog = new Dialog();
     $dialog->bottom = new Bar();
     $dialog->center = $this->content;
     $dialog->bottom->right = $this->cancel->toHtml() . $this->confirm->toHtml();
     $this->content = $dialog->toHtml();
     return parent::toHtml();
 }