TestTimberImage::is_gif PHP Method

is_gif() public static method

public static is_gif ( $file )
    public static function is_gif($file)
    {
        $file = strtolower($file);
        if (strpos($file, '.gif') > 0) {
            return true;
        }
        return false;
    }