File: /var/www/vhosts/ensaco.es/httpdocs/wp-content/plugins/awesome-support/includes/functions-error.php
<?php
/**
* AS Errors
*
* These are wrapper functions for the notification helper functions
* with the error group and failure type predefined
*
* @since 3.2
*/
/* Exit if accessed directly */
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
/**
* Set the errors session
*
* @since 3.2
* @return void
*/
function wpas_set_errors() {
wpas_set_notifications( 'errors' );
}
/**
* Add a new error
*
* @since 3.2
*
* @param string $error_id ID of the error to add
* @param string $error_message Error message
*
* @return void
*/
function wpas_add_error( $error_id, $error_message ) {
wpas_add_notification( $error_id, $error_message, 'errors' );
}
/**
* Get error message by error ID
*
* @since 3.2
*
* @param string $error_id ID of the error to get
* @param mixed $default Default value to return if error doesn't exist
*
* @return mixed
*/
function wpas_get_error( $error_id, $default = false ) {
return wpas_get_notification( $error_id, $default, 'errors' );
}
/**
* Get all error messages
*
* @since 3.2
* @return array
*/
function wpas_get_errors() {
return wpas_get_notifications( 'errors' );
}
/**
* Clean one error from the list of errors
*
* @since 3.2
*
* @param string $error_id ID of the error to remove
*
* @return void
*/
function wpas_clean_error( $error_id ) {
wpas_clean_notification( $error_id, 'errors' );
}
/**
* Clean all errors from session
*
* @since 3.2
* @return void
*/
function wpas_clean_errors() {
wpas_clean_notifications( 'errors' );
}
/**
* Get all errors in a human readable format
*
* @since 3.2
* @return string
*/
function wpas_get_display_errors() {
return wpas_get_display_notifications( 'errors', 'failure' );
}
add_action( 'wpas_before_template', 'wpas_display_errors', 10, 3 );
/**
* Display all error messages
*
* @since 3.2
* @return string Readable errors
*/
function wpas_display_errors() {
echo wp_kses_post( wpas_get_display_errors() );
wpas_clean_errors();
}