* @author Wojciech Król * @copyright 2017 Paweł Klockiewicz, Wojciech Król * @license https://batflat.org/license * @link https://batflat.org */ namespace Inc\Modules\Snippets; use Inc\Core\SiteModule; class Site extends SiteModule { public function init() { $this->_importSnippets(); } private function _importSnippets() { $rows = $this->db('snippets')->toArray(); $snippets = []; foreach ($rows as $row) { $snippets[$row['slug']] = $row['content']; } return $this->tpl->set('snippet', $snippets); } }