Пример #1
0
 /**
  * Formats the Library Path
  * @param \Jazz\Application\ISettings $settings
  * @return string
  */
 protected function formatLibraryPath(\Jazz\Application\ISettings $settings)
 {
     $ret = $settings->getPathLibrary();
     if ($this->getPath() === null) {
         $ret .= ($settings->getDirLibrary() ? $settings->getDirLibrary() . '/' : null) . $this->getNamespace();
     } else {
         $ret .= $this->getPath();
     }
     return $ret;
 }