getRowTemplate() public method

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