Grav\Plugin\Admin\Popularity::getData PHP Method

getData() protected method

protected getData ( string $path ) : array
$path string
return array
    protected function getData($path)
    {
        if (file_exists($path)) {
            return (array) json_decode(file_get_contents($path), true);
        } else {
            return [];
        }
    }