Automator_Get_Data::trigger_validation_function_from_trigger_code( $trigger_code = null )
Accepts a trigger code(most like from trigger meta) and returns that associated trigger validation function
Contents
Parameters Parameters
- $trigger_code
-
(Optional) null
Default value: null
Return Return
(null|array) String is the function is not within a class and array if it is
Source Source
File: src/core/lib/utilities/class-automator-get-data.php
public function trigger_validation_function_from_trigger_code( $trigger_code = null ) { if ( null === $trigger_code || ! is_string( $trigger_code ) ) { Automator()->error->add_error( 'get_trigger_validation_function_from_trigger_code', 'ERROR: You are trying to get a trigger validation function from a trigger code without providing a $trigger_code', $this ); return null; } // Load all default trigger settings $system_triggers = Automator()->get_triggers(); if ( empty( $system_triggers ) ) { return null; } foreach ( $system_triggers as $system_trigger ) { if ( $system_trigger['code'] === $trigger_code ) { return $system_trigger['validation_function']; } } return null; }
Expand full source code Collapse full source code View on Github