setRowTemplate() public method

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