getPath() public méthode

returns path to theme
public getPath ( ) : string
Résultat string path to theme
Exemple #1
0
 /**
  * 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());
 }