-
-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathOutputHelper.php
More file actions
55 lines (42 loc) · 924 Bytes
/
OutputHelper.php
File metadata and controls
55 lines (42 loc) · 924 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<?php
/**
* This file is part of the Nette Framework (https://nette.org)
* Copyright (c) 2004 David Grudl (https://davidgrudl.com)
*/
declare(strict_types=1);
namespace Nette\Caching;
use Nette;
/**
* Output caching helper.
*/
class OutputHelper
{
public array $dependencies = [];
private ?Cache $cache;
private mixed $key;
public function __construct(Cache $cache, mixed $key)
{
$this->cache = $cache;
$this->key = $key;
ob_start();
}
/**
* Stops and saves the cache.
*/
public function end(array $dependencies = []): void
{
if ($this->cache === null) {
throw new Nette\InvalidStateException('Output cache has already been saved.');
}
$this->cache->save($this->key, ob_get_flush(), $dependencies + $this->dependencies);
$this->cache = null;
}
/**
* Stops and throws away the output.
*/
public function rollback(): void
{
ob_end_flush();
$this->cache = null;
}
}