FM

/home/u523506497/domains/mymelon.in/public_html/career/wp-includes UP

<?php
/**
 * WordPress Error API.
 *
 * @package WordPress
 */

/**
 * WordPress Error class.
 *
 * Container for checking for WordPress errors and error messages. Return
 * 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
 * if not handled properly will result in code errors.
 *
 * @since 2.1.0
 */
#[AllowDynamicProperties]
class WP_Error {
	/**
	 * Stores the list of errors.
	 *
	 * @since 2.1.0
	 * @var array
	 */
	public $errors = array();

	/**
	 * Stores the most recently added data for each error code.
	 *
	 * @since 2.1.0
	 * @var array
	 */
	public $error_data = array();

	/**
	 * Stores previously added data added for error codes, oldest-to-newest by code.
	 *
	 * @since 5.6.0
	 * @var array[]
	 */
	protected $additional_data = array();

	/**
	 * Initializes the error.
	 *
	 * 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.
	 *
	 * Though the class is constructed with a single error code and
	 * message, multiple codes can be added using the `add()` method.
	 *
	 * @since 2.1.0
	 *
	 * @param string|int $code    Error code.
	 * @param string     $message Error message.
	 * @param mixed      $data    Optional. Error data. Default empty string.
	 */
	public function __construct( $code = '', $message = '', $data = '' ) {
		if ( empty( $code ) ) {
			return;
		}

		$this->add( $code, $message, $data );
	}

	/**
	 * Retrieves all error codes.
	 *
	 * @since 2.1.0
	 *
	 * @return array List of error codes, if available.
	 */
	public function get_error_codes() {
		if ( ! $this->has_errors() ) {
			return array();
		}

		return array_keys( $this->errors );
	}

	/**
	 * Retrieves the first error code available.
	 *
	 * @since 2.1.0
	 *
	 * @return string|int Empty string, if no error codes.
	 */
	public function get_error_code() {
		$codes = $this->get_error_codes();

		if ( empty( $codes ) ) {
			return '';
		}

		return $codes[0];
	}

	/**
	 * Retrieves all error messages, or the error messages for the given error code.
	 *
	 * @since 2.1.0
	 *
	 * @param string|int $code Optional. Error code to retrieve the messages for.
	 *                         Default empty string.
	 * @return string[] Error strings on success, or empty array if there are none.
	 */
	public function get_error_messages( $code = '' ) {
		// Return all messages if no code specified.
		if ( empty( $code ) ) {
			$all_messages = array();
			foreach ( (array) $this->errors as $code => $messages ) {
				$all_messages = array_merge( $all_messages, $messages );
			}

			return $all_messages;
		}

		if ( isset( $this->errors[ $code ] ) ) {
			return $this->errors[ $code ];
		} else {
			return array();
		}
	}

	/**
	 * Gets a 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 the message for.
	 *                         Default empty string.
	 * @return string The error message.
	 */
	public function get_error_message( $code = '' ) {
		if ( empty( $code ) ) {
			$code = $this->get_error_code();
		}
		$messages = $this->get_error_messages( $code );
		if ( empty( $messages ) ) {
			return '';
		}
		return $messages[0];
	}

	/**
	 * Retrieves the most recently added error data for an error code.
	 *
	 * @since 2.1.0
	 *
	 * @param string|int $code Optional. Error code. Default empty string.
	 * @return mixed Error data, if it exists.
	 */
	public function get_error_data( $code = '' ) {
		if ( empty( $code ) ) {
			$code = $this->get_error_code();
		}

		if ( isset( $this->error_data[ $code ] ) ) {
			return $this->error_data[ $code ];
		}
	}

	/**
	 * Verifies if the instance contains errors.
	 *
	 * @since 5.1.0
	 *
	 * @return bool If the instance contains errors.
	 */
	public function has_errors() {
		if ( ! empty( $this->errors ) ) {
			return true;
		}
		return false;
	}

	/**
	 * Adds an error or appends an additional message to an existing error.
	 *
	 * @since 2.1.0
	 *
	 * @param string|int $code    Error code.
	 * @param string     $message Error message.
	 * @param mixed      $data    Optional. Error data. Default empty string.
	 */
	public function add( $code, $message, $data = '' ) {
		$this->errors[ $code ][] = $message;

		if ( ! empty( $data ) ) {
			$this->add_data( $data, $code );
		}

		/**
		 * Fires when an error is added to a WP_Error object.
		 *
		 * @since 5.6.0
		 *
		 * @param string|int $code     Error code.
		 * @param string     $message  Error message.
		 * @param mixed      $data     Error data. Might be empty.
		 * @param WP_Error   $wp_error The WP_Error object.
		 */
		do_action( 'wp_error_added', $code, $message, $data, $this );
	}

	/**
	 * Adds data to an error with the given code.
	 *
	 * @since 2.1.0
	 * @since 5.6.0 Errors can now contain more than one item of error data. {@see WP_Error::$additional_data}.
	 *
	 * @param mixed      $data Error data.
	 * @param string|int $code Error code.
	 */
	public function add_data( $data, $code = '' ) {
		if ( empty( $code ) ) {
			$code = $this->get_error_code();
		}

		if ( isset( $this->error_data[ $code ] ) ) {
			$this->additional_data[ $code ][] = $this->error_data[ $code ];
		}

		$this->error_data[ $code ] = $data;
	}

	/**
	 * Retrieves all error data for an error code in the order in which the data was added.
	 *
	 * @since 5.6.0
	 *
	 * @param string|int $code Error code.
	 * @return mixed[] Array of error data, if it exists.
	 */
	public function get_all_error_data( $code = '' ) {
		if ( empty( $code ) ) {
			$code = $this->get_error_code();
		}

		$data = array();

		if ( isset( $this->additional_data[ $code ] ) ) {
			$data = $this->additional_data[ $code ];
		}

		if ( isset( $this->error_data[ $code ] ) ) {
			$data[] = $this->error_data[ $code ];
		}

		return $data;
	}

	/**
	 * 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 ] );
		unset( $this->additional_data[ $code ] );
	}

	/**
	 * Merges the errors in the given error object into this one.
	 *
	 * @since 5.6.0
	 *
	 * @param WP_Error $error Error object to merge.
	 */
	public function merge_from( WP_Error $error ) {
		static::copy_errors( $error, $this );
	}

	/**
	 * Exports the errors in this object into the given one.
	 *
	 * @since 5.6.0
	 *
	 * @param WP_Error $error Error object to export into.
	 */
	public function export_to( WP_Error $error ) {
		static::copy_errors( $this, $error );
	}

	/**
	 * Copies errors from one WP_Error instance to another.
	 *
	 * @since 5.6.0
	 *
	 * @param WP_Error $from The WP_Error to copy from.
	 * @param WP_Error $to   The WP_Error to copy to.
	 */
	protected static function copy_errors( WP_Error $from, WP_Error $to ) {
		foreach ( $from->get_error_codes() as $code ) {
			foreach ( $from->get_error_messages( $code ) as $error_message ) {
				$to->add( $code, $error_message );
			}

			foreach ( $from->get_all_error_data( $code ) as $data ) {
				$to->add_data( $data, $code );
			}
		}
	}
}
ID3-
IXR-
PHPMailer-
Requests-
SimplePie-
Text-
admin-bar.php37100V
assets-
atomlib.php12078V
author-template.php18951V
block-bindings-
block-bindings.php5594V
block-editor.php28340V
block-i18n.json316V
block-patterns-
block-patterns.php13119V
block-supports-
block-template-utils.php60145V
block-template.php14142V
blocks-
blocks.php104889V
bookmark-template.php12948V
bookmark.php15427V
cache-compat.php5969V
cache.php13474V
canonical.php34523V
capabilities.php42718V
category-template.php57003V
category.php12709V
certificates-
class-IXR.php2543V
class-avif-info.php29615V
class-feed.php539V
class-http.php367V
class-json.php43684V
class-oembed.php401V
class-phpass.php6771V
class-phpmailer.php664V
class-pop3.php21174V
class-requests.php2237V
class-simplepie.php453V
class-smtp.php457V
class-snoopy.php37715V
class-walker-category-dropdown.php2469V
class-walker-category.php8477V
class-walker-comment.php14221V
class-walker-nav-menu.php11784V
class-walker-page-dropdown.php2710V
class-walker-page.php7612V
class-wp-admin-bar.php17874V
class-wp-ajax-response.php5266V
class-wp-application-passwords.php15617V
class-wp-block-bindings-registry.php8463V
class-wp-block-bindings-source.php2992V
class-wp-block-editor-context.php1350V
class-wp-block-list.php4757V
class-wp-block-metadata-registry.php10227V
class-wp-block-parser-block.php2555V
class-wp-block-parser-frame.php2017V
class-wp-block-parser.php11532V
class-wp-block-pattern-categories-registry.php5371V
class-wp-block-patterns-registry.php10783V
class-wp-block-styles-registry.php6262V
class-wp-block-supports.php5612V
class-wp-block-template.php2033V
class-wp-block-templates-registry.php7231V
class-wp-block-type-registry.php5013V
class-wp-block-type.php17265V
class-wp-block.php20438V
class-wp-classic-to-block-menu-converter.php4088V
class-wp-comment-query.php48395V
class-wp-comment.php9372V
class-wp-customize-control.php25730V
class-wp-customize-manager.php202539V
class-wp-customize-nav-menus.php57185V
class-wp-customize-panel.php10637V
class-wp-customize-section.php11209V
class-wp-customize-setting.php29889V
class-wp-customize-widgets.php72157V
class-wp-date-query.php35726V
class-wp-dependencies.php15139V
class-wp-dependency.php2627V
class-wp-duotone.php40783V
class-wp-editor.php72335V
class-wp-embed.php15994V
class-wp-error.php7502V
class-wp-exception.php253V
class-wp-fatal-error-handler.php8150V
class-wp-feed-cache-transient.php3176V
class-wp-feed-cache.php969V
class-wp-hook.php16000V
class-wp-http-cookie.php7389V
class-wp-http-curl.php12541V
class-wp-http-encoding.php6689V
class-wp-http-ixr-client.php3501V
class-wp-http-proxy.php5980V
class-wp-http-requests-hooks.php2022V
class-wp-http-requests-response.php4400V
class-wp-http-response.php2977V
class-wp-http-streams.php16859V
class-wp-http.php41506V
class-wp-image-editor-gd.php19886V
class-wp-image-editor-imagick.php32668V
class-wp-image-editor.php16938V
class-wp-list-util.php7443V
class-wp-locale-switcher.php6630V
class-wp-locale.php16111V
class-wp-matchesmapregex.php1828V
class-wp-meta-query.php30531V
class-wp-metadata-lazyloader.php6833V
class-wp-navigation-fallback.php9211V
class-wp-network-query.php19857V
class-wp-network.php12296V
class-wp-object-cache.php17524V
class-wp-oembed-controller.php6905V
class-wp-oembed.php31475V
class-wp-paused-extensions-storage.php5111V
class-wp-plugin-dependencies.php25319V
class-wp-post-type.php30340V
class-wp-post.php6484V
class-wp-query.php154081V
class-wp-recovery-mode-cookie-service.php6877V
class-wp-recovery-mode-email-service.php11183V
class-wp-recovery-mode-key-service.php4608V
class-wp-recovery-mode-link-service.php3463V
class-wp-recovery-mode.php11435V
class-wp-rewrite.php63688V
class-wp-role.php2523V
class-wp-roles.php8586V
class-wp-script-modules.php19366V
class-wp-scripts.php28344V
class-wp-session-tokens.php7451V
class-wp-simplepie-file.php3408V
class-wp-simplepie-sanitize-kses.php1837V
class-wp-site-query.php31625V
class-wp-site.php7454V
class-wp-styles.php11010V
class-wp-tax-query.php19555V
class-wp-taxonomy.php18567V
class-wp-term-query.php40869V
class-wp-term.php5298V
class-wp-text-diff-renderer-inline.php979V
class-wp-text-diff-renderer-table.php18807V
class-wp-textdomain-registry.php10481V
class-wp-theme-json-data.php1809V
class-wp-theme-json-resolver.php35805V
class-wp-theme-json-schema.php7367V
class-wp-theme-json.php160780V
class-wp-theme.php65413V
class-wp-token-map.php28618V
class-wp-user-meta-session-tokens.php2990V
class-wp-user-query.php43654V
class-wp-user-request.php2222V
class-wp-user.php22827V
class-wp-walker.php13322V
class-wp-widget-factory.php3347V
class-wp-widget.php18424V
class-wp-xmlrpc-server.php214948V
class-wp.php26119V
class-wpdb.php118389V
class.wp-dependencies.php373V
class.wp-scripts.php343V
class.wp-styles.php338V
comment-template.php102773V
comment.php130275V
compat.php16974V
cron.php41594V
css-
customize-
date.php400V
default-constants.php11365V
default-filters.php35685V
default-widgets.php2222V
deprecated.php190130V
embed-template.php338V
embed.php37908V
error-protection.php4121V
feed-atom-comments.php5504V
feed-atom.php3048V
feed-rdf.php2668V
feed-rss.php1189V
feed-rss2-comments.php4136V
feed-rss2.php3799V
feed.php23411V
fonts-
fonts.php9751V
formatting.php335229V
functions.php283163V
functions.wp-scripts.php14558V
functions.wp-styles.php8583V
general-template.php169492V
global-styles-and-settings.php21205V
html-api-
http.php25312V
https-detection.php5661V
https-migration.php4741V
images-
interactivity-api-
js-
kses.php74403V
l10n-
l10n.php68415V
link-template.php157710V
load.php55658V
locale.php162V
media-template.php63043V
media.php218424V
meta.php64409V
ms-blogs.php25772V
ms-default-constants.php4921V
ms-default-filters.php6636V
ms-deprecated.php21759V
ms-files.php2711V
ms-functions.php91249V
ms-load.php19883V
ms-network.php3782V
ms-settings.php4124V
ms-site.php40490V
nav-menu-template.php25917V
nav-menu.php44373V
option.php101759V
php-compat-
pluggable-deprecated.php6263V
pluggable.php115970V
plugin.php35465V
pomo-
post-formats.php7102V
post-template.php66880V
post-thumbnail-template.php10826V
post.php289894V
query.php37035V
registration-functions.php200V
registration.php200V
rest-api-
rest-api.php99593V
revision.php30890V
rewrite.php19541V
robots-template.php5185V
rss-functions.php255V
rss.php23113V
script-loader.php130735V
script-modules.php7712V
session.php258V
shortcodes.php24051V
sitemaps-
sitemaps.php3238V
sodium_compat-
spl-autoload-compat.php441V
style-engine-
style-engine.php7563V
taxonomy.php175438V
template-canvas.php544V
template-loader.php3012V
template.php24154V
theme-compat-
theme-i18n.json1292V
theme-previews.php2832V
theme-templates.php6223V
theme.json8704V
theme.php133985V
update.php36788V
user.php174410V
vars.php6489V
version.php931V
widgets-
widgets.php70682V
wp-db.php445V
wp-diff.php726V
Blog - Page 290 of 508 - My Melon - Digital Marketing & Creative Agency
Skip to content Skip to footer