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