setFooter() public method

Method to set the footer template.
public setFooter ( string $ftr ) : Paginator
$ftr string
return Paginator
Example #1
0
 public function testSetAndGetFooter()
 {
     $p = new Paginator(array());
     $p->setFooter('footer');
     $this->assertEquals('footer', $p->getFooter());
 }