getFooter() public method

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