';
_e('Settings successfully updated.','aiowpsecurity');
echo '
';
}
static function show_msg_record_deleted_st()
{
echo '';
_e('The selected record(s) deleted successfully!','aiowpsecurity');
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;
}
}