2010-10-30 09:02:06 +02:00
|
|
|
<?php
|
|
|
|
/**
|
2010-10-30 16:09:05 +02:00
|
|
|
* WordPress Error API.
|
2010-10-30 09:02:06 +02:00
|
|
|
*
|
2010-10-30 16:09:05 +02:00
|
|
|
* Contains the WP_Error class and the is_wp_error() function.
|
2010-10-30 09:02:06 +02:00
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* WordPress Error class.
|
|
|
|
*
|
|
|
|
* Container for checking for WordPress errors and error messages. Return
|
2016-05-22 19:39:28 +02:00
|
|
|
* WP_Error and use is_wp_error() to check if this class is returned. Many
|
|
|
|
* core WordPress functions pass this class in the event of an error and
|
2010-10-30 09:02:06 +02:00
|
|
|
* if not handled properly will result in code errors.
|
|
|
|
*
|
|
|
|
* @since 2.1.0
|
|
|
|
*/
|
|
|
|
class WP_Error {
|
|
|
|
/**
|
|
|
|
* Stores the list of errors.
|
|
|
|
*
|
|
|
|
* @since 2.1.0
|
|
|
|
* @var array
|
|
|
|
*/
|
2015-01-11 01:01:22 +01:00
|
|
|
public $errors = array();
|
2010-10-30 09:02:06 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Stores the list of data for error codes.
|
|
|
|
*
|
|
|
|
* @since 2.1.0
|
|
|
|
* @var array
|
|
|
|
*/
|
2015-01-11 01:01:22 +01:00
|
|
|
public $error_data = array();
|
2010-10-30 09:02:06 +02:00
|
|
|
|
|
|
|
/**
|
2014-06-04 08:06:14 +02:00
|
|
|
* Initialize the error.
|
2010-10-30 09:02:06 +02:00
|
|
|
*
|
2014-06-04 08:06:14 +02:00
|
|
|
* If `$code` is empty, the other parameters will be ignored.
|
|
|
|
* When `$code` is not empty, `$message` will be used even if
|
|
|
|
* it is empty. The `$data` parameter will be used only if it
|
|
|
|
* is not empty.
|
2010-10-30 09:02:06 +02:00
|
|
|
*
|
2014-06-04 08:06:14 +02:00
|
|
|
* Though the class is constructed with a single error code and
|
|
|
|
* message, multiple codes can be added using the `add()` method.
|
2010-10-30 09:02:06 +02:00
|
|
|
*
|
|
|
|
* @since 2.1.0
|
|
|
|
*
|
2020-07-23 22:01:04 +02:00
|
|
|
* @param string|int $code Error code.
|
|
|
|
* @param string $message Error message.
|
|
|
|
* @param mixed $data Optional. Error data.
|
2010-10-30 09:02:06 +02:00
|
|
|
*/
|
2014-06-04 08:06:14 +02:00
|
|
|
public function __construct( $code = '', $message = '', $data = '' ) {
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( empty( $code ) ) {
|
2010-10-30 09:02:06 +02:00
|
|
|
return;
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2010-10-30 09:02:06 +02:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
$this->errors[ $code ][] = $message;
|
2010-10-30 09:02:06 +02:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( ! empty( $data ) ) {
|
|
|
|
$this->error_data[ $code ] = $data;
|
|
|
|
}
|
2010-10-30 09:02:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Retrieve all error codes.
|
|
|
|
*
|
|
|
|
* @since 2.1.0
|
|
|
|
*
|
2011-09-03 18:02:41 +02:00
|
|
|
* @return array List of error codes, if available.
|
2010-10-30 09:02:06 +02:00
|
|
|
*/
|
2014-05-19 07:50:14 +02:00
|
|
|
public function get_error_codes() {
|
2018-02-27 03:31:31 +01:00
|
|
|
if ( ! $this->has_errors() ) {
|
2010-10-30 09:02:06 +02:00
|
|
|
return array();
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2010-10-30 09:02:06 +02:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
return array_keys( $this->errors );
|
2010-10-30 09:02:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Retrieve first error code available.
|
|
|
|
*
|
|
|
|
* @since 2.1.0
|
|
|
|
*
|
|
|
|
* @return string|int Empty string, if no error codes.
|
|
|
|
*/
|
2014-05-19 07:50:14 +02:00
|
|
|
public function get_error_code() {
|
2010-10-30 09:02:06 +02:00
|
|
|
$codes = $this->get_error_codes();
|
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( empty( $codes ) ) {
|
2010-10-30 09:02:06 +02:00
|
|
|
return '';
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2010-10-30 09:02:06 +02:00
|
|
|
|
|
|
|
return $codes[0];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Retrieve all error messages or error messages matching code.
|
|
|
|
*
|
|
|
|
* @since 2.1.0
|
|
|
|
*
|
|
|
|
* @param string|int $code Optional. Retrieve messages matching code, if exists.
|
2011-09-03 18:02:41 +02:00
|
|
|
* @return array Error strings on success, or empty array on failure (if using code parameter).
|
2010-10-30 09:02:06 +02:00
|
|
|
*/
|
2017-12-01 00:11:00 +01:00
|
|
|
public function get_error_messages( $code = '' ) {
|
2010-10-30 09:02:06 +02:00
|
|
|
// Return all messages if no code specified.
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( empty( $code ) ) {
|
2010-10-30 09:02:06 +02:00
|
|
|
$all_messages = array();
|
2017-12-01 00:11:00 +01:00
|
|
|
foreach ( (array) $this->errors as $code => $messages ) {
|
|
|
|
$all_messages = array_merge( $all_messages, $messages );
|
|
|
|
}
|
2010-10-30 09:02:06 +02:00
|
|
|
|
|
|
|
return $all_messages;
|
|
|
|
}
|
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( isset( $this->errors[ $code ] ) ) {
|
|
|
|
return $this->errors[ $code ];
|
|
|
|
} else {
|
2010-10-30 09:02:06 +02:00
|
|
|
return array();
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2010-10-30 09:02:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get single error message.
|
|
|
|
*
|
|
|
|
* This will get the first message available for the code. If no code is
|
|
|
|
* given then the first code available will be used.
|
|
|
|
*
|
|
|
|
* @since 2.1.0
|
|
|
|
*
|
|
|
|
* @param string|int $code Optional. Error code to retrieve message.
|
|
|
|
* @return string
|
|
|
|
*/
|
2017-12-01 00:11:00 +01:00
|
|
|
public function get_error_message( $code = '' ) {
|
|
|
|
if ( empty( $code ) ) {
|
2010-10-30 09:02:06 +02:00
|
|
|
$code = $this->get_error_code();
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
|
|
|
$messages = $this->get_error_messages( $code );
|
|
|
|
if ( empty( $messages ) ) {
|
2010-10-30 09:02:06 +02:00
|
|
|
return '';
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2010-10-30 09:02:06 +02:00
|
|
|
return $messages[0];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Retrieve error data for error code.
|
|
|
|
*
|
|
|
|
* @since 2.1.0
|
|
|
|
*
|
|
|
|
* @param string|int $code Optional. Error code.
|
2015-05-24 07:40:25 +02:00
|
|
|
* @return mixed Error data, if it exists.
|
2010-10-30 09:02:06 +02:00
|
|
|
*/
|
2017-12-01 00:11:00 +01:00
|
|
|
public function get_error_data( $code = '' ) {
|
|
|
|
if ( empty( $code ) ) {
|
2010-10-30 09:02:06 +02:00
|
|
|
$code = $this->get_error_code();
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2010-10-30 09:02:06 +02:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( isset( $this->error_data[ $code ] ) ) {
|
|
|
|
return $this->error_data[ $code ];
|
|
|
|
}
|
2010-10-30 09:02:06 +02:00
|
|
|
}
|
|
|
|
|
2018-02-27 03:31:31 +01:00
|
|
|
/**
|
|
|
|
* Verify if the instance contains errors.
|
|
|
|
*
|
2019-01-09 23:42:51 +01:00
|
|
|
* @since 5.1.0
|
2018-02-27 03:31:31 +01:00
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function has_errors() {
|
|
|
|
if ( ! empty( $this->errors ) ) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2010-10-30 09:02:06 +02:00
|
|
|
/**
|
2014-06-04 08:06:14 +02:00
|
|
|
* Add an error or append additional message to an existing error.
|
2010-10-30 09:02:06 +02:00
|
|
|
*
|
|
|
|
* @since 2.1.0
|
|
|
|
*
|
2020-07-23 22:01:04 +02:00
|
|
|
* @param string|int $code Error code.
|
|
|
|
* @param string $message Error message.
|
|
|
|
* @param mixed $data Optional. Error data.
|
2010-10-30 09:02:06 +02:00
|
|
|
*/
|
2017-12-01 00:11:00 +01:00
|
|
|
public function add( $code, $message, $data = '' ) {
|
|
|
|
$this->errors[ $code ][] = $message;
|
|
|
|
if ( ! empty( $data ) ) {
|
|
|
|
$this->error_data[ $code ] = $data;
|
|
|
|
}
|
2010-10-30 09:02:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Add data for error code.
|
|
|
|
*
|
|
|
|
* The error code can only contain one error data.
|
|
|
|
*
|
|
|
|
* @since 2.1.0
|
|
|
|
*
|
2020-07-23 22:01:04 +02:00
|
|
|
* @param mixed $data Error data.
|
2010-10-30 09:02:06 +02:00
|
|
|
* @param string|int $code Error code.
|
|
|
|
*/
|
2017-12-01 00:11:00 +01:00
|
|
|
public function add_data( $data, $code = '' ) {
|
|
|
|
if ( empty( $code ) ) {
|
2010-10-30 09:02:06 +02:00
|
|
|
$code = $this->get_error_code();
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2010-10-30 09:02:06 +02:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
$this->error_data[ $code ] = $data;
|
2010-10-30 09:02:06 +02:00
|
|
|
}
|
2014-12-01 02:34:24 +01:00
|
|
|
|
2014-10-08 09:12:18 +02:00
|
|
|
/**
|
|
|
|
* Removes the specified error.
|
|
|
|
*
|
|
|
|
* This function removes all error messages associated with the specified
|
|
|
|
* error code, along with any error data for that code.
|
|
|
|
*
|
|
|
|
* @since 4.1.0
|
|
|
|
*
|
|
|
|
* @param string|int $code Error code.
|
|
|
|
*/
|
|
|
|
public function remove( $code ) {
|
|
|
|
unset( $this->errors[ $code ] );
|
|
|
|
unset( $this->error_data[ $code ] );
|
|
|
|
}
|
2010-10-30 09:02:06 +02:00
|
|
|
}
|