'; _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 '

'; echo $msg; echo '

'; } static function show_msg_updated_st($msg) { echo '

'; echo $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; } }