getRowTemplate() 공개 메소드

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