renderTableFooter() public method

Renders the table footer.
public renderTableFooter ( ) : string
return string the rendering result.
Example #1
0
 /**
  * Renders the table footer.
  *
  * @return string the rendering result.
  */
 public function renderTableFooter()
 {
     $content = parent::renderTableFooter();
     return strtr($content, ['<tfoot>' => "<tfoot>\n" . $this->generateRows($this->beforeFooter), '</tfoot>' => $this->generateRows($this->afterFooter) . "\n</tfoot>"]);
 }