| Server IP : 14.225.204.176 / Your IP : 216.73.216.6 Web Server : nginx/1.24.0 System : Linux nodejs-ybgk 6.8.0-40-generic #40-Ubuntu SMP PREEMPT_DYNAMIC Fri Jul 5 10:34:03 UTC 2024 x86_64 User : root ( 0) PHP Version : 8.1.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/html/php/fe2tech/wp-content/themes/contio/elementor/core/register/ |
Upload File : |
<?php
// Register Contact Form 7 Widget
if(class_exists('WPCF7')) {
$cf7 = get_posts('post_type="wpcf7_contact_form"&numberposts=-1');
$contact_forms = array();
if ($cf7) {
foreach ($cf7 as $cform) {
$contact_forms[$cform->ID] = $cform->post_title;
}
} else {
$contact_forms[esc_html__('No contact forms found', 'contio')] = 0;
}
ct_add_custom_widget(
array(
'name' => 'ct_ctf7',
'title' => esc_html__('Contact Form 7', 'contio'),
'icon' => 'eicon-form-horizontal',
'categories' => array(Case_Theme_Core::CT_CATEGORY_NAME),
'scripts' => array(),
'params' => array(
'sections' => array(
array(
'name' => 'source_section',
'label' => esc_html__('Source Settings', 'contio'),
'tab' => \Elementor\Controls_Manager::TAB_CONTENT,
'controls' => array(
array(
'name' => 'layout',
'label' => esc_html__('Layout', 'contio' ),
'type' => \Elementor\Controls_Manager::SELECT,
'options' => [
'1' => 'Layout 1',
'2' => 'Layout 2',
],
'default' => '1',
),
array(
'name' => 'style_l1',
'label' => esc_html__('Style', 'contio' ),
'type' => \Elementor\Controls_Manager::SELECT,
'options' => [
'style1' => 'Style 1',
'style2' => 'Style 2',
'style3' => 'Style 3',
],
'default' => 'style1',
'condition' => [
'layout' => '1',
],
),
array(
'name' => 'style_l2',
'label' => esc_html__('Style', 'contio' ),
'type' => \Elementor\Controls_Manager::SELECT,
'options' => [
'style1' => 'Style 1',
'style2' => 'Style 2',
],
'default' => 'style1',
'condition' => [
'layout' => '2',
],
),
array(
'name' => 'ctf7_title',
'label' => esc_html__('Title', 'contio' ),
'type' => \Elementor\Controls_Manager::TEXT,
'label_block' => true,
'condition' => [
'layout' => '2',
],
),
array(
'name' => 'ctf7_phone',
'label' => esc_html__('Phone', 'contio' ),
'type' => \Elementor\Controls_Manager::TEXTAREA,
'rows' => 10,
'show_label' => false,
'condition' => [
'layout' => '2',
],
),
array(
'name' => 'ctf7_id',
'label' => esc_html__('Select Form', 'contio'),
'type' => \Elementor\Controls_Manager::SELECT,
'options' => $contact_forms,
),
array(
'name' => 'el_title',
'label' => esc_html__('Form Title', 'contio' ),
'type' => \Elementor\Controls_Manager::TEXT,
'label_block' => true,
'condition' => [
'layout' => '2',
],
),
array(
'name' => 'ct_animate',
'label' => esc_html__('Case Animate', 'contio' ),
'type' => \Elementor\Controls_Manager::SELECT,
'options' => contio_animate(),
'default' => '',
),
),
),
),
),
),
get_template_directory() . '/elementor/core/widgets/'
);
}