Warning: Array to string conversion in /home/customer/www/docs.automatorplugin.com/public_html/wp-content/themes/wporg-developer/inc/template-tags.php on line 825
Warning: foreach() argument must be of type array|object, string given in /home/customer/www/docs.automatorplugin.com/public_html/wp-content/themes/wporg-developer/inc/template-tags.php on line 830
Warning: Array to string conversion in /home/customer/www/docs.automatorplugin.com/public_html/wp-content/themes/wporg-developer/inc/template-tags.php on line 825
Automator_Get_Data::trigger_options_from_trigger_code( null $trigger_code )
Accepts a trigger code(most like from trigger meta) and returns that associated trigger options
Contents
Warning: foreach() argument must be of type array|object, string given in /home/customer/www/docs.automatorplugin.com/public_html/wp-content/themes/wporg-developer/inc/template-tags.php on line 830
Warning: Array to string conversion in /home/customer/www/docs.automatorplugin.com/public_html/wp-content/themes/wporg-developer/inc/template-tags.php on line 825
Parameters Parameters
- $trigger_code
(Required)
Return Return
(array)
Source Source
File: src/core/lib/utilities/class-automator-get-data.php
public function trigger_options_from_trigger_code( $trigger_code ) { if ( null === $trigger_code || ! is_string( $trigger_code ) ) { Automator()->error->add_error( 'trigger_options_from_trigger_code', 'ERROR: You are trying to get a trigger options from a trigger code without providing a $trigger_code', $this ); return null; } // Load all default trigger settings $system_triggers = Automator()->get_triggers(); $trigger_options = array(); if ( empty( $system_triggers ) ) { return $trigger_options; } foreach ( $system_triggers as $system_trigger ) { if ( $system_trigger['code'] === $trigger_code ) { return $system_trigger['accepted_args']; } } return $trigger_options; }
Expand full source code Collapse full source code View on Github