File: /home/dmstechonline/public_html/wp-content/plugins/depicter/app/src/Services/StorageService.php
<?php
namespace Depicter\Services;
use Averta\WordPress\File\FileSystem;
use Averta\WordPress\File\UploadsDirectory;
class StorageService
{
const UPLOADS_FOLDER_NAME = 'depicter';
/**
* @var FileSystem
*/
private $filesystem;
/**
* @var UploadsDirectory
*/
private $uploads;
public function __construct(){
$this->filesystem = new FileSystem();
$this->uploads = new UploadsDirectory();
}
/**
* Access to filesystem module
*
* @return FileSystem
*/
public function filesystem(){
return $this->filesystem;
}
/**
* Access to uploads directory info
*
* @return UploadsDirectory
*/
public function uploads(){
return $this->uploads;
}
/**
* Retrieves the special plugin's folder in uploads directory
*
* @return string
*/
public function getPluginUploadsDirectory(){
return $this->uploads()->getBaseDirectory() . '/'. self::UPLOADS_FOLDER_NAME;
}
/**
* Retrieves the special plugin's folder in uploads directory for CSS files
*
* @return string
*/
public function getCssUploadsDirectory(){
return $this->uploads()->getBaseDirectory() . '/'. self::UPLOADS_FOLDER_NAME . '/css';
}
/**
* Retrieves the url of special plugin's folder in uploads directory for CSS files
*
* @return string
*/
public function getCssUploadsUrl(){
return $this->uploads()->getBaseUrl() . '/'. self::UPLOADS_FOLDER_NAME . '/css';
}
}