Elementor_Helpers

Class Elementor_Helpers

Contents

  • Methods

  • Source Source

    File: src/integrations/elementor/helpers/elementor-helpers.php

    class Elementor_Helpers {
    	/**
    	 * @var Elementor_Helpers
    	 */
    	public $options;
    
    	/**
    	 * @var Elementor_Pro_Helpers
    	 */
    	public $pro;
    
    	/**
    	 * @var bool
    	 */
    	public $load_options;
    
    	/**
    	 * Elementor_Helpers constructor.
    	 */
    	public function __construct() {
    
    		$this->load_options = Automator()->helpers->recipe->maybe_load_trigger_options( __CLASS__ );
    	}
    
    	/**
    	 * @param Elementor_Helpers $options
    	 */
    	public function setOptions( Elementor_Helpers $options ) {
    		$this->options = $options;
    	}
    
    	/**
    	 * @param Elementor_Pro_Helpers $pro
    	 */
    	public function setPro( Elementor_Pro_Helpers $pro ) {
    		$this->pro = $pro;
    	}
    
    	/**
    	 * @param string $label
    	 * @param string $option_code
    	 * @param array  $args
    	 *
    	 * @return mixed
    	 */
    	public function all_elementor_forms( $label = null, $option_code = 'ELEMFORMS', $args = array() ) {
    		if ( ! $this->load_options ) {
    
    
    			return Automator()->helpers->recipe->build_default_options_array( $label, $option_code );
    		}
    
    		if ( ! $label ) {
    			$label = esc_attr__( 'Form', 'uncanny-automator' );
    		}
    
    		$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();
    
    		if ( Automator()->helpers->recipe->load_helpers ) {
    			if ( $args['uo_include_any'] ) {
    				$options[ - 1 ] = $args['uo_any_label'];
    			}
    			global $wpdb;
    			$query      = "SELECT ms.meta_value  FROM {$wpdb->postmeta} ms JOIN {$wpdb->posts} p on p.ID = ms.post_id WHERE ms.meta_key LIKE '_elementor_data' AND ms.meta_value LIKE '%form_fields%' AND p.post_status = 'publish' ";
    			$post_metas = $wpdb->get_results( $query );
    
    			if ( ! empty( $post_metas ) ) {
    				foreach ( $post_metas as $post_meta ) {
    					$inner_forms = self::get_all_inner_forms( json_decode( $post_meta->meta_value ) );
    					if ( ! empty( $inner_forms ) ) {
    						foreach ( $inner_forms as $form ) {
    							$options[ $form->id ] = $form->settings->form_name;
    						}
    					}
    				}
    			}
    		}
    
    		$option = [
    			'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,
    		];
    
    		return apply_filters( 'uap_option_all_elementor_forms', $option );
    	}
    
    	public static function get_all_inner_forms( $elements ) {
    		$block_is_on_page = array();
    		if ( ! empty( $elements ) ) {
    			foreach ( $elements as $element ) {
    				if ( 'widget' === $element->elType && 'form' === $element->widgetType ) {
    					$block_is_on_page[] = $element;
    				}
    				if ( ! empty( $element->elements ) ) {
    					$inner_block_is_on_page = self::get_all_inner_forms( $element->elements );
    					if ( ! empty( $inner_block_is_on_page ) ) {
    						$block_is_on_page = array_merge( $block_is_on_page, $inner_block_is_on_page );
    					}
    				}
    			}
    		}
    
    		return $block_is_on_page;
    	}
    }
    

    Methods Methods