renderTableBody() public method

public renderTableBody ( )
示例#1
0
 /**
  * Renders the table body.
  *
  * @return string the rendering result.
  */
 public function renderTableBody()
 {
     $content = parent::renderTableBody();
     if ($this->showPageSummary) {
         return $content . $this->renderPageSummary();
     }
     return $content;
 }