forked from BoldGrid/w3-total-cache
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathExtension_FragmentCache_Api.php
190 lines (176 loc) · 5.21 KB
/
Extension_FragmentCache_Api.php
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
<?php
/*
* @param string $fragment_group
* @param boolean $global If group is for whole network in MS install
* @return mixed
*/
function w3tc_fragmentcache_flush_group( $fragment_group ) {
$o = \W3TC\Dispatcher::component( 'CacheFlush' );
return $o->fragmentcache_flush_group( $fragment_group );
}
/**
* Flush all fragment groups
*
* @return mixed
*/
function w3tc_fragmentcache_flush() {
$o = \W3TC\Dispatcher::component( 'CacheFlush' );
return $o->fragmentcache_flush();
}
/**
* Register a fragment group and connected actions for current blog
*
* @param string $group
* @param array $actions on which actions group should be flushed
* @param integer $expiration in seconds
* @return mixed
*/
function w3tc_register_fragment_group( $group, $actions, $expiration ) {
if ( !is_int( $expiration ) ) {
$expiration = (int) $expiration;
trigger_error( __FUNCTION__ . ' needs expiration parameter to be an int.', E_USER_WARNING );
}
$o = \W3TC\Dispatcher::component( 'Extension_FragmentCache_Core' );
return $o->register_group( $group, $actions, $expiration );
}
/**
* Register a fragment group for whole network in MS install
*
* @param unknown $group
* @param unknown $actions
* @param integer $expiration in seconds
* @return mixed
*/
function w3tc_register_fragment_global_group( $group, $actions, $expiration ) {
if ( !is_int( $expiration ) ) {
$expiration = (int) $expiration;
trigger_error( __FUNCTION__ . ' needs expiration parameter to be an int.', E_USER_WARNING );
}
$o = \W3TC\Dispatcher::component( 'Extension_FragmentCache_Core' );
return $o->register_global_group( $group, $actions,
$expiration );
}
/**
* Starts caching output
*
* @param string $id the fragment id
* @param string $group the fragment group name.
* @param string $hook name of the action/filter hook to disable on fragment found
* @return bool returns true if cached fragment is echoed
*/
function w3tc_fragmentcache_start( $id, $group = '', $hook = '' ) {
$fragment = w3tc_fragmentcache_get( $id, $group );
if ( false === $fragment ) {
_w3tc_caching_fragment( $id, $group );
ob_start();
} else {
echo esc_html( $fragment );
if ( $hook ) {
remove_all_filters($hook);
}
return true;
}
return false;
}
/**
* Starts caching filter, returns if filter already cached.
*
* @param string $id the fragment id
* @param string $group the fragment group name.
* @param string $hook name of the action/filter hook to disable on fragment found
* @param mixed $data the data returned by the filter
* @return mixed
*/
function w3tc_fragmentcache_filter_start( $id, $group = '', $hook = '', $data = null ) {
_w3tc_caching_fragment( $id, $group );
$fragment = w3tc_fragmentcache_get( $id, $group );
if ( false !== $fragment ) {
if ( $hook ) {
remove_all_filters($hook);
}
return $fragment;
}
return $data;
}
/**
* Ends the caching of output. Stores it and outputs the content
*
* @param string $id the fragment id
* @param string $group the fragment group
* @param bool $debug
*/
function w3tc_fragmentcache_end( $id, $group = '', $debug = false ) {
if ( w3tc_is_caching_fragment( $id, $group ) ) {
$content = ob_get_contents();
if ( $debug )
$content = sprintf( "\r\n".'<!-- fragment start (%s%s)-->'."\r\n".'%s'."\r\n".'<!-- fragment end (%1$s%2$s) cached at %s by W3 Total Cache expires in %d seconds -->'."\r\n", $group, $id, $content, date_i18n( 'Y-m-d H:i:s' ), 1000 );
w3tc_fragmentcache_store( $id, $group, $content );
ob_end_flush();
}
}
/**
* Ends the caching of filter. Stores it and returns the content
*
* @param string $id the fragment id
* @param string $group the fragment group
* @param mixed $data
* @return mixed
*/
function w3tc_fragmentcache_filter_end( $id, $group = '', $data = null ) {
if ( w3tc_is_caching_fragment( $id, $group ) ) {
w3tc_fragmentcache_store( $id, $group, $data );
}
return $data;
}
/**
* Stores an fragment
*
* @param unknown $id
* @param string $group
* @param string $content
*/
function w3tc_fragmentcache_store( $id, $group = '', $content = '' ) {
set_transient( "{$group}{$id}", $content,
1000 /* default expiration in a case its not catched by fc plugin */ );
}
/**
*
*
* @param unknown $id
* @param string $group
* @return object
*/
function w3tc_fragmentcache_get( $id, $group = '' ) {
return get_transient( "{$group}{$id}" );
}
/**
* Flushes a fragment from the cache
*
* @param unknown $id
* @param string $group
*/
function w3tc_fragmentcache_flush_fragment( $id, $group = '' ) {
delete_transient( "{$group}{$id}" );
}
/**
* Checks wether page fragment caching is being done for the item
*
* @param string $id fragment id
* @param string $group which group fragment belongs too
* @return bool
*/
function w3tc_is_caching_fragment( $id, $group = '' ) {
global $w3tc_caching_fragment;
return isset( $w3tc_caching_fragment["{$group}{$id}"] ) &&
$w3tc_caching_fragment["{$group}{$id}"];
}
/**
* Internal function, sets if page fragment by $id and $group is being cached
*
* @param string $id fragment id
* @param string $group which group fragment belongs too
*/
function _w3tc_caching_fragment( $id, $group = '' ) {
global $w3tc_caching_fragment;
$w3tc_caching_fragment["{$group}{$id}"] = true;
}