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