403Webshell
Server IP : 104.21.14.103  /  Your IP : 18.118.121.23
Web Server : LiteSpeed
System : Linux business53.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64
User : giankuin ( 1871)
PHP Version : 7.4.33
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /home/giankuin/dietcontrungnhanh.com/wp-content/plugins/ithemes-security-pro/pro/wp-cli/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /home/giankuin/dietcontrungnhanh.com/wp-content/plugins/ithemes-security-pro/pro/wp-cli/scheduler.php
<?php

/**
 * View events scheduled by Solid Security.
 */
class ITSEC_Scheduler_Command extends WP_CLI_Command {

	/**
	 * List the scheduled events.
	 *
	 * ## OPTIONS
	 *
	 * [--single]
	 * : Only list one-time events.
	 *
	 * [--recurring]
	 * : Only list recurring events.
	 *
	 * @subcommand list
	 *
	 * @param array $args
	 * @param array $assoc_args
	 */
	public function list_( $args, $assoc_args ) {

		$assoc_args = wp_parse_args( $assoc_args, array( 'format' => 'table' ) );
		$scheduler  = ITSEC_Core::get_scheduler();

		$single_only = false;

		if ( ! empty( $assoc_args['single'] ) ) {
			$events      = $scheduler->get_single_events();
			$single_only = true;
		} elseif ( ! empty( $assoc_args['recurring'] ) ) {
			$events = $scheduler->get_recurring_events();
		} else {
			$events = array_merge( $scheduler->get_single_events(), $scheduler->get_recurring_events() );
		}

		$formatted = array();

		foreach ( $events as $event ) {
			$pretty = array(
				'id'          => $event['id'],
				'data'        => $event['data'],
				'fire_at'     => date( 'Y-m-d H:i:s', $event['fire_at'] + ITSEC_Core::get_time_offset() ),
				'fire_at_gmt' => date( 'Y-m-d H:i:s', $event['fire_at'] ),
			);

			if ( ! empty( $event['schedule'] ) ) {
				$pretty['schedule'] = $event['schedule'];
			} elseif ( ! $single_only ) {
				$pretty['schedule'] = '-';
			}

			$formatted[] = $pretty;
		}

		usort( $formatted, function ( $a, $b ) {
			$cmp = strcmp( $a['id'], $b['id'] );

			if ( $cmp === 0 ) {
				return strtotime( $a['fire_at_gmt'] ) - strtotime( $b['fire_at_gmt'] );
			}

			return $cmp;
		} );

		$columns = array( 'id', 'data', 'fire_at', 'fire_at_gmt' );

		if ( ! $single_only ) {
			$columns[] = 'schedule';
		}

		\WP_CLI\Utils\format_items( $assoc_args['format'], $formatted, $columns );
	}

	/**
	 * Get the type of scheduler being used.
	 *
	 * @return string
	 */
	public function type() {
		WP_CLI::line( get_class( ITSEC_Core::get_scheduler() ) );
	}

	/**
	 * Reset the scheduled events.
	 *
	 * This will unregister all events and then re-register them.
	 */
	public function reset() {
		ITSEC_Core::get_scheduler()->reset();
		WP_CLI::success( 'Scheduler reset.' );
	}

	/**
	 * Manually run a specific recurring event.
	 *
	 * ## OPTIONS
	 *
	 * <id>
	 * : The ID of the recurring event to run.
	 *
	 * ## EXAMPLES
	 *
	 *     wp itsec events run clear-locks
	 *
	 * @param array $args
	 */
	public function run( $args ) {
		ITSEC_Core::get_scheduler()->run_recurring_event( $args[0] );
	}

	/**
	 * Manually run a specific single event.
	 *
	 * If more than one event is found with the given id, the command
	 * will prompt a menu to select the desired event.
	 *
	 * ## OPTIONS
	 *
	 * <id>
	 * : The id of the recurring event to run.
	 *
	 * @subcommand run-single
	 */
	public function run_single( $args ) {

		$scheduler = ITSEC_Core::get_scheduler();
		$single    = wp_list_filter( $scheduler->get_single_events(), array( 'id' => $args[0] ) );

		if ( ! $single ) {
			WP_CLI::error( 'No events found with that id.' );
		}

		if ( count( $single ) > 1 ) {
			$options = wp_list_pluck( $single, 'data' );
			$as_json = array_map( 'wp_json_encode', $options );

			$i    = \cli\menu( $as_json );
			$data = $options[ $i ];
		} else {
			$data = $single[0]['data'];
		}

		$scheduler->run_single_event( $args[0], $data );
		WP_CLI::success( 'Event run' );
	}
}

WP_CLI::add_command( 'itsec events', 'ITSEC_Scheduler_Command' );

Youez - 2016 - github.com/yon3zu
LinuXploit