Elgg\ViewsService::getInspectorData PHP Method

getInspectorData() public method

Get inspector data
public getInspectorData ( ) : array
return array
    public function getInspectorData()
    {
        $overrides = $this->overrides;
        if ($this->cache) {
            $data = $this->cache->load('view_overrides');
            if ($data) {
                $overrides = unserialize($data);
            }
        }
        return ['locations' => $this->locations, 'overrides' => $overrides, 'extensions' => $this->extensions, 'simplecache' => $this->simplecache_views];
    }