<?php
ct_add_custom_widget(
array(
'name' => 'ct_client_grid',
'title' => esc_html__('Case Client Grid', 'itfirm'),
'icon' => 'eicon-person',
'categories' => array(Case_Theme_Core::CT_CATEGORY_NAME),
'scripts' => [
'imagesloaded',
'isotope',
'ct-post-masonry-widget-js',
'ct-post-grid-widget-js',
],
'params' => array(
'sections' => array(
array(
'name' => 'section_list',
'label' => esc_html__('Content', 'itfirm'),
'tab' => \Elementor\Controls_Manager::TAB_CONTENT,
'controls' => array(
array(
'name' => 'clients',
'label' => esc_html__('Clients', 'itfirm'),
'type' => \Elementor\Controls_Manager::REPEATER,
'controls' => array(
array(
'name' => 'client_name',
'label' => esc_html__('Client Name', 'itfirm'),
'type' => \Elementor\Controls_Manager::TEXT,
'label_block' => true,
),
array(
'name' => 'client_link',
'label' => esc_html__('Client URL', 'itfirm'),
'type' => \Elementor\Controls_Manager::URL,
'label_block' => true,
),
array(
'name' => 'client_logo',
'label' => esc_html__('Client Logo', 'itfirm'),
'type' => \Elementor\Controls_Manager::MEDIA,
'label_block' => true,
),
array(
'name' => 'client_logo_hover',
'label' => esc_html__('Client Logo Hover', 'itfirm'),
'type' => \Elementor\Controls_Manager::MEDIA,
'label_block' => true,
),
),
'title_field' => '{{{ client_name }}}',
),
array(
'name' => 'style',
'label' => esc_html__('Style', 'itfirm' ),
'type' => \Elementor\Controls_Manager::SELECT,
'default' => 'style1',
'options' => [
'style1' => 'Style 1',
'style2' => 'Style 2',
],
),
),
),
array(
'name' => 'grid_section',
'label' => esc_html__('Grid', 'itfirm' ),
'tab' => \Elementor\Controls_Manager::TAB_CONTENT,
'controls' => array(
array(
'name' => 'col_xs',
'label' => esc_html__('Columns XS Devices', 'itfirm' ),
'type' => \Elementor\Controls_Manager::SELECT,
'default' => '1',
'options' => [
'1' => '1',
'2' => '2',
'3' => '3',
'4' => '4',
'6' => '6',
],
),
array(
'name' => 'col_sm',
'label' => esc_html__('Columns SM Devices', 'itfirm' ),
'type' => \Elementor\Controls_Manager::SELECT,
'default' => '2',
'options' => [
'1' => '1',
'2' => '2',
'3' => '3',
'4' => '4',
'6' => '6',
],
),
array(
'name' => 'col_md',
'label' => esc_html__('Columns MD Devices', 'itfirm' ),
'type' => \Elementor\Controls_Manager::SELECT,
'default' => '3',
'options' => [
'1' => '1',
'2' => '2',
'3' => '3',
'4' => '4',
'6' => '6',
],
),
array(
'name' => 'col_lg',
'label' => esc_html__('Columns LG Devices', 'itfirm' ),
'type' => \Elementor\Controls_Manager::SELECT,
'default' => '4',
'options' => [
'1' => '1',
'2' => '2',
'3' => '3',
'4' => '4',
'6' => '6',
],
),
array(
'name' => 'col_xl',
'label' => esc_html__('Columns XL Devices', 'itfirm' ),
'type' => \Elementor\Controls_Manager::SELECT,
'default' => '4',
'options' => [
'1' => '1',
'2' => '2',
'3' => '3',
'4' => '4',
'6' => '6',
],
),
),
),
),
),
),
get_template_directory() . '/elementor/core/widgets/'
);