-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[PR] Refactor codebase to remove unnecessary applyWpFilters() and doWpAction() #317
base: dev
Are you sure you want to change the base?
Conversation
Now that WordPress is exposing the standard WP hook/filter library in the early phase, we don't need our own method for this. This also drops backwards compatibility with ZenCache filters. ZenCache has not been supported for more than a year now. See wpsharks/comet-cache#893
Now that WordPress is exposing the standard WP hook/filter library in the early phase, we don't need our own method for this. This also drops backwards compatibility with ZenCache actions. ZenCache has not been supported for more than a year now. See wpsharks/comet-cache#893
@jaswrks How about |
@raamdev writes...
Awesome work on removing I think the following would work:
New AC Plugin Example<?php
/**
* Example AC (Advanced Cache) Plugin File.
*
* If implemented; this file should go in this special directory:
* `/wp-content/ac-plugins/my-ac-plugin.php`
*/
if (!defined('WPINC')) {
exit('Do NOT access this file directly.');
}
function my_ac_version_salt_shaker($version_salt)
{
if (mb_stripos($_SERVER['HTTP_USER_AGENT'], 'iphone') !== false) {
$version_salt .= 'iphones'; // Give iPhones their own variation of the cache.
} elseif (mb_stripos($_SERVER['HTTP_USER_AGENT'], 'android') !== false) {
$version_salt .= 'androids'; // Androic variation.
} else {
$version_salt .= 'other'; // A default group.
}
return $version_salt;
}
add_filter('comet_cache_version_salt', 'my_ac_version_salt_shaker'); Old AC Plugin Example<?php
/**
* Example AC (Advanced Cache) Plugin File.
*
* If implemented; this file should go in this special directory:
* `/wp-content/ac-plugins/my-ac-plugin.php`
*/
if (!defined('WPINC')) {
exit('Do NOT access this file directly.');
}
function my_ac_plugin() // Example plugin.
{
$ac = $GLOBALS['comet_cache_advanced_cache']; // Comet Cache instance.
$ac->addFilter('comet_cache_version_salt', 'my_ac_version_salt_shaker');
}
function my_ac_version_salt_shaker($version_salt)
{
if (mb_stripos($_SERVER['HTTP_USER_AGENT'], 'iphone') !== false) {
$version_salt .= 'iphones'; // Give iPhones their own variation of the cache.
} elseif (mb_stripos($_SERVER['HTTP_USER_AGENT'], 'android') !== false) {
$version_salt .= 'androids'; // Androic variation.
} else {
$version_salt .= 'other'; // A default group.
}
return $version_salt;
}
my_ac_plugin(); // Run this plugin. The only change is that you can now call WP core functions in this early phase. You still need a special file in the |
See: wpsharks/comet-cache#893