[ Mini Kiebo ]
Server: Windows NT DESKTOP-5B8S0D4 6.2 build 9200 (Windows 8 Professional Edition) i586
Path:
D:
/
Backup
/
14082024
/
Data
/
htdocs
/
htdocs
/
ojs
/
248
/
lib
/
pkp
/
classes
/
file
/
[
Home
]
File: PKPPublicFileManager.inc.php
<?php /** * @file classes/file/PKPPublicFileManager.inc.php * * Copyright (c) 2013-2019 Simon Fraser University * Copyright (c) 2000-2019 John Willinsky * Distributed under the GNU GPL v2. For full terms see the file docs/COPYING. * * @class PKPPublicFileManager * @ingroup file * * @brief Wrapper class for uploading files to a site/journal's public directory. */ import('lib.pkp.classes.file.FileManager'); class PKPPublicFileManager extends FileManager { /** * Constructor */ function PKPPublicFileManager() { parent::FileManager(); } /** * Get the path to the site public files directory. * @return string */ function getSiteFilesPath() { return Config::getVar('files', 'public_files_dir') . '/site'; } /** * Upload a file to the site's public directory. * @param $fileName string the name of the file in the upload form * @param $destFileName string the destination file name * @return boolean */ function uploadSiteFile($fileName, $destFileName) { return $this->uploadFile($fileName, $this->getSiteFilesPath() . '/' . $destFileName); } /** * Delete a file from the site's public directory. * @param $fileName string the target file name * @return boolean */ function removeSiteFile($fileName) { return $this->deleteFile($this->getSiteFilesPath() . '/' . $fileName); } } ?>