示例#1
0
文件: Response.php 项目: phecho/Turbo
 /**
  * Get the content/body to return to browser.
  *
  * If the request is a pjax one, only the body is returned.
  *
  * @param string $value
  * @return string
  */
 public function body($value = false)
 {
     $value and $this->body = $value;
     // Deal with pjax request
     $turbo = new Turbo();
     if ($turbo->isPjax()) {
         $this->body = $turbo->extract((string) $this->body);
     }
     // Fire event, then remove so that not called multiple times
     Event::trigger('turbo.pjax');
     Event::unregister('turbo.pjax');
     return parent::body($this->body);
 }