Back to PhocaDownloadFile class

Method existsCss

public static
existsCss
(mixed $file, mixed $type)

Method existsCss - Source code

public static function existsCss($file, $type)
{
    $path = self::getCSSPath($type);
    if (file_exists($path . $file) && $file != '') {
        return $path . $file;
    }
    return false;
}