<?php
// Post term options
$post_term_options = ct_get_grid_term_options('service');
// Register Post Grid Widget
ct_add_custom_widget(
array(
'name' => 'ct_service_grid',
'title' => esc_html__('Case Service Grid', 'itfirm' ),
'icon' => 'eicon-posts-justified',
'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' => 'layout_section',
'label' => esc_html__('Layout', 'itfirm' ),
'tab' => \Elementor\Controls_Manager::TAB_LAYOUT,
'controls' => array(
array(
'name' => 'layout',
'label' => esc_html__('Templates', 'itfirm' ),
'type' => Case_Theme_Core::LAYOUT_CONTROL,
'default' => '1',
'options' => [
'1' => [
'label' => esc_html__('Layout 1', 'itfirm' ),
'image' => get_template_directory_uri() . '/elementor/templates/widgets/ct_service_grid/layout-image/layout1.jpg'
],
'2' => [
'label' => esc_html__('Layout 2', 'itfirm' ),
'image' => get_template_directory_uri() . '/elementor/templates/widgets/ct_service_grid/layout-image/layout2.jpg'
],
],
),
),
),
array(
'name' => 'source_section',
'label' => esc_html__('Source', 'itfirm' ),
'tab' => \Elementor\Controls_Manager::TAB_CONTENT,
'controls' => array(
array(
'name' => 'source',
'label' => esc_html__('Select Categories', 'itfirm' ),
'type' => \Elementor\Controls_Manager::SELECT2,
'multiple' => true,
'options' => $post_term_options,
),
array(
'name' => 'orderby',
'label' => esc_html__('Order By', 'itfirm' ),
'type' => \Elementor\Controls_Manager::SELECT,
'default' => 'date',
'options' => [
'date' => esc_html__('Date', 'itfirm' ),
'ID' => esc_html__('ID', 'itfirm' ),
'author' => esc_html__('Author', 'itfirm' ),
'title' => esc_html__('Title', 'itfirm' ),
'rand' => esc_html__('Random', 'itfirm' ),
],
),
array(
'name' => 'order',
'label' => esc_html__('Sort Order', 'itfirm' ),
'type' => \Elementor\Controls_Manager::SELECT,
'default' => 'desc',
'options' => [
'desc' => esc_html__('Descending', 'itfirm' ),
'asc' => esc_html__('Ascending', 'itfirm' ),
],
),
array(
'name' => 'limit',
'label' => esc_html__('Total items', 'itfirm' ),
'type' => \Elementor\Controls_Manager::NUMBER,
'default' => '8',
),
),
),
array(
'name' => 'grid_section',
'label' => esc_html__('Grid', 'itfirm' ),
'tab' => \Elementor\Controls_Manager::TAB_CONTENT,
'controls' => array(
array(
'name' => 'img_size',
'label' => esc_html__('Image Size', 'itfirm' ),
'type' => \Elementor\Controls_Manager::TEXT,
'description' => 'Enter image size (Example: "thumbnail", "medium", "large", "full" or other sizes defined by theme). Alternatively enter size in pixels (Default: 370x300 (Width x Height)).',
),
array(
'name' => 'filter',
'label' => esc_html__('Filter on Masonry', 'itfirm' ),
'type' => \Elementor\Controls_Manager::SELECT,
'default' => 'false',
'options' => [
'true' => esc_html__('Enable', 'itfirm' ),
'false' => esc_html__('Disable', 'itfirm' ),
],
),
array(
'name' => 'filter_default_title',
'label' => esc_html__('Filter Default Title', 'itfirm' ),
'type' => \Elementor\Controls_Manager::TEXT,
'default' => esc_html__('All', 'itfirm' ),
'condition' => [
'filter' => 'true',
],
),
array(
'name' => 'filter_alignment',
'label' => esc_html__('Filter Alignment', 'itfirm' ),
'type' => \Elementor\Controls_Manager::SELECT,
'default' => 'center',
'options' => [
'center' => esc_html__('Center', 'itfirm' ),
'left' => esc_html__('Left', 'itfirm' ),
'right' => esc_html__('Right', 'itfirm' ),
],
'condition' => [
'filter' => 'true',
],
),
array(
'name' => 'pagination_type',
'label' => esc_html__('Pagination Type', 'itfirm' ),
'type' => \Elementor\Controls_Manager::SELECT,
'default' => 'false',
'options' => [
'pagination' => esc_html__('Pagination', 'itfirm' ),
'loadmore' => esc_html__('Loadmore', 'itfirm' ),
'false' => esc_html__('Disable', 'itfirm' ),
],
),
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',
],
),
array(
'name' => 'ct_animate',
'label' => esc_html__('Case Animate', 'itfirm' ),
'type' => \Elementor\Controls_Manager::SELECT,
'options' => itfirm_animate(),
'default' => '',
),
),
),
array(
'name' => 'display_section',
'label' => esc_html__('Display Options', 'itfirm' ),
'tab' => \Elementor\Controls_Manager::TAB_CONTENT,
'controls' => array(
array(
'name' => 'show_title',
'label' => esc_html__('Show Title', 'itfirm' ),
'type' => \Elementor\Controls_Manager::SWITCHER,
'default' => 'true',
),
array(
'name' => 'show_excerpt',
'label' => esc_html__('Show Excerpt', 'itfirm' ),
'type' => \Elementor\Controls_Manager::SWITCHER,
'default' => 'true',
'condition' => [
'layout' => ['1','2'],
],
),
array(
'name' => 'num_words',
'label' => esc_html__('Number of Words', 'itfirm' ),
'type' => \Elementor\Controls_Manager::NUMBER,
'default' => 25,
'condition' => [
'show_excerpt' => 'true',
'layout' => ['1','2'],
],
'separator' => 'after',
),
array(
'name' => 'show_button',
'label' => esc_html__('Show Button Readmore', 'itfirm' ),
'type' => \Elementor\Controls_Manager::SWITCHER,
'default' => 'true',
'condition' => [
'layout' => ['1','2'],
],
),
array(
'name' => 'button_text',
'label' => esc_html__('Button Text', 'itfirm' ),
'type' => \Elementor\Controls_Manager::TEXT,
'condition' => [
'show_button' => 'true',
'layout' => ['1','2'],
],
),
),
),
array(
'name' => 'style_section',
'label' => esc_html__('Style', 'itfirm' ),
'tab' => \Elementor\Controls_Manager::TAB_CONTENT,
'controls' => array(
array(
'name' => 'title_color',
'label' => esc_html__('Title Color', 'itfirm' ),
'type' => \Elementor\Controls_Manager::COLOR,
'selectors' => [
'{{WRAPPER}} .ct-grid .item--title' => 'color: {{VALUE}};',
],
),
array(
'name' => 'title_typography',
'label' => esc_html__('Title Typography', 'itfirm' ),
'type' => \Elementor\Group_Control_Typography::get_type(),
'control_type' => 'group',
'selector' => '{{WRAPPER}} .ct-grid .item--title',
),
array(
'name' => 'content_color',
'label' => esc_html__('Content Color', 'itfirm' ),
'type' => \Elementor\Controls_Manager::COLOR,
'selectors' => [
'{{WRAPPER}} .ct-grid .item--content' => 'color: {{VALUE}};',
],
),
array(
'name' => 'content_typography',
'label' => esc_html__('Content Typography', 'itfirm' ),
'type' => \Elementor\Group_Control_Typography::get_type(),
'control_type' => 'group',
'selector' => '{{WRAPPER}} .ct-grid .item--content',
),
array(
'name' => 'color_gr_from',
'label' => esc_html__('Color Gradient From', 'itfirm' ),
'type' => \Elementor\Controls_Manager::COLOR,
'condition' => [
'layout' => ['2'],
],
),
array(
'name' => 'color_gr_to',
'label' => esc_html__('Color Gradient To', 'itfirm' ),
'type' => \Elementor\Controls_Manager::COLOR,
'condition' => [
'layout' => ['2'],
],
),
),
),
),
),
),
get_template_directory() . '/elementor/core/widgets/'
);