BlockManager::getThemeConfig PHP Method

getThemeConfig() private method

* Get the block config for the current theme
private getThemeConfig ( )
    private function getThemeConfig()
    {
        $theme = $this->getTheme();
        $config = $this->config()->get('themes');
        return $theme && isset($config[$theme]) ? $config[$theme] : null;
    }