File "class-wpml-pp-image-gallery.php"

Full path: /home/kosmetik/public_html/wp-content/plugins/powerpack-elements/classes/wpml/class-wpml-pp-image-gallery.php
File size: 702 B
MIME-type: text/x-php
Charset: utf-8

Download   Open   Edit   Advanced Editor   Back

<?php

class WPML_PP_Image_Gallery extends WPML_Elementor_Module_With_Items
{
    public function get_items_field()
    {
        return 'gallery_images';
    }
    public function get_fields()
    {
        return array('filter_label');
    }
    protected function get_title($field)
    {
        switch ($field) {
            case 'filter_label':
                return esc_html__('Image Gallery - Filter Label', 'powerpack');
            default:
                return '';
        }
    }
    protected function get_editor_type($field)
    {
        switch ($field) {
            case 'filter_label':
                return 'LINE';
            default:
                return '';
        }
    }
}