Back to PhocaDownloadFile class

Method canPreview

public static
canPreview
(mixed $fileName)

Method canPreview - Source code

public static function canPreview($fileName)
{
    $fileExt = PhocaDownloadFile::getExtension($fileName);
    switch ($fileExt) {
        case 'pdf':
        case 'jpeg':
        case 'jpg':
        case 'png':
        case 'gif':
            return true;
            break;
        default:
            return false;
            break;
    }
    return false;
}