setRowTemplate() public méthode

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