This filter provides access to modify block settings array generated by the arm_get_all_block_settings() function.
Hook Name: arm_get_all_block_settings
Hook Type: Filter
Source: core/classes/class.arm_global_settings.php
Usage:
add_filter( 'arm_get_all_block_settings', 'your_function');
function your_function($all_block_settings = array()) {
//$all_block_settings All Security Settings.
$all_block_settings['some_option'] = "Option Value";
return $all_block_settings;
}
Parameters:
$all_block_settings
Array – All Security Settings