芝麻web文件管理V1.00
编辑当前文件:/home/qrafawbu/lugarcollectibles.com/system/library/template.php
adaptor = new $class(); } else { throw new \Exception('Error: Could not load template adaptor ' . $adaptor . '!'); } } /** * * * @param string $key * @param mixed $value */ public function set($key, $value) { $this->adaptor->set($key, $value); } /** * * * @param string $template * @param bool $cache * * @return string */ public function render($template, $cache = false) { return $this->adaptor->render($template, $cache); } }