getPath() public method

returns path to theme
public getPath ( ) : string
return string path to theme
コード例 #1
0
ファイル: ThemeTest.php プロジェクト: pboutin44/maintest
 /**
  * Test for Theme::getPath
  *
  * @return void
  */
 public function testGetSetPath()
 {
     $this->assertEmpty($this->object->getPath());
     $this->object->setPath('./themes/original');
     $this->assertEquals('./themes/original', $this->object->getPath());
 }