Divi_Helpers::all_divi_forms( string $label = null, string $option_code = 'DIVIMFORMS', array $args = array() )
Fetch all Divi forms
Contents
Parameters Parameters
- $label
-
(Optional)
Default value: null
- $option_code
-
(Optional)
Default value: 'DIVIMFORMS'
- $args
-
(Optional)
Default value: array()
Return Return
(mixed)
Source Source
File: src/integrations/divi/helpers/divi-helpers.php
public function all_divi_forms( $label = null, $option_code = 'DIVIMFORMS', $args = array() ) { $label = null === $label ? esc_attr__( 'Form', 'uncanny-automator' ) : $label; $args = wp_parse_args( $args, array( 'uo_include_any' => false, 'uo_any_label' => esc_attr__( 'Any form', 'uncanny-automator' ), ) ); $token = key_exists( 'token', $args ) ? $args['token'] : false; $is_ajax = key_exists( 'is_ajax', $args ) ? $args['is_ajax'] : false; $target_field = key_exists( 'target_field', $args ) ? $args['target_field'] : ''; $end_point = key_exists( 'endpoint', $args ) ? $args['endpoint'] : ''; $options = array(); $option = array( 'option_code' => $option_code, 'label' => $label, 'input_type' => 'select', 'required' => true, 'supports_tokens' => $token, 'is_ajax' => $is_ajax, 'fill_values_in' => $target_field, 'endpoint' => $end_point, 'options' => $options, ); if ( ! Automator()->helpers->recipe->load_helpers ) { return apply_filters( 'uap_option_all_divi_forms', $option ); } // if ( $args['uo_include_any'] ) { // $options['-1'] = $args['uo_any_label']; // } $data = self::extract_forms(); if ( $data ) { foreach ( $data as $form_id => $d ) { $options[ $form_id ] = $d['title']; } } $option['options'] = $options; return apply_filters( 'uap_option_all_divi_forms', $option ); }
Expand full source code Collapse full source code View on Github