|
1
|
|
|
<?php |
|
2
|
|
|
// phpcs:ignoreFile |
|
3
|
|
|
|
|
4
|
|
|
/** |
|
5
|
|
|
* @deprecated since 2019-02-02 use \dokuwiki\Cache\Cache instead! |
|
6
|
|
|
*/ |
|
7
|
|
|
class cache extends \dokuwiki\Cache\Cache |
|
8
|
|
|
{ |
|
9
|
|
|
|
|
10
|
|
|
public function __construct($key, $ext) |
|
11
|
|
|
{ |
|
12
|
|
|
trigger_error( |
|
13
|
|
|
'cache is deprecated since 2019-02-02. Use \dokuwiki\Cache\Cache instead', |
|
14
|
|
|
E_USER_DEPRECATED |
|
15
|
|
|
); |
|
16
|
|
|
parent::__construct($key, $ext); |
|
17
|
|
|
} |
|
18
|
|
|
|
|
19
|
|
|
} |
|
20
|
|
|
|
|
21
|
|
|
/** |
|
22
|
|
|
* @deprecated since 2019-02-02 use \dokuwiki\Cache\CacheParser instead! |
|
23
|
|
|
*/ |
|
24
|
|
|
class cache_parser extends \dokuwiki\Cache\CacheParser |
|
25
|
|
|
{ |
|
26
|
|
|
|
|
27
|
|
|
public function __construct($id, $file, $mode) |
|
28
|
|
|
{ |
|
29
|
|
|
trigger_error( |
|
30
|
|
|
'cache_parser is deprecated since 2019-02-02. Use \dokuwiki\Cache\CacheParser instead', |
|
31
|
|
|
E_USER_DEPRECATED |
|
32
|
|
|
); |
|
33
|
|
|
parent::__construct($id, $file, $mode); |
|
34
|
|
|
} |
|
35
|
|
|
|
|
36
|
|
|
} |
|
37
|
|
|
|
|
38
|
|
|
/** |
|
39
|
|
|
* @deprecated since 2019-02-02 use \dokuwiki\Cache\CacheRenderer instead! |
|
40
|
|
|
*/ |
|
41
|
|
|
class cache_renderer extends \dokuwiki\Cache\CacheRenderer |
|
42
|
|
|
{ |
|
43
|
|
|
|
|
44
|
|
|
public function __construct($id, $file, $mode) |
|
45
|
|
|
{ |
|
46
|
|
|
trigger_error( |
|
47
|
|
|
'cache_renderer is deprecated since 2019-02-02. Use \dokuwiki\Cache\CacheRenderer instead', |
|
48
|
|
|
E_USER_DEPRECATED |
|
49
|
|
|
); |
|
50
|
|
|
parent::__construct($id, $file, $mode); |
|
51
|
|
|
} |
|
52
|
|
|
} |
|
53
|
|
|
|
|
54
|
|
|
/** |
|
55
|
|
|
* @deprecated since 2019-02-02 use \dokuwiki\Cache\CacheInstructions instead! |
|
56
|
|
|
*/ |
|
57
|
|
|
class cache_instructions extends \dokuwiki\Cache\CacheInstructions |
|
58
|
|
|
{ |
|
59
|
|
|
public function __construct($id, $file) |
|
60
|
|
|
{ |
|
61
|
|
|
trigger_error( |
|
62
|
|
|
'cache_instructions is deprecated since 2019-02-02. Use \dokuwiki\Cache\CacheInstructions instead', |
|
63
|
|
|
E_USER_DEPRECATED |
|
64
|
|
|
); |
|
65
|
|
|
parent::__construct($id, $file); |
|
66
|
|
|
} |
|
67
|
|
|
} |
|
68
|
|
|
|