Changeset 2726150
- Timestamp:
- 05/18/2022 02:31:32 PM (4 years ago)
- Location:
- jinx-fast-cache/trunk
- Files:
-
- 4 edited
-
index.php (modified) (1 diff)
-
readme.txt (modified) (1 diff)
-
src/Admin.php (modified) (1 diff)
-
src/Front.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
jinx-fast-cache/trunk/index.php
r2683664 r2726150 5 5 * Plugin URI: https://wordpress.org/plugins/jixn-fast-cache/ 6 6 * Description: Blazing fast full page cache. 7 * Version: 0.3. 57 * Version: 0.3.6 8 8 * Author: SquareFlower Websolutions (Lukas Rydygel) <hallo@squareflower.de> 9 9 * Author URI: http://squareflower.de -
jinx-fast-cache/trunk/readme.txt
r2683664 r2726150 3 3 Tags: cache, fullpage, pagecache, filecache, rewrite, htaccess 4 4 Requires at least: 5.0 5 Tested up to: 5.9. 05 Tested up to: 5.9.3 6 6 Requires PHP: 7.0 7 Stable tag: 0.3. 57 Stable tag: 0.3.6 8 8 License: GPLv2 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html -
jinx-fast-cache/trunk/src/Admin.php
r2683664 r2726150 435 435 */ 436 436 public static function execute(string $action) 437 { 438 439 list($action, $element, $type, $id) = explode('/', $action );437 { 438 439 list($action, $element, $type, $id) = explode('/', $action.'///'); 440 440 441 441 $method = 'action'.ucfirst($action); -
jinx-fast-cache/trunk/src/Front.php
r2676361 r2726150 130 130 public static function capture() 131 131 { 132 132 133 133 // check if the request should be cached 134 134 $cache = apply_filters('jinx_fast_cache', true); … … 136 136 137 137 // start output buffer 138 ob_start(function($html) use($wp){138 ob_start(function($html) { 139 139 140 140 // modify the output for the cache
Note: See TracChangeset
for help on using the changeset viewer.