Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ---nefunkcni basepresenter.php----------------------------------------------------------
- public $db;
- /** @var \Nette\Caching\Cache */
- protected $cache;
- public function __construct(\DibiConnection $db)
- {
- $this->db = $db;
- $storage = new Nette\Caching\Storages\FileStorage('../temp/cache');
- $this->cache = new Nette\Caching\Cache($storage,'baze');
- }
- ------------------------------------------------------------------------------
- ---funkcni basepresenter.php----------------------------------------------------------
- public $db;
- /** @var \Nette\Caching\Cache */
- protected $cache;
- public function __construct(\DibiConnection $db)
- {
- $this->db = $db;
- }
- public function startup()
- {
- $storage = new Nette\Caching\Storages\FileStorage('../temp/cache');
- $this->cache = new Nette\Caching\Cache($storage,'baze');
- //..... Funguje
- }
Advertisement
Add Comment
Please, Sign In to add comment