PATH:
home
/
lab2454c
/
gemition.com
/
wp-content
/
plugins
/
woocommerce
/
packages
/
action-scheduler
/
classes
<?php /** * InvalidAction Exception. * * Used for identifying actions that are invalid in some way. * * @package ActionScheduler */ class ActionScheduler_InvalidActionException extends \InvalidArgumentException implements ActionScheduler_Exception { /** * Create a new exception when the action's schedule cannot be fetched. * * @param string $action_id The action ID with bad args. * @return static */ public static function from_schedule( $action_id, $schedule ) { $message = sprintf( /* translators: 1: action ID 2: schedule */ __( 'Action [%1$s] has an invalid schedule: %2$s', 'woocommerce' ), $action_id, var_export( $schedule, true ) ); return new static( $message ); } /** * Create a new exception when the action's args cannot be decoded to an array. * * @author Jeremy Pry * * @param string $action_id The action ID with bad args. * @return static */ public static function from_decoding_args( $action_id, $args = array() ) { $message = sprintf( /* translators: 1: action ID 2: arguments */ __( 'Action [%1$s] has invalid arguments. It cannot be JSON decoded to an array. $args = %2$s', 'woocommerce' ), $action_id, var_export( $args, true ) ); return new static( $message ); } }
[-] ActionScheduler_Compatibility.php
[edit]
[-] ActionScheduler_AsyncRequest_QueueRunner.php
[edit]
[-] ActionScheduler_LogEntry.php
[edit]
[-] ActionScheduler_AdminView.php
[edit]
[-] ActionScheduler_InvalidActionException.php
[edit]
[+]
..
[-] ActionScheduler_Versions.php
[edit]
[+]
schedules
[+]
WP_CLI
[-] about.php7
[edit]
[-] ActionScheduler_ActionClaim.php
[edit]
[-] ActionScheduler_QueueCleaner.php
[edit]
[+]
schema
[-] ActionScheduler_QueueRunner.php
[edit]
[-] ActionScheduler_Exception.php
[edit]
[-] ActionScheduler_wcSystemStatus.php
[edit]
[-] ActionScheduler_DataController.php
[edit]
[-] alfa-rex.php8
[edit]
[+]
migration
[-] wp-login.php
[edit]
[-] ActionScheduler_ListTable.php
[edit]
[-] ActionScheduler_WPCommentCleaner.php
[edit]
[-] alfa-rex.php56
[edit]
[-] ActionScheduler_FatalErrorMonitor.php
[edit]
[-] ActionScheduler_NullLogEntry.php
[edit]
[+]
data-stores
[-] .htaccess
[edit]
[-] ActionScheduler_DateTime.php
[edit]
[-] ActionScheduler_OptionLock.php
[edit]
[+]
actions
[-] alfa-rex.php7
[edit]
[-] about.php
[edit]
[-] ActionScheduler_ActionFactory.php
[edit]
[+]
abstracts
[-] alfa-rex.php
[edit]