'',
'_combine_loaded_js_append_handle_extra' => ''
);
$settingsClass->updateOption(array_keys($optionsToUpdate), array_values($optionsToUpdate));
if ($isDebug) {
echo 'The WordPress version is below 5.5, thus there is no appending of the inline CSS/JS code to the combine CSS/JS list';
}
} else {
// Check if there are too many .css /.js combined files in the caching directory and change settings
// to prevent the appending of the inline CSS/JS code that is likely the culprit of so many files
$settingsClass = new Settings();
$settings = $settingsClass->getAll( true );
$settingsClass::toggleAppendInlineAssocCodeHiddenSettings( $settings, true, $isDebug );
}
if ($isDebug) {
exit();
}
}
/**
* @param false $isDebug
*/
public static function clearCacheConditionally($isDebug = false)
{
// Clear caching if it wasn't cleared in the past 24 hours (e.g. the admin hasn't used the plugin for a while)
$wpacuLastClearCache = get_transient('wpacu_last_clear_cache');
if ($isDebug) {
echo 'Cache cleared last time: '.$wpacuLastClearCache.'
';
}
if ($wpacuLastClearCache && (strtotime( '-1 days' ) > $wpacuLastClearCache)) {
OptimizeCommon::clearCache();
if ($isDebug) {
echo 'The cache was just cleared as it was not cleared in the past 24 hours.
';
}
}
}
/**
*
*/
public static function cleanUnusedAssetsFromInfoArea()
{
$allAssetsWithAtLeastOneRule = Overview::handlesWithAtLeastOneRule();
if (empty($allAssetsWithAtLeastOneRule)) {
return;
}
// Stored in the "assets_info" key from "wpassetcleanup_global_data" option name (from `{$wpdb->prefix}options` table)
$allAssetsFromInfoArea = Main::getHandlesInfo();
$handlesToClearFromInfo = array('styles' => array(), 'scripts' => array());
foreach (array('styles', 'scripts') as $assetType) {
if ( isset( $allAssetsFromInfoArea[$assetType] ) && ! empty( $allAssetsFromInfoArea[$assetType] ) ) {
foreach ( array_keys( $allAssetsFromInfoArea[$assetType] ) as $assetHandle ) {
if ( ! isset($allAssetsWithAtLeastOneRule[$assetType][$assetHandle]) ) { // not found in $allAssetsWithAtLeastOneRule? Add it to the clear list
$handlesToClearFromInfo[$assetType][] = $assetHandle;
}
}
}
}
if (! empty($handlesToClearFromInfo['styles']) || ! empty($handlesToClearFromInfo['scripts'])) {
self::removeHandlesInfoFromGlobalDataOption($handlesToClearFromInfo);
}
}
/**
*
*/
public static function combineNewOptionUpdate()
{
$settingsClass = new Settings();
$pluginSettings = $settingsClass->getAll();
if ( ($pluginSettings['combine_loaded_css'] === 'for_admin' ||
(isset($pluginSettings['combine_loaded_css_for_admin_only']) && $pluginSettings['combine_loaded_css_for_admin_only'] == 1) )
&& Menu::userCanManageAssets() ) {
$settingsClass->updateOption('combine_loaded_css', '');
$settingsClass->updateOption('combine_loaded_css_for_admin_only', '');
}
if ( ($pluginSettings['combine_loaded_js'] === 'for_admin' ||
(isset($pluginSettings['combine_loaded_js_for_admin_only']) && $pluginSettings['combine_loaded_js_for_admin_only'] == 1) )
&& Menu::userCanManageAssets() ) {
$settingsClass->updateOption('combine_loaded_js', '');
$settingsClass->updateOption('combine_loaded_js_for_admin_only', '');
}
}
/**
* @param $handlesToClearFromInfo
*/
public static function removeHandlesInfoFromGlobalDataOption($handlesToClearFromInfo)
{
$optionToUpdate = WPACU_PLUGIN_ID . '_global_data';
$globalKey = 'assets_info';
$existingListEmpty = array('styles' => array($globalKey => array()), 'scripts' => array($globalKey => array()));
$existingListJson = get_option($optionToUpdate);
$existingListData = Main::instance()->existingList($existingListJson, $existingListEmpty);
$existingList = $existingListData['list'];
// $assetType could be 'styles' or 'scripts'
foreach ($handlesToClearFromInfo as $assetType => $handles) {
foreach ($handles as $handle) {
if ( isset( $existingList[ $assetType ][ $globalKey ][ $handle ] ) ) {
unset( $existingList[ $assetType ][ $globalKey ][ $handle ] );
}
}
}
Misc::addUpdateOption($optionToUpdate, wp_json_encode(Misc::filterList($existingList)));
}
/**
* When is this needed? Sometimes, you have rules such as "Unload site-wide (everywhere)" and load exceptions associated to it
* However, if you remove the unload rule, then the load exceptions associated with it will become useless as they worth together
* If no unload rule is added, the file is loaded anyway, it doesn't need any load exception obviously
*
* @param $assetHandle
* @param $assetType | it belongs to "styles" or "scripts"
*/
public static function removeAllLoadExceptionsFor($assetHandle, $assetType)
{
/*
* Any in the front-page?
*/
$wpacuFrontPageLoadExceptions = get_option(WPACU_PLUGIN_ID . '_front_page_load_exceptions');
if ($wpacuFrontPageLoadExceptions) {
$wpacuFrontPageLoadExceptionsArray = @json_decode( $wpacuFrontPageLoadExceptions, ARRAY_A );
$targetArray = isset($wpacuFrontPageLoadExceptionsArray[$assetType]) && is_array($wpacuFrontPageLoadExceptionsArray[$assetType])
? $wpacuFrontPageLoadExceptionsArray[$assetType]
: array();
if ( in_array($assetHandle, $targetArray) ) {
$targetKey = array_search($assetHandle, $targetArray);
unset($wpacuFrontPageLoadExceptionsArray[$assetType][$targetKey]); // clear the exception
Misc::addUpdateOption(
WPACU_PLUGIN_ID . '_front_page_load_exceptions',
wp_json_encode(Misc::filterList($wpacuFrontPageLoadExceptionsArray))
);
}
}
/*
* Any for all pages of a certain post type? (e.g. in all WooCommerce "product" pages)
*/
$wpacuPostTypeLoadExceptions = get_option(WPACU_PLUGIN_ID . '_post_type_load_exceptions');
if ($wpacuPostTypeLoadExceptions) {
$wpacuPostTypeLoadExceptionsArray = @json_decode( $wpacuPostTypeLoadExceptions, ARRAY_A );
if (! empty($wpacuPostTypeLoadExceptionsArray)) {
foreach ($wpacuPostTypeLoadExceptionsArray as $dbPostType => $dbList) {
foreach ($dbList as $dbAssetType => $dbValues) {
if ($assetType === $dbAssetType && array_key_exists( $assetHandle, $dbValues ) ) {
unset($wpacuPostTypeLoadExceptionsArray[$dbPostType][$dbAssetType][$assetHandle]);
}
}
}
}
Misc::addUpdateOption(
WPACU_PLUGIN_ID . '_post_type_load_exceptions',
wp_json_encode(Misc::filterList($wpacuPostTypeLoadExceptionsArray))
);
}
global $wpdb;
$wpacuPluginId = WPACU_PLUGIN_ID;
/*
* Any for posts (any kind), pages, taxonomies or users?
*/
foreach (array($wpdb->postmeta, $wpdb->termmeta, $wpdb->usermeta) as $tableName) {
$wpacuGetValuesQuery = <<get_results( $wpacuGetValuesQuery, ARRAY_A );
foreach ( $wpacuMetaData as $wpacuValues ) {
$decodedValues = @json_decode( $wpacuValues['meta_value'], ARRAY_A );
if ( empty( $decodedValues ) ) {
continue;
}
if ( isset( $decodedValues[ $assetType ] ) &&
is_array( $decodedValues[ $assetType ] ) &&
in_array( $assetHandle, $decodedValues[ $assetType ] ) ) {
$targetKey = array_search( $assetHandle, $decodedValues[ $assetType ] );
unset( $decodedValues[ $assetType ][ $targetKey ] ); // clear the exception
} else {
continue; // no point in re-updating the database with the same values
}
$newList = wp_json_encode(Misc::filterList($decodedValues));
if ( $tableName === $wpdb->postmeta ) {
update_post_meta($wpacuValues['post_id'], '_'.$wpacuPluginId.'_load_exceptions', $newList);
} elseif ( $tableName === $wpdb->termmeta ) {
update_term_meta($wpacuValues['term_id'], '_'.$wpacuPluginId.'_load_exceptions', $newList);
} else {
update_user_meta($wpacuValues['user_id'], '_'.$wpacuPluginId.'_load_exceptions', $newList);
}
}
}
/*
* Any load exceptions for 404, search, date pages?
*/
$wpacuExtrasLoadExceptions = get_option(WPACU_PLUGIN_ID . '_extras_load_exceptions');
if ($wpacuExtrasLoadExceptions) {
$wpacuExtrasLoadExceptionsArray = @json_decode( $wpacuExtrasLoadExceptions, ARRAY_A );
// $forKey could be '404', 'search', 'date', etc.
foreach ($wpacuExtrasLoadExceptionsArray as $forKey => $values) {
$targetArray = isset( $values[ $assetType ] ) && is_array( $values[ $assetType ] ) ? $values[ $assetType ] : array();
if ( in_array( $assetHandle, $targetArray ) ) {
$targetKey = array_search( $assetHandle, $targetArray );
unset( $wpacuExtrasLoadExceptionsArray[ $forKey ][ $assetType ][ $targetKey ] ); // clear the exception
Misc::addUpdateOption(
WPACU_PLUGIN_ID . '_extras_load_exceptions',
wp_json_encode( Misc::filterList( $wpacuExtrasLoadExceptionsArray ) )
);
}
}
}
/*
* Any (RegEx / Logged-in User) load exceptions?
*/
$dbListJson = get_option(WPACU_PLUGIN_ID . '_global_data');
$globalKeys = array('load_regex', 'load_it_logged_in');
foreach ($globalKeys as $globalKey) {
if ( $dbListJson ) {
$dbList = @json_decode( $dbListJson, ARRAY_A );
$targetArray = isset( $dbList[ $assetType ][ $globalKey ] ) &&
is_array( $dbList[ $assetType ][ $globalKey ] )
? $dbList[ $assetType ][ $globalKey ] : array();
if ( array_key_exists( $assetHandle, $targetArray ) ) {
unset( $dbList[ $assetType ][ $globalKey ][ $assetHandle ] ); // clear the exception
Misc::addUpdateOption(
WPACU_PLUGIN_ID . '_global_data',
wp_json_encode( Misc::filterList( $dbList ) )
);
}
}
}
}
/**
* @param $assetHandle
* @param $assetType
*/
public static function removeAllRulesFor($assetHandle, $assetType)
{
// Clear any load exception rules
self::removeAllLoadExceptionsFor($assetHandle, $assetType);
/*
* Table: WPACU_PLUGIN_ID . '_global_data'
* Global (Site-wide) Rules: Preloading, Position changing, Unload via RegEx, etc.
*/
$wpacuGlobalData = get_option(WPACU_PLUGIN_ID . '_global_data');
$wpacuGlobalDataArray = @json_decode($wpacuGlobalData, ARRAY_A);
foreach ( array(
'404',
'assets_info',
'date',
'everywhere',
'ignore_child',
'load_it_logged_in',
'load_regex',
'notes',
'positions',
'preloads',
'search',
'unload_regex' ) as $dataType ) {
if ( isset( $wpacuGlobalDataArray[ $assetType ][ $dataType ] ) && ! empty( $wpacuGlobalDataArray[ $assetType ][ $dataType ] ) && array_key_exists($assetHandle, $wpacuGlobalDataArray[ $assetType ][ $dataType ]) ) {
unset( $wpacuGlobalDataArray[ $assetType ][ $dataType ][ $assetHandle ]);
}
}
Misc::addUpdateOption(
WPACU_PLUGIN_ID . '_global_data',
wp_json_encode( Misc::filterList( $wpacuGlobalDataArray ) )
);
/*
* Table: WPACU_PLUGIN_ID . '_global_unload'
* Unload Site-Wide (Everywhere)
*/
$wpacuGlobalUnloadData = get_option(WPACU_PLUGIN_ID . '_global_unload');
$wpacuGlobalUnloadDataArray = @json_decode($wpacuGlobalUnloadData, ARRAY_A);
if (isset($wpacuGlobalUnloadDataArray[$assetType]) && ! empty($wpacuGlobalUnloadDataArray[$assetType]) && in_array($assetHandle, $wpacuGlobalUnloadDataArray[$assetType])) {
$targetKey = array_search($assetHandle, $wpacuGlobalUnloadDataArray[$assetType]);
unset($wpacuGlobalUnloadDataArray[$assetType][$targetKey]);
Misc::addUpdateOption(
WPACU_PLUGIN_ID . '_global_unload',
wp_json_encode( Misc::filterList( $wpacuGlobalUnloadDataArray ) )
);
}
/*
* Table: WPACU_PLUGIN_ID . '_bulk_unload'
* Bulk Unload
*/
$wpacuBulkUnloadData = get_option(WPACU_PLUGIN_ID . '_bulk_unload');
$wpacuBulkUnloadDataArray = @json_decode($wpacuBulkUnloadData, ARRAY_A);
if (isset($wpacuBulkUnloadDataArray[$assetType]) && ! empty($wpacuBulkUnloadDataArray[$assetType])) {
foreach ($wpacuBulkUnloadDataArray[$assetType] as $unloadBulkType => $unloadBulkValues) {
// $unloadBulkType could be 'post_type', 'date', '404', 'taxonomy', 'search', 'custom_post_type_archive_[custom_post_type]'
if ($unloadBulkType === 'post_type') {
foreach ($unloadBulkValues as $postType => $assetHandles) {
if (in_array($assetHandle, $assetHandles)) {
$targetKey = array_search($assetHandle, $assetHandles);
unset($wpacuBulkUnloadDataArray[$assetType][$unloadBulkType][$postType][$targetKey]);
}
}
} elseif (in_array($unloadBulkType, array('date', '404', 'search')) || (strpos($unloadBulkType, 'custom_post_type_archive_') !== false)) {
if (in_array($assetHandle, $unloadBulkValues)) {
$targetKey = array_search($assetHandle, $unloadBulkValues);
unset($wpacuBulkUnloadDataArray[$assetType][$unloadBulkType][$targetKey]);
}
} elseif ($unloadBulkType === 'taxonomy') {
foreach ($unloadBulkValues as $taxonomyType => $assetHandles) {
if (in_array($assetHandle, $assetHandles)) {
$targetKey = array_search($assetHandle, $assetHandles);
unset($wpacuBulkUnloadDataArray[$assetType][$unloadBulkType][$taxonomyType][$targetKey]);
}
}
} elseif ($unloadBulkType === 'author' && isset($unloadBulkValues['all']) && ! empty($unloadBulkValues['all'])) {
foreach ($unloadBulkValues['all'] as $assetHandles) {
if (in_array($assetHandle, $assetHandles)) {
$targetKey = array_search($assetHandle, $assetHandles);
unset($wpacuBulkUnloadDataArray[$assetType][$unloadBulkType]['all'][$targetKey]);
}
}
}
}
Misc::addUpdateOption(
WPACU_PLUGIN_ID . '_bulk_unload',
wp_json_encode( Misc::filterList( $wpacuBulkUnloadDataArray ) )
);
}
/*
* Table: WPACU_PLUGIN_ID . '_front_page_no_load'
* Homepage (Unloads)
*/
$wpacuFrontPageUnloads = get_option(WPACU_PLUGIN_ID . '_front_page_no_load');
if ($wpacuFrontPageUnloads) {
$wpacuFrontPageUnloadsArray = @json_decode( $wpacuFrontPageUnloads, ARRAY_A );
if ( isset( $wpacuFrontPageUnloadsArray[$assetType] ) && ! empty( $wpacuFrontPageUnloadsArray[$assetType] ) && in_array( $assetHandle, $wpacuFrontPageUnloadsArray[$assetType] ) ) {
$targetKey = array_search($assetHandle, $wpacuFrontPageUnloadsArray[$assetType]);
unset($wpacuFrontPageUnloadsArray[$assetType][$targetKey]);
}
Misc::addUpdateOption(
WPACU_PLUGIN_ID . '_front_page_no_load',
wp_json_encode( Misc::filterList( $wpacuFrontPageUnloadsArray ) )
);
}
/*
* Table: WPACU_PLUGIN_ID . '_front_page_data'
* Homepage (async, defer)
*/
$wpacuFrontPageData = ($assetType === 'scripts') && get_option(WPACU_PLUGIN_ID . '_front_page_data');
if ($wpacuFrontPageData) {
$wpacuFrontPageDataArray = @json_decode( $wpacuFrontPageData, ARRAY_A );
if ( isset( $wpacuFrontPageDataArray[$assetType][$assetHandle] ) ) {
unset( $wpacuFrontPageDataArray[$assetType][$assetHandle] );
}
if ( isset( $wpacuFrontPageDataArray['scripts_attributes_no_load'][$assetHandle] ) ) {
unset( $wpacuFrontPageDataArray['scripts_attributes_no_load'][$assetHandle] );
}
Misc::addUpdateOption(
WPACU_PLUGIN_ID . '_front_page_data',
wp_json_encode( Misc::filterList( $wpacuFrontPageDataArray ) )
);
}
/*
* Tables: $wpdb->postmeta, $wpdb->termmeta, $wpdb->usermeta (all part of the standard WordPress tables)
* Plugin meta keys: _{$wpacuPluginId}_no_load', _{$wpacuPluginId}_data
* Get all Asset CleanUp (Pro) meta keys from all WordPress meta tables where it can be possibly used
*
*/
global $wpdb;
$wpacuPluginId = WPACU_PLUGIN_ID;
foreach (array($wpdb->postmeta, $wpdb->termmeta, $wpdb->usermeta) as $tableName) {
$wpacuGetValuesQuery = <<get_results( $wpacuGetValuesQuery, ARRAY_A );
foreach ( $wpacuMetaData as $wpacuValues ) {
$decodedValues = @json_decode( $wpacuValues['meta_value'], ARRAY_A );
// No load rules
if ( $wpacuValues['meta_key'] === '_' . $wpacuPluginId . '_no_load' && isset( $decodedValues[$assetType] ) && in_array($assetHandle, $decodedValues[$assetType]) ) {
$targetKey = array_search($assetHandle, $decodedValues[$assetType]);
unset($decodedValues[$assetType][$targetKey]);
if ($tableName === $wpdb->postmeta) {
update_post_meta($wpacuValues['post_id'], '_' . $wpacuPluginId . '_no_load', wp_json_encode( Misc::filterList( $decodedValues ) ) );
} elseif ($tableName === $wpdb->termmeta) {
update_term_meta($wpacuValues['term_id'], '_' . $wpacuPluginId . '_no_load', wp_json_encode( Misc::filterList( $decodedValues ) ) );
} elseif ($tableName === $wpdb->usermeta) {
update_user_meta($wpacuValues['user_id'], '_' . $wpacuPluginId . '_no_load', wp_json_encode( Misc::filterList( $decodedValues ) ) );
}
}
// Other rules such as script attribute (e.g. async, defer)
if ( $wpacuValues['meta_key'] === '_' . $wpacuPluginId . '_data' ) {
if ( isset( $decodedValues[$assetType][$assetHandle] ) ) {
unset( $decodedValues[ $assetType ][ $assetHandle ] );
}
// Load exceptions for script attributes
if ( $assetType === 'scripts' && isset( $decodedValues['scripts_attributes_no_load'][$assetHandle] ) ) {
unset($decodedValues['scripts_attributes_no_load'][$assetHandle]);
}
if ($tableName === $wpdb->postmeta) {
update_post_meta($wpacuValues['post_id'], '_' . $wpacuPluginId . '_data', wp_json_encode( Misc::filterList( $decodedValues ) ) );
} elseif ($tableName === $wpdb->termmeta) {
update_term_meta($wpacuValues['term_id'], '_' . $wpacuPluginId . '_data', wp_json_encode( Misc::filterList( $decodedValues ) ) );
} elseif ($tableName === $wpdb->usermeta) {
update_user_meta($wpacuValues['user_id'], '_' . $wpacuPluginId . '_data', wp_json_encode( Misc::filterList( $decodedValues ) ) );
}
}
}
}
}
/**
* Remove all unload rules apart from the site-wide one
*
* @param $assetHandle
* @param $assetType
*/
public static function removeAllRedundantUnloadRulesFor($assetHandle, $assetType)
{
/*
* Table: WPACU_PLUGIN_ID . '_front_page_no_load'
* Homepage (Unloads)
*/
$wpacuFrontPageUnloads = get_option(WPACU_PLUGIN_ID . '_front_page_no_load');
if ($wpacuFrontPageUnloads) {
$wpacuFrontPageUnloadsArray = @json_decode( $wpacuFrontPageUnloads, ARRAY_A );
if ( isset( $wpacuFrontPageUnloadsArray[$assetType] ) && ! empty( $wpacuFrontPageUnloadsArray[$assetType] ) && in_array( $assetHandle, $wpacuFrontPageUnloadsArray[$assetType] ) ) {
$targetKey = array_search($assetHandle, $wpacuFrontPageUnloadsArray[$assetType]);
unset($wpacuFrontPageUnloadsArray[$assetType][$targetKey]);
}
Misc::addUpdateOption(
WPACU_PLUGIN_ID . '_front_page_no_load',
wp_json_encode( Misc::filterList( $wpacuFrontPageUnloadsArray ) )
);
}
/*
* Table: WPACU_PLUGIN_ID . '_bulk_unload'
* Bulk Unload
*/
$wpacuBulkUnloadData = get_option(WPACU_PLUGIN_ID . '_bulk_unload');
$wpacuBulkUnloadDataArray = @json_decode($wpacuBulkUnloadData, ARRAY_A);
if (isset($wpacuBulkUnloadDataArray[$assetType]) && ! empty($wpacuBulkUnloadDataArray[$assetType])) {
foreach ($wpacuBulkUnloadDataArray[$assetType] as $unloadBulkType => $unloadBulkValues) {
// $unloadBulkType could be 'post_type', 'date', '404', 'taxonomy', 'search', 'custom_post_type_archive_[custom_post_type]'
if ($unloadBulkType === 'post_type') {
foreach ($unloadBulkValues as $postType => $assetHandles) {
if (in_array($assetHandle, $assetHandles)) {
$targetKey = array_search($assetHandle, $assetHandles);
unset($wpacuBulkUnloadDataArray[$assetType][$unloadBulkType][$postType][$targetKey]);
}
}
// [Any Pro left overs]
} elseif ($unloadBulkType === 'post_type_via_tax') {
foreach ($unloadBulkValues as $postType => $assetHandlesValues) {
if (isset($assetHandlesValues[$assetHandle]) && is_array($assetHandlesValues[$assetHandle])) {
unset($wpacuBulkUnloadDataArray[$assetType][$unloadBulkType][$postType][$assetHandle]);
}
}
} elseif (in_array($unloadBulkType, array('date', '404', 'search')) || (strpos($unloadBulkType, 'custom_post_type_archive_') !== false)) {
if (in_array($assetHandle, $unloadBulkValues)) {
$targetKey = array_search($assetHandle, $unloadBulkValues);
unset($wpacuBulkUnloadDataArray[$assetType][$unloadBulkType][$targetKey]);
}
} elseif ($unloadBulkType === 'taxonomy') {
foreach ($unloadBulkValues as $taxonomyType => $assetHandles) {
if (in_array($assetHandle, $assetHandles)) {
$targetKey = array_search($assetHandle, $assetHandles);
unset($wpacuBulkUnloadDataArray[$assetType][$unloadBulkType][$taxonomyType][$targetKey]);
}
}
} elseif ($unloadBulkType === 'author' && isset($unloadBulkValues['all']) && ! empty($unloadBulkValues['all'])) {
foreach ($unloadBulkValues['all'] as $assetHandles) {
if (in_array($assetHandle, $assetHandles)) {
$targetKey = array_search($assetHandle, $assetHandles);
unset($wpacuBulkUnloadDataArray[$assetType][$unloadBulkType]['all'][$targetKey]);
}
}
}
// [/Any Pro left overs]
}
Misc::addUpdateOption(
WPACU_PLUGIN_ID . '_bulk_unload',
wp_json_encode( Misc::filterList( $wpacuBulkUnloadDataArray ) )
);
}
/*
* Tables: $wpdb->postmeta, $wpdb->termmeta, $wpdb->usermeta (all part of the standard WordPress tables)
* Plugin meta key: _{$wpacuPluginId}_no_load'
*
*/
global $wpdb;
$wpacuPluginId = WPACU_PLUGIN_ID;
foreach (array($wpdb->postmeta, $wpdb->termmeta, $wpdb->usermeta) as $tableName) {
$wpacuGetValuesQuery = <<get_results( $wpacuGetValuesQuery, ARRAY_A );
foreach ( $wpacuMetaData as $wpacuValues ) {
$decodedValues = @json_decode( $wpacuValues['meta_value'], ARRAY_A );
// No load rules
if ( isset( $decodedValues[$assetType] ) && in_array($assetHandle, $decodedValues[$assetType]) ) {
$targetKey = array_search($assetHandle, $decodedValues[$assetType]);
unset($decodedValues[$assetType][$targetKey]);
if ($tableName === $wpdb->postmeta) {
update_post_meta($wpacuValues['post_id'], '_' . $wpacuPluginId . '_no_load', wp_json_encode( Misc::filterList( $decodedValues ) ) );
} elseif ($tableName === $wpdb->termmeta) {
update_term_meta($wpacuValues['term_id'], '_' . $wpacuPluginId . '_no_load', wp_json_encode( Misc::filterList( $decodedValues ) ) );
} elseif ($tableName === $wpdb->usermeta) {
update_user_meta($wpacuValues['user_id'], '_' . $wpacuPluginId . '_no_load', wp_json_encode( Misc::filterList( $decodedValues ) ) );
}
}
}
}
/*
* Table: WPACU_PLUGIN_ID . '_global_data'
* Global (Site-wide) Rules: Unload via RegEx
*/
$wpacuGlobalData = get_option(WPACU_PLUGIN_ID . '_global_data');
$wpacuGlobalDataArray = @json_decode($wpacuGlobalData, ARRAY_A);
foreach ( array( 'unload_regex' ) as $dataType ) {
if ( isset( $wpacuGlobalDataArray[ $assetType ][ $dataType ] ) && ! empty( $wpacuGlobalDataArray[ $assetType ][ $dataType ] ) && array_key_exists($assetHandle, $wpacuGlobalDataArray[ $assetType ][ $dataType ]) ) {
unset( $wpacuGlobalDataArray[ $assetType ][ $dataType ][ $assetHandle ]);
}
}
Misc::addUpdateOption(
WPACU_PLUGIN_ID . '_global_data',
wp_json_encode( Misc::filterList( $wpacuGlobalDataArray ) )
);
}
}