setRowTemplate() 공개 메소드

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