HEX
Server: LiteSpeed
System: Linux chromium.pvtwebs.com 5.14.0-611.54.3.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Thu May 7 16:31:24 EDT 2026 x86_64
User: plandeptncgov (1317)
PHP: 8.3.31
Disabled: exec,system,passthru,shell_exec,escapeshellarg,escapeshellcmd,proc_close,proc_open,dl,popen,show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname
Upload Files
File: /home/plandeptncgov/public_html/wp-content/plugins/codevz-plus/elementor/widgets/contact_form_7.php
<?php if ( ! defined( 'ABSPATH' ) ) {exit;} // Exit if accessed directly.

use Elementor\Widget_Base;
use Elementor\Controls_Manager;

class Xtra_Elementor_Widget_contact_form_7 extends Widget_Base {

	protected $id = 'cz_contact_form_7';

	public function get_name() {
		return $this->id;
	}

	public function get_title() {
		return esc_html__( 'Contact Form 7', 'codevz' );
	}
	
	public function get_icon() {
		return 'xtra-cf7';
	}

	public function get_categories() {
		return [ 'xtra' ];
	}

	public function get_keywords() {

		return [

			esc_html__( 'XTRA', 'codevz' ),
			esc_html__( 'Contact', 'codevz' ),
			esc_html__( 'Form', 'codevz' ),
			esc_html__( 'Email', 'codevz' ),
			'7',

		];

	}
	
	public function get_style_depends() {
		return [ $this->id, 'cz_parallax' ];
	}

	public function get_script_depends() {
		return [ $this->id, 'cz_parallax' ];
	}

	public function register_controls() {

		$free = Codevz_Plus::is_free();

		$this->start_controls_section(
			'section_content',
			[
				'label' => 'Contact Form Settings',
				'tab' => Controls_Manager::TAB_CONTENT,
			]
		);

		$cf7 = get_posts( 'post_type="wpcf7_contact_form"&numberposts=-1' );
		$contact_forms = array( 0 => esc_html__( 'Select Contact Form', 'codevz' ) );
		if ( $cf7 ) {
			foreach ( $cf7 as $cform ) {
				$contact_forms[ $cform->post_title ] = $cform->post_title;
			}
		} else {
			$contact_forms[ 0 ] = esc_html__( 'No contact forms found', 'codevz' );
		}

		$this->add_control(
			'cf7',
			[
				'label' => esc_html__( 'Contact Form', 'codevz' ),
				'type' => Controls_Manager::SELECT,
				'default' => '',
				'options' => $contact_forms,
				'admin_label' 	=> true,
				'save_always' 	=> true
			]
		);

		$this->end_controls_section();

		// Parallax settings.
		Xtra_Elementor::parallax_settings( $this );

		$this->start_controls_section(
			'section_style',
			[
				'label' => esc_html__( 'Style', 'codevz' ),
				'tab' => Controls_Manager::TAB_STYLE,
			]
		);

		$this->add_responsive_control(
			'sk_con',
			[
				'label' 	=> esc_html__( 'Container', 'codevz' ),
				'type' 		=> 'stylekit',
				'settings' 	=> [ 'background', 'padding', 'margin', 'border' ],
				'selectors' => Xtra_Elementor::sk_selectors( '.cz_cf7' ),
			]
		);

		$this->add_responsive_control(
			'sk_label',
			[
				'label' 	=> esc_html__( 'Labels', 'codevz' ),
				'type' 		=> 'stylekit',
				'settings' 	=> [ 'color', 'text-align', 'font-size', 'margin' ],
				'selectors' => Xtra_Elementor::sk_selectors( '.cz_cf7 label' ),
			]
		);

		$this->add_responsive_control(
			'sk_input',
			[
				'label' 	=> esc_html__( 'Inputs', 'codevz' ),
				'type' 		=> 'stylekit',
				'settings' 	=> [ 'color', 'text-align', 'font-size', 'background', 'padding', 'border' ],
				'selectors' => Xtra_Elementor::sk_selectors( '.cz_cf7 input:not([type="submit"]), .cz_cf7 input[type="date"], .cz_cf7 textarea, .cz_cf7 select' ),
			]
		);

		$this->add_responsive_control(
			'sk_button',
			[
				'label' 	=> esc_html__( 'Button', 'codevz' ),
				'type' 		=> 'stylekit',
				'settings' 	=> [ 'float', 'width', 'color', 'font-size', 'background', 'border' ],
				'selectors' => Xtra_Elementor::sk_selectors( '.cz_cf7 input[type="submit"], .cz_cf7 button', '.cz_cf7 input[type="submit"]:hover, .cz_cf7 button:hover' ),
			]
		);

		$this->add_responsive_control(
			'sk_messages',
			[
				'label' 	=> esc_html__( 'Messages', 'codevz' ),
				'type' 		=> 'stylekit',
				'settings' 	=> [ 'color', 'font-size', 'background', 'border' ],
				'selectors' => Xtra_Elementor::sk_selectors( '.cz_cf7 .wpcf7-response-output' ),
			]
		);

		// Row Design
		$this->add_responsive_control(
			'sk_p',
			[
				'label' 	=> esc_html__( 'All rows', 'codevz' ),
				'type' 		=> 'stylekit',
				'settings' 	=> [ 'width', 'padding', 'margin', 'border'  ],
				'selectors' => Xtra_Elementor::sk_selectors( '.cz_cf7 p' ),
			]
		);

		$this->add_responsive_control(
			'sk_p_1',
			[
				'label' 	=> esc_html__( 'Feild 1', 'codevz' ),
				'type' 		=> 'stylekit',
				'settings' 	=> [ 'width', 'float', 'padding', 'margin', 'border' ],
				'selectors' => Xtra_Elementor::sk_selectors( '.cz_cf7 p:nth-child(2)' ),
			]
		);

		$this->add_responsive_control(
			'sk_p_2',
			[
				'label' 	=> esc_html__( 'Feild 2', 'codevz' ),
				'type' 		=> 'stylekit',
				'settings' 	=> [ 'width', 'float', 'padding', 'margin', 'border' ],
				'selectors' => Xtra_Elementor::sk_selectors( '.cz_cf7 p:nth-child(3)' ),
			]
		);

		$this->add_responsive_control(
			'sk_p_3',
			[
				'label' 	=> esc_html__( 'Feild 3', 'codevz' ),
				'type' 		=> 'stylekit',
				'settings' 	=> [ 'width', 'float', 'padding', 'margin', 'border' ],
				'selectors' => Xtra_Elementor::sk_selectors( '.cz_cf7 p:nth-child(4)' ),
			]
		);

		$this->add_responsive_control(
			'sk_p_4',
			[
				'label' 	=> esc_html__( 'Feild 4', 'codevz' ),
				'type' 		=> 'stylekit',
				'settings' 	=> [ 'width', 'float', 'padding', 'margin', 'border' ],
				'selectors' => Xtra_Elementor::sk_selectors( '.cz_cf7 p:nth-child(5)' ),
			]
		);

		$this->add_responsive_control(
			'sk_p_5',
			[
				'label' 	=> esc_html__( 'Feild 5', 'codevz' ),
				'type' 		=> $free ? 'stylekit_pro' : 'stylekit',
				'settings' 	=> [ 'width', 'float', 'padding', 'margin', 'border' ],
				'selectors' => Xtra_Elementor::sk_selectors( '.cz_cf7 p:nth-child(6)' ),
			]
		);

		$this->add_responsive_control(
			'sk_p_6',
			[
				'label' 	=> esc_html__( 'Feild 6', 'codevz' ),
				'type' 		=> $free ? 'stylekit_pro' : 'stylekit',
				'settings' 	=> [ 'width', 'float', 'padding', 'margin', 'border' ],
				'selectors' => Xtra_Elementor::sk_selectors( '.cz_cf7 p:nth-child(7)' ),
			]
		);

		$this->add_responsive_control(
			'sk_p_7',
			[
				'label' 	=> esc_html__( 'Feild 7', 'codevz' ),
				'type' 		=> $free ? 'stylekit_pro' : 'stylekit',
				'settings' 	=> [ 'width', 'float', 'padding', 'margin', 'border' ],
				'selectors' => Xtra_Elementor::sk_selectors( '.cz_cf7 p:nth-child(8)' ),
			]
		);

		$this->add_responsive_control(
			'sk_p_8',
			[
				'label' 	=> esc_html__( 'Feild 8', 'codevz' ),
				'type' 		=> $free ? 'stylekit_pro' : 'stylekit',
				'settings' 	=> [ 'width', 'float', 'padding', 'margin', 'border' ],
				'selectors' => Xtra_Elementor::sk_selectors( '.cz_cf7 p:nth-child(9)' ),
			]
		);

		$this->add_responsive_control(
			'sk_p_9',
			[
				'label' 	=> esc_html__( 'Feild 9', 'codevz' ),
				'type' 		=> $free ? 'stylekit_pro' : 'stylekit',
				'settings' 	=> [ 'width', 'float', 'padding', 'margin', 'border' ],
				'selectors' => Xtra_Elementor::sk_selectors( '.cz_cf7 p:nth-child(10)' ),
			]
		);

		$this->add_responsive_control(
			'sk_p_10',
			[
				'label' 	=> esc_html__( 'Feild 10', 'codevz' ),
				'type' 		=> $free ? 'stylekit_pro' : 'stylekit',
				'settings' 	=> [ 'width', 'background', 'padding', 'margin', 'border', 'box-shadow' ],
				'selectors' => Xtra_Elementor::sk_selectors( '.cz_cf7 p:nth-child(11)' ),
			]
		);

		$this->add_responsive_control(
			'sk_p_11',
			[
				'label' 	=> esc_html__( 'Feild 11', 'codevz' ),
				'type' 		=> $free ? 'stylekit_pro' : 'stylekit',
				'settings' 	=> [ 'width', 'background', 'padding', 'margin', 'border', 'box-shadow'],
				'selectors' => Xtra_Elementor::sk_selectors( '.cz_cf7 p:nth-child(12)' ),
			]
		);

		$this->add_responsive_control(
			'sk_p_12',
			[
				'label' 	=> esc_html__( 'Feild 12', 'codevz' ),
				'type' 		=> $free ? 'stylekit_pro' : 'stylekit',
				'settings' 	=> [ 'width', 'background', 'padding', 'margin', 'border', 'box-shadow' ],
				'selectors' => Xtra_Elementor::sk_selectors( '.cz_cf7 p:nth-child(13)' ),
			]
		);

		$this->add_responsive_control(
			'sk_p_13',
			[
				'label' 	=> esc_html__( 'Feild 13', 'codevz' ),
				'type' 		=> $free ? 'stylekit_pro' : 'stylekit',
				'settings' 	=> [ 'width', 'background', 'padding', 'margin', 'border', 'box-shadow' ],
				'selectors' => Xtra_Elementor::sk_selectors( '.cz_cf7 p:nth-child(14)' ),
			]
		);

		$this->add_responsive_control(
			'sk_p_14',
			[
				'label' 	=> esc_html__( 'Feild 14', 'codevz' ),
				'type' 		=> $free ? 'stylekit_pro' : 'stylekit',
				'settings' 	=> [ 'width', 'background', 'padding', 'margin', 'border', 'box-shadow' ],
				'selectors' => Xtra_Elementor::sk_selectors( '.cz_cf7 p:nth-child(15)' ),
			]
		);

		$this->add_responsive_control(
			'sk_p_15',
			[
				'label' 	=> esc_html__( 'Feild 15', 'codevz' ),
				'type' 		=> $free ? 'stylekit_pro' : 'stylekit',
				'settings' 	=> [ 'width', 'background', 'padding', 'margin', 'border', 'box-shadow' ],
				'selectors' => Xtra_Elementor::sk_selectors( '.cz_cf7 p:nth-child(16)' ),
			]
		);

		$this->end_controls_section();
	}

	public function render() {

		$settings = $this->get_settings_for_display();

		// Classes
		$classes = array();
		$classes[] = 'cz_cf7 clr';

		// If plugin not installed
		if ( ! class_exists( 'WPCF7' ) ) {
			return '<pre>' . esc_html__( 'Plugin "Contact Form 7" not installed or activated', 'codevz' ) . '</pre>';
		}

		$cf7 = Codevz_Plus::get_page_by_title( esc_html( $settings['cf7'] ), 'object', 'wpcf7_contact_form' );

		// If not exists
		if ( ! $cf7 ) {
			$cf7 = get_posts(array(
				'numberposts' 	=> 1, 
				'post_type' 	=> 'wpcf7_contact_form'
			));
			$cf7 = isset( $cf7[0]->ID ) ? $cf7[0]->ID : 0;
		} else if ( isset( $cf7->ID ) ) {
			$cf7 = $cf7->ID;
		}

		Xtra_Elementor::parallax( $settings );

		?>
		<div<?php echo Codevz_Plus::classes( [], $classes ); ?>>
			<div><?php echo do_shortcode( '[contact-form-7 id="' . esc_attr( $cf7 ) . '"]' ); ?></div>
		</div>
		<?php
		
		Xtra_Elementor::parallax( $settings, true );
	}
}