コード例 #1
0
 /**
  * Generate a file url
  *
  * @param string $fileName
  * @param array $options
  *      string path
  *      array filters
  * @return string
  */
 public function __invoke($fileName, array $options)
 {
     $currentPath = $options['path'] . '/' . $fileName;
     // generate a directory navigation link
     if (is_dir(FileManagerBaseModel::getUserBaseFilesDir() . '/' . $options['path'] . '/' . $fileName)) {
         // get the directory url
         $directoryUrl = $this->getView()->url('application/page', ['controller' => $this->getView()->applicationRoute()->getParam('controller'), 'action' => $this->getView()->applicationRoute()->getParam('action')], ['force_canonical' => true, 'query' => ['path' => $currentPath] + $options['filters']]);
         return $this->getView()->partial('file-manager/patrial/directory-url', ['name' => $fileName, 'url' => $directoryUrl]);
     }
     // generate a file link
     return $this->getView()->partial('file-manager/patrial/file-url', ['file_extension' => FileSystemUtility::getFileExtension($fileName), 'name' => $fileName, 'url' => $this->view->serverUrl() . $this->view->basePath() . '/' . FileManagerBaseModel::getUserBaseFilesUrl() . '/' . $currentPath]);
 }
コード例 #2
0
 /**
  * Generate a base file url
  *
  * @param string $currentPath
  * @return string
  */
 public function __invoke($currentPath = null)
 {
     return FileManagerBaseModel::getUserBaseFilesUrl() . '/' . ($currentPath ? $currentPath . '/' : null);
 }