Bolt\Configuration\ResourceManager::postInitialize PHP 메소드

postInitialize() 공개 메소드

public postInitialize ( )
    public function postInitialize()
    {
        $this->setThemePath($this->app['config']->get('general'));
        $theme = $this->app['config']->get('theme');
        if (isset($theme['template_directory'])) {
            $this->setPath('templatespath', $this->getPath('theme') . '/' . $this->app['config']->get('theme/template_directory'));
        } else {
            $this->setPath('templatespath', $this->getPath('theme'));
        }
        $branding = '/' . trim($this->app['config']->get('general/branding/path'), '/') . '/';
        $this->setUrl('bolt', $branding);
    }