| Current File : /home/digitaw/www/wp-content/plugins/event-tickets/src/Tickets/Commerce/Status/Created.php |
<?php
namespace TEC\Tickets\Commerce\Status;
/**
* Class Created.
*
* This is the first Status any order will have.
*
* Used for handling the Orders that were Created in the Tickets Commerce System but never got to Pending.
* Normally the change to Pending will depend on the Gateway.
*
* @since 5.1.9
*
* @package TEC\Tickets\Commerce\Status
*/
class Created extends Status_Abstract {
/**
* Slug for this Status.
*
* @since 5.1.9
*
* @var string
*/
const SLUG = 'created';
/**
* {@inheritdoc}
*/
public function get_name() {
return __( 'Created', 'event-tickets' );
}
/**
* {@inheritdoc}
*/
protected $flags = [
'incomplete',
'backfill_purchaser',
'trigger_option',
];
/**
* {@inheritdoc}
*/
protected $wp_arguments = [
'public' => false,
'exclude_from_search' => false,
'show_in_admin_all_list' => true,
'show_in_admin_status_list' => false,
];
}