<?php

defined('ABSPATH') || exit;
if (class_exists('Custom_Login_Page_Template')) {
    add_filter('rocket_cache_reject_uri', 'rocket_add_custom_login_exclude_pages');
    add_action('update_option_custom_login_page_template', 'rocket_after_update_single_options', 10, 2);
}
function rocket_add_custom_login_exclude_pages($urls)
{
    $clpt_options = get_option('custom_login_page_template');
    $urls = array_merge($urls, get_rocket_i18n_translated_post_urls($clpt_options['login_page_id'], 'page'));
    return $urls;
}
function rocket_activate_custom_login_page_template()
{
    add_filter('rocket_cache_reject_uri', 'rocket_add_custom_login_exclude_pages');
    flush_rocket_htaccess();
    rocket_generate_config_file();
}
add_action('activate_custom-login-page-template/custom-login-page-template.php', 'rocket_activate_custom_login_page_template', 11);
function rocket_remove_custom_login_exclude_pages()
{
    remove_filter('rocket_cache_reject_uri', 'rocket_add_custom_login_exclude_pages');
    flush_rocket_htaccess();
    rocket_generate_config_file();
}
add_action('deactivate_custom-login-page-template/custom-login-page-template.php', 'rocket_remove_custom_login_exclude_pages', 11);