ActionScheduler_wcSystemStatus::__call
Is triggered when invoking inaccessible methods in an object context.
Method of the class: ActionScheduler_wcSystemStatus{}
No Hooks.
Returns
Mixed.
Usage
$ActionScheduler_wcSystemStatus = new ActionScheduler_wcSystemStatus(); $ActionScheduler_wcSystemStatus->__call( $name, $arguments );
- $name(string) (required)
- Name of method called.
- $arguments(array) (required)
- Parameters to invoke the method with.
ActionScheduler_wcSystemStatus::__call() ActionScheduler wcSystemStatus:: call code WC 10.8.1
public function __call( $name, $arguments ) {
switch ( $name ) {
case 'print':
_deprecated_function( __CLASS__ . '::print()', '2.2.4', __CLASS__ . '::render()' );
return call_user_func_array( array( $this, 'render' ), $arguments );
}
return null;
}