Exemplo n.º 1
0
 public function getRelativePath()
 {
     if (!$this->RelativePath) {
         $this->RelativePath = Utility::getRelativePath(EPSILON_PATH);
     }
     return $this->RelativePath;
 }
Exemplo n.º 2
0
 /**
  * Depend on the path in disk get the relative path on server
  * e.g http://localhost.com/etc/etc
  *
  * @return string
  */
 protected function getRelativePath()
 {
     if (!isset($this->RelativePath)) {
         $this->RelativePath = Utility::getRelativePath($this->getPath());
     }
     return $this->RelativePath;
 }