예제 #1
0
파일: Dialog.php 프로젝트: neatphp/neat
 /**
  * Retrieves the HTML string.
  *
  * @return string
  */
 public function toHtml()
 {
     if (empty($this->top->right)) {
         $style = 'style="cursor:pointer;"';
         $onclick = sprintf('onclick="neat.toggle(\'%s\', \'%s\');"', $this->id, $this->overlay->id);
         $this->top->right = sprintf('<strong %s %s>X</strong>', $style, $onclick);
     }
     return $this->overlay . parent::toHtml();
 }