* @author Wojciech Król * @copyright 2017 Paweł Klockiewicz, Wojciech Król * @license https://batflat.org/license * @link https://batflat.org */ namespace Inc\Modules\Settings; use Inc\Core\SiteModule; class Site extends SiteModule { public function init() { $this->_importSettings(); } private function _importSettings() { $tmp = $this->core->settings->all(); $tmp = array_merge($tmp, $tmp['settings']); unset($tmp['settings']); $this->tpl->set('settings', $tmp); } }