| Server IP : 93.86.61.54 / Your IP : 216.73.216.60 Web Server : Apache/2.4.62 (Ubuntu) System : Linux rasin.ddns.net 6.8.0-124-generic #124~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Tue May 26 21:05:19 UTC x86_64 User : www-data ( 33) PHP Version : 8.4.22 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /var/www/html/rasin.ddns.net/wp-content/plugins/litespeed-cache/thirdparty/ |
Upload File : |
<?php
/**
* The Third Party integration with the Theme My Login plugin.
*
* @since 1.0.15
* @package LiteSpeed
* @subpackage LiteSpeed_Cache\Thirdparty
*/
namespace LiteSpeed\Thirdparty;
defined('WPINC') || exit();
/**
* Provides compatibility for the Theme My Login plugin.
*/
class Theme_My_Login {
/**
* Detects if Better Theme My Login is active.
*
* @since 1.0.15
* @access public
* @return void
*/
public static function detect() {
if (defined('THEME_MY_LOGIN_PATH')) {
add_action('litespeed_control_finalize', __CLASS__ . '::set_control');
}
}
/**
* This filter is used to let the cache know if a page is cacheable.
*
* @since 1.0.15
* @access public
* @return void
*/
public static function set_control() {
if (!apply_filters('litespeed_control_cacheable', false)) {
return;
}
// Check if this page is TML page or not.
if (class_exists('Theme_My_Login') && \Theme_My_Login::is_tml_page()) {
do_action('litespeed_control_set_nocache', 'Theme My Login');
}
}
}