SHOW:
|
|
- or go back to the newest paste.
| 1 | - | ---nefunkcni basepresenter.php---------------------------------------------------------- |
| 1 | + | abstract class BasePresenter extends \Nette\Application\UI\Presenter |
| 2 | {
| |
| 3 | ||
| 4 | /** @var \DibiConnection @inject */ | |
| 5 | public $db; | |
| 6 | ||
| 7 | /** @var \Nette\Caching\Cache */ | |
| 8 | - | public function __construct(\DibiConnection $db) |
| 8 | + | |
| 9 | ||
| 10 | - | $this->db = $db; |
| 10 | + | |
| 11 | public function injectCacheStorage(Nette\Caching\IStorage $storage) | |
| 12 | - | $storage = new Nette\Caching\Storages\FileStorage('../temp/cache');
|
| 12 | + | |
| 13 | $this->cache = new Nette\Caching\Cache($storage,'baze'); | |
| 14 | } |