<?php
ct_add_custom_widget(
array(
'name' => 'ct_portfolio_details',
'title' => esc_html__('Case Portdolio Details', 'itfirm'),
'icon' => 'eicon-library-upload',
'categories' => array(Case_Theme_Core::CT_CATEGORY_NAME),
'params' => array(
'sections' => array(
array(
'name' => 'section_content',
'label' => esc_html__('Content', 'itfirm'),
'tab' => \Elementor\Controls_Manager::TAB_CONTENT,
'controls' => array(
array(
'name' => 'layout',
'label' => esc_html__('Layout', 'itfirm' ),
'type' => \Elementor\Controls_Manager::SELECT,
'options' => [
'1' => 'Layout 1',
'2' => 'Layout 2',
],
'default' => '1',
),
array(
'name' => 'wg_title',
'label' => esc_html__('Widget Title', 'itfirm' ),
'type' => \Elementor\Controls_Manager::TEXT,
'condition' => [
'layout' => '1',
],
),
array(
'name' => 'portfolio_content',
'label' => esc_html__('Content', 'itfirm'),
'type' => \Elementor\Controls_Manager::REPEATER,
'controls' => array(
array(
'name' => 'label',
'label' => esc_html__('Label', 'itfirm' ),
'type' => \Elementor\Controls_Manager::TEXT,
'label_block' => true,
),
array(
'name' => 'content',
'label' => esc_html__('Content', 'itfirm' ),
'type' => \Elementor\Controls_Manager::TEXT,
),
),
'title_field' => '{{{ label }}}',
),
array(
'name' => 'value_label',
'label' => esc_html__('Value Label', 'itfirm' ),
'type' => \Elementor\Controls_Manager::TEXT,
'condition' => [
'layout' => '1',
],
),
array(
'name' => 'value_text',
'label' => esc_html__('Value Text', 'itfirm' ),
'type' => \Elementor\Controls_Manager::TEXT,
'condition' => [
'layout' => '1',
],
),
array(
'name' => 'social',
'label' => esc_html__('Social Share', 'itfirm' ),
'type' => \Elementor\Controls_Manager::SELECT,
'options' => [
'show' => 'Show',
'hide' => 'Hide',
],
'default' => 'show',
'condition' => [
'layout' => '2',
],
),
),
),
),
),
),
get_template_directory() . '/elementor/core/widgets/'
);