BlockManager::getThemeConfig PHP 메소드

getThemeConfig() 개인적인 메소드

* 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;
    }