get('view'); (!$config['cacheDir']) && $config['cacheDir'] = './runtime/cache/application/' . request()->module() . '/'; $cache = File::instance($config['cacheDir']); if ($cache->exists($ident)) { $content = $cache->get($ident); return Response::instance()->dispatch($content); } } return true; } public function after($data) { // TODO: Implement after() method. } }