403Webshell
Server IP : 104.21.14.103  /  Your IP : 18.220.73.141
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 :  /proc/self/root/proc/thread-self/root/home/giankuin/thietke365.net/wp-content/plugins/mailpoet/vendor/woocommerce/action-scheduler/classes/actions/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /proc/self/root/proc/thread-self/root/home/giankuin/thietke365.net/wp-content/plugins/mailpoet/vendor/woocommerce/action-scheduler/classes/actions/ActionScheduler_Action.php
<?php
if (!defined('ABSPATH')) exit;
class ActionScheduler_Action {
 protected $hook = '';
 protected $args = array();
 protected $schedule = NULL;
 protected $group = '';
 public function __construct( $hook, array $args = array(), ActionScheduler_Schedule $schedule = NULL, $group = '' ) {
 $schedule = empty( $schedule ) ? new ActionScheduler_NullSchedule() : $schedule;
 $this->set_hook($hook);
 $this->set_schedule($schedule);
 $this->set_args($args);
 $this->set_group($group);
 }
 public function execute() {
 $hook = $this->get_hook();
 if ( ! has_action( $hook ) ) {
 throw new Exception(
 sprintf(
 __( 'Scheduled action for %1$s will not be executed as no callbacks are registered.', 'action-scheduler' ),
 $hook
 )
 );
 }
 do_action_ref_array( $hook, array_values( $this->get_args() ) );
 }
 protected function set_hook( $hook ) {
 $this->hook = $hook;
 }
 public function get_hook() {
 return $this->hook;
 }
 protected function set_schedule( ActionScheduler_Schedule $schedule ) {
 $this->schedule = $schedule;
 }
 public function get_schedule() {
 return $this->schedule;
 }
 protected function set_args( array $args ) {
 $this->args = $args;
 }
 public function get_args() {
 return $this->args;
 }
 protected function set_group( $group ) {
 $this->group = $group;
 }
 public function get_group() {
 return $this->group;
 }
 public function is_finished() {
 return FALSE;
 }
}

Youez - 2016 - github.com/yon3zu
LinuXploit