Yoast\WP\SEO\Bulk_Editor\Domain\Updates

Update_Error{}Yoast 1.0

This class holds the error codes an update can fail with.

Хуков нет.

Использование

$Update_Error = new Update_Error();
// use class methods

Методы

Нет Методов у класса.

Код Update_Error{} Yoast 28.3

class Update_Error {

	/**
	 * The current user is not allowed to edit the post.
	 */
	public const FORBIDDEN = 'forbidden';

	/**
	 * The post does not exist.
	 */
	public const NOT_FOUND = 'not_found';

	/**
	 * The post type is not supported by the bulk editor.
	 */
	public const INVALID_POST_TYPE = 'invalid_post_type';

	/**
	 * Saving the update failed.
	 */
	public const SAVE_FAILED = 'save_failed';
}