File "ActionScheduler_wpPostStore_PostStatusRegistrar.php"

Full Path: /home/warrior1/public_html/languages/wp-content/plugins/mailpoet/vendor/woocommerce/action-scheduler/classes/data-stores/ActionScheduler_wpPostStore_PostStatusRegistrar.php
File size: 1.34 KB
MIME-type: text/x-php
Charset: utf-8

<?php
if (!defined('ABSPATH')) exit;
class ActionScheduler_wpPostStore_PostStatusRegistrar {
 public function register() {
 register_post_status( ActionScheduler_Store::STATUS_RUNNING, array_merge( $this->post_status_args(), $this->post_status_running_labels() ) );
 register_post_status( ActionScheduler_Store::STATUS_FAILED, array_merge( $this->post_status_args(), $this->post_status_failed_labels() ) );
 }
 protected function post_status_args() {
 $args = array(
 'public' => false,
 'exclude_from_search' => false,
 'show_in_admin_all_list' => true,
 'show_in_admin_status_list' => true,
 );
 return apply_filters( 'action_scheduler_post_status_args', $args );
 }
 protected function post_status_failed_labels() {
 $labels = array(
 'label' => _x( 'Failed', 'post', 'action-scheduler' ),
 'label_count' => _n_noop( 'Failed <span class="count">(%s)</span>', 'Failed <span class="count">(%s)</span>', 'action-scheduler' ),
 );
 return apply_filters( 'action_scheduler_post_status_failed_labels', $labels );
 }
 protected function post_status_running_labels() {
 $labels = array(
 'label' => _x( 'In-Progress', 'post', 'action-scheduler' ),
 'label_count' => _n_noop( 'In-Progress <span class="count">(%s)</span>', 'In-Progress <span class="count">(%s)</span>', 'action-scheduler' ),
 );
 return apply_filters( 'action_scheduler_post_status_running_labels', $labels );
 }
}