Current File : /home/digitaw/www/wp-content/plugins/event-tickets/src/Tickets/Commerce/Status/Undefined.php
<?php

namespace TEC\Tickets\Commerce\Status;

/**
 * Class Undefined.
 *
 * Orders that landed on Undefined are just broken in some way that we cannot define.
 *
 * @since 5.1.9
 *
 * @package TEC\Tickets\Commerce\Status
 */
class Undefined extends Status_Abstract {
	/**
	 * Slug for this Status.
	 *
	 * @since 5.1.9
	 *
	 * @var string
	 */
	const SLUG = 'undefined';

	/**
	 * {@inheritdoc}
	 */
	public function get_name() {
		return __( 'Undefined', 'event-tickets' );
	}

	/**
	 * {@inheritdoc}
	 */
	protected $flags = [
		'count_incomplete',
		'incomplete',
		'warning',
		'backfill_purchaser',
	];

	/**
	 * {@inheritdoc}
	 */
	protected $wp_arguments = [
		'public'                    => false,
		'exclude_from_search'       => true,
		'show_in_admin_all_list'    => true,
		'show_in_admin_status_list' => false,
	];
}