Controller_Compat42::useOldTemplateTags PHP Method

useOldTemplateTags() public method

Forces Agile Toolkit to use templates instead of {tag}
public useOldTemplateTags ( )
    public function useOldTemplateTags()
    {
        $this->app->setConfig(array('template' => array('ldelim' => '<\\?', 'rdelim' => '\\?>')));
        if ($this->app->template) {
            // reload it
            $this->app->template->settings = array_merge($this->app->template->getDefaultSettings(), $this->app->getConfig('template', array()));
            $this->app->template->reload();
        }
        return $this;
    }