Пример #1
0
 /**
  * Get the absolute url to a resource
  *
  * @param string $path The object path
  *
  * @return string The absolute url
  */
 public function getAbsoluteURL($path)
 {
     // workaround if object passed instead
     if (is_object($path)) {
         $path = $path->getPathname();
     }
     return $this->adapter->getAbsoluteURL($path);
 }