';
_e('Settings successfully updated.','all-in-one-wp-security-and-firewall');
echo '
';
}
static function show_msg_record_deleted_st()
{
echo '';
_e('The selected record(s) deleted successfully!','all-in-one-wp-security-and-firewall');
echo '
';
}
function show_msg_updated($msg)
{
echo '';
}
static function show_msg_updated_st($msg)
{
echo '';
}
function show_msg_error($error_msg)
{
echo '';
echo $error_msg;
echo '
';
}
static function show_msg_error_st($error_msg)
{
echo '';
echo $error_msg;
echo '
';
}
function start_buffer()
{
ob_start();
}
function end_buffer_and_collect()
{
$output = ob_get_contents();
ob_end_clean();
return $output;
}
static function display_bulk_result_message()
{
if(isset($_GET['bulk_count'])) {
AIOWPSecurity_Admin_Menu::show_msg_updated_st(__('The bulk action was successful', 'all-in-one-wp-security-and-firewall'));
}
if(isset($_GET['bulk_error'])) {
AIOWPSecurity_Admin_Menu::show_msg_error_st(__('The bulk action failed', 'all-in-one-wp-security-and-firewall'));
}
}
}