File "AbstractJob.php"

Full Path: /home/vantageo/public_html/cache/cache/cache/cache/cache/cache/cache/cache/cache/.wp-cli/wp-content/plugins/facebook-for-woocommerce/vendor/woocommerce/action-scheduler-job-framework/src/AbstractJob.php
File size: 1.67 KB
MIME-type: text/x-php
Charset: utf-8

<?php
declare( strict_types=1 );

namespace Automattic\WooCommerce\ActionSchedulerJobFramework;

use Automattic\WooCommerce\ActionSchedulerJobFramework\Proxies\ActionSchedulerInterface;

defined( 'ABSPATH' ) || exit;

/**
 * AbstractJob class.
 *
 * Abstract class for jobs that use ActionScheduler.
 *
 * @since 1.0.0
 */
abstract class AbstractJob implements JobInterface {

	/**
	 * @var ActionSchedulerInterface
	 */
	protected $action_scheduler;

	/**
	 * AbstractJob constructor.
	 *
	 * @param ActionSchedulerInterface $action_scheduler
	 */
	public function __construct( ActionSchedulerInterface $action_scheduler ) {
		$this->action_scheduler = $action_scheduler;
	}

	/**
	 * Get the base name for the job's scheduled actions.
	 *
	 * @return string
	 */
	protected function get_action_basename(): string {
		return "{$this->get_plugin_name()}/jobs/{$this->get_name()}/";
	}

	/**
	 * Get a job action's full name.
	 *
	 * @param string $short_name The name of the action without the basename.
	 *
	 * @return string The full hook name with the basename prepended.
	 */
	protected function get_action_full_name( string $short_name ): string {
		return $this->get_action_basename() . $short_name;
	}

	/**
	 * Schedule an immediate action for the job.
	 *
	 * @param string $action_short_name
	 * @param array  $args
	 */
	protected function schedule_immediate_action( string $action_short_name, array $args ) {
		$this->action_scheduler->schedule_immediate(
			$this->get_action_full_name( $action_short_name ),
			$args,
			$this->get_group_name()
		);
	}

	/**
	 * Get the action group name/slug for the job.
	 *
	 * @return string
	 */
	public function get_group_name(): string {
		return '';
	}

}