Your IP : 216.73.216.219


Current Path : /home/chauffn/vuzelia/2023/components/com_sppagebuilder/addons/articles/
Upload File :
Current File : /home/chauffn/vuzelia/2023/components/com_sppagebuilder/addons/articles/admin.php

<?php

/**
 * @package SP Page Builder
 * @author JoomShaper https://www.joomshaper.com
 * @copyright Copyright (c) 2010 - 2025 JoomShaper
 * @license https://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
 */
//no direct access
defined('_JEXEC') or die('resticted aceess');

use Joomla\CMS\Language\Text;

SpAddonsConfig::addonConfig([
    'type' => 'content',
    'addon_name' => 'articles',
    'title' => Text::_('COM_SPPAGEBUILDER_ADDON_ARTICLES'),
    'desc' => Text::_('COM_SPPAGEBUILDER_ADDON_ARTICLES_DESC'),
    'category' => 'Content',
    'icon' => '<svg viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg"><path opacity=".5" d="M11.643 9.571h-.603L8.138 1.246A.363.363 0 007.804 1h-1.63a.363.363 0 00-.335.246L2.937 9.57h-.58c-.2 0-.357.179-.357.358v.714c0 .2.156.357.357.357h3.036a.367.367 0 00.357-.357v-.714a.384.384 0 00-.357-.358h-.536l.58-1.785h3.08l.604 1.785h-.514c-.2 0-.357.179-.357.358v.714c0 .2.156.357.357.357h3.036a.367.367 0 00.357-.357v-.714a.384.384 0 00-.357-.358zm-5.76-3.28l.938-2.769c.09-.357.157-.647.179-.78 0 .155.045.446.156.78l.938 2.768h-2.21z" fill="currentColor"/><path fill-rule="evenodd" clip-rule="evenodd" d="M30 16a1 1 0 01-1 1H3a1 1 0 110-2h26a1 1 0 011 1zM30 23a1 1 0 01-1 1H3a1 1 0 110-2h26a1 1 0 011 1zM16 30a1 1 0 01-1 1H3a1 1 0 110-2h12a1 1 0 011 1zM30 9a1 1 0 01-1 1H16a1 1 0 110-2h13a1 1 0 011 1zM30 2a1 1 0 01-1 1H16a1 1 0 110-2h13a1 1 0 011 1z" fill="currentColor"/></svg>',
    'settings' => [
        'source' => [
            'title' => Text::_('COM_SPPAGEBUILDER_GLOBAL_CONTENT'),
            'fields' => [
                'catid' => [
                    'type' => 'category',
                    'title' => Text::_('COM_SPPAGEBUILDER_ADDON_ARTICLES_CATID'),
                    'desc' => Text::_('COM_SPPAGEBUILDER_ADDON_ARTICLES_CATID_DESC'),
                    'multiple' => true,
                ],

                'tagids' => [
                    'type' => 'select',
                    'title' => Text::_('COM_SPPAGEBUILDER_ADDON_ARTICLES_TAGS'),
                    'desc' => Text::_('COM_SPPAGEBUILDER_ADDON_ARTICLES_TAGS_DESC'),
                    'values' => SpPgaeBuilderBase::getArticleTags(),
                    'multiple' => true,
                ],

                'post_type' => [
                    'type' => 'select',
                    'title' => Text::_('COM_SPPAGEBUILDER_ADDON_POST_TYPE'),
                    'desc' => Text::_('COM_SPPAGEBUILDER_ADDON_POST_TYPE_DESC'),
                    'values' => [
                        '' => Text::_('COM_SPPAGEBUILDER_ADDON_POST_TYPE_ALL'),
                        'standard' => Text::_('COM_SPPAGEBUILDER_ADDON_POST_TYPE_STANDARD'),
                        'audio' => Text::_('COM_SPPAGEBUILDER_ADDON_POST_TYPE_AUDIO'),
                        'video' => Text::_('COM_SPPAGEBUILDER_ADDON_POST_TYPE_VIDEO'),
                        'gallery' => Text::_('COM_SPPAGEBUILDER_ADDON_POST_TYPE_GALLERY'),
                        'link' => Text::_('COM_SPPAGEBUILDER_ADDON_POST_TYPE_LINK'),
                        'quote' => Text::_('COM_SPPAGEBUILDER_ADDON_POST_TYPE_QUOTE'),
                        'status' => Text::_('COM_SPPAGEBUILDER_ADDON_POST_TYPE_STATUS'),
                    ],
                ],

                'ordering' => [
                    'type' => 'select',
                    'title' => Text::_('COM_SPPAGEBUILDER_ADDON_ARTICLES_ORDERING'),
                    'desc' => Text::_('COM_SPPAGEBUILDER_ADDON_ARTICLES_ORDERING_DESC'),
                    'values' => [
                        'latest' => Text::_('COM_SPPAGEBUILDER_ADDON_ARTICLES_ORDERING_LATEST'),
                        'oldest' => Text::_('COM_SPPAGEBUILDER_ADDON_ARTICLES_ORDERING_OLDEST'),
                        'hits' => Text::_('COM_SPPAGEBUILDER_ADDON_ARTICLES_ORDERING_POPULAR'),
                        'featured' => Text::_('COM_SPPAGEBUILDER_ADDON_ARTICLES_ORDERING_FEATURED'),
                        'alphabet_asc' => Text::_('COM_SPPAGEBUILDER_ADDON_ARTICLES_ORDERING_ALPHABET_ASC'),
                        'alphabet_desc' => Text::_('COM_SPPAGEBUILDER_ADDON_ARTICLES_ORDERING_ALPHABET_DESC'),
                        'ordering_asc' => Text::_('COM_SPPAGEBUILDER_ADDON_ARTICLES_ORDERING_ORDER_ASC'),
                        'ordering_desc' => Text::_('COM_SPPAGEBUILDER_ADDON_ARTICLES_ORDERING_ORDER_DESC'),
                        'random' => Text::_('COM_SPPAGEBUILDER_ADDON_ARTICLES_ORDERING_RANDOM'),
                    ],
                    'std' => 'latest',
                ],

                'include_subcat' => [
                    'type' => 'select',
                    'title' => Text::_('COM_SPPAGEBUILDER_ADDON_INCLUDE_SUBCATEGORIES'),
                    'desc' => Text::_('COM_SPPAGEBUILDER_ADDON_INCLUDE_SUBCATEGORIES_DESC'),
                    'values' => [
                        1 => Text::_('COM_SPPAGEBUILDER_YES'),
                        0 => Text::_('COM_SPPAGEBUILDER_NO'),
                    ],
                    'std' => 1,
                ],
            ],
        ],

        'options' => [
            'title' => Text::_('COM_SPPAGEBUILDER_GLOBAL_OPTIONS'),
            'fields' => [
                'limit' => [
                    'type' => 'slider',
                    'title' => Text::_('COM_SPPAGEBUILDER_ADDON_ARTICLES_LIMIT'),
                    'desc' => Text::_('COM_SPPAGEBUILDER_ADDON_ARTICLES_LIMIT_DESC'),
                    'min' => 1,
                    'std' => 3,
                ],

                'layout' => [
                    'type' => 'select',
                    'title' => 'Layout',
                    'values' => [
                        'default'  => 'Default',
                        'editorial'  => 'Editorial',
                        'side'     => 'Side by Side',
                        'masonry'  => 'Masonry',
                        'magazine' => 'Magazine'
                    ],
                    'std' => 'default',
                ],

                'columns' => [
                    'type' => 'slider',
                    'title' => Text::_('COM_SPPAGEBUILDER_ADDON_ARTICLES_COLUMNS'),
                    'desc' => Text::_('COM_SPPAGEBUILDER_ADDON_ARTICLES_COLUMNS_DESC'),
                    'min' => 1,
                    'max' => 6,
                    'std' => ['xl' => 3],
                    'responsive' => true,
                    'depends' => [
                        ['layout', '!=', 'side'],
                    ],
                ],

                'gap' => [
                    'type'  => 'slider',
                    'title' => Text::_('COM_SPPAGEBUILDER_GLOBAL_GAP'),
                    'std'   => 15,
                    'depends' => [
                        ['layout', '!=', 'default'],
                    ],
                ],
            ],
        ],

        'pagination' => [
            'title' => Text::_('COM_SPPAGEBUILDER_ADDON_DYNAMIC_CONTENT_COLLECTION_PAGINATION_TITLE'),
            'fields' => [
                'pagination' => [
                    'type'    => 'checkbox',
                    'title'   => Text::_('COM_SPPAGEBUILDER_ADDON_DYNAMIC_CONTENT_COLLECTION_PAGINATION_TITLE'),
                    'desc'    => Text::_('COM_SPPAGEBUILDER_ADDON_DYNAMIC_CONTENT_COLLECTION_PAGINATION_DESC'),
                    'std'     => 0,
                    'is_header' => 1
                ],
                'pagination_load_more_button_text' => [
                    'type' => 'text',
                    'title' => Text::_('COM_SPPAGEBUILDER_ADDON_DYNAMIC_CONTENT_COLLECTION_PAGINATION_LOAD_MORE_BUTTON_TEXT'),
                    'desc' => Text::_('COM_SPPAGEBUILDER_ADDON_DYNAMIC_CONTENT_COLLECTION_PAGINATION_LOAD_MORE_BUTTON_TEXT_DESC'),
                    'std' => 'Load More',
                    'depends' => [['pagination', '=', 1]],
                ],
                'pagination_buttons_position' => [
                    'type' => 'buttons',
                    'title' => Text::_('COM_SPPAGEBUILDER_ADDON_DYNAMIC_CONTENT_COLLECTION_PAGINATION_BUTTONS_POSITION_TITLE'),
                    'values' => [
                        ['label' => Text::_('COM_SPPAGEBUILDER_ADDON_DYNAMIC_CONTENT_COLLECTION_PAGINATION_BUTTONS_POSITION_LEFT'), 'value' => 'start'],
                        ['label' => Text::_('COM_SPPAGEBUILDER_ADDON_DYNAMIC_CONTENT_COLLECTION_PAGINATION_BUTTONS_POSITION_CENTER'), 'value' => 'center'],
                        ['label' => Text::_('COM_SPPAGEBUILDER_ADDON_DYNAMIC_CONTENT_COLLECTION_PAGINATION_BUTTONS_POSITION_RIGHT'), 'value' => 'end'],
                    ],
                    'responsive' => true,
                    'std' => 'start',
                    'depends' => [['pagination', '=', 1]],
                ],
                'pagination_padding' => [
                    'type' => 'padding',
                    'title' => Text::_('COM_SPPAGEBUILDER_GLOBAL_PADDING'),
                    'responsive' => true,
                    'depends' => [['pagination', '=', 1]],
                ],
                'pagination_margin' => [
                    'type' => 'margin',
                    'title' => Text::_('COM_SPPAGEBUILDER_GLOBAL_MARGIN'),
                    'responsive' => true,
                    'depends' => [['pagination', '=', 1]],
                ],
                'pagination_load_more_button_type' => [
                    'type'   => 'select',
                    'title'  => Text::_('COM_SPPAGEBUILDER_PAGINATION_LOAD_MORE_BUTTON_TYPE'),
                    'values' => [
                        'default'   => Text::_('COM_SPPAGEBUILDER_GLOBAL_DEFAULT'),
                        'primary'   => Text::_('COM_SPPAGEBUILDER_GLOBAL_PRIMARY'),
                        'secondary' => Text::_('COM_SPPAGEBUILDER_GLOBAL_SECONDARY'),
                        'success'   => Text::_('COM_SPPAGEBUILDER_GLOBAL_SUCCESS'),
                        'info'      => Text::_('COM_SPPAGEBUILDER_GLOBAL_INFO'),
                        'warning'   => Text::_('COM_SPPAGEBUILDER_GLOBAL_WARNING'),
                        'danger'    => Text::_('COM_SPPAGEBUILDER_GLOBAL_DANGER'),
                        'dark'      => Text::_('COM_SPPAGEBUILDER_GLOBAL_DARK'),
                        'link'      => Text::_('COM_SPPAGEBUILDER_GLOBAL_LINK'),
                    ],
                    'std'    => 'default',
                    'depends' => [['pagination', '=', 1]],
                ],
            ],
        ],

        'item' => [
            'title' => Text::_('COM_SPPAGEBUILDER_GLOBAL_CONTAINER_ARTICLE'),
            'depends' => [['layout', '!=', 'default']],
            'fields' => [
                'background_color' => [
                    'type'  => 'color',
                    'title' => Text::_('COM_SPPAGEBUILDER_GLOBAL_BACKGROUND_COLOR'),
                    'std'   => '#fff',
                    'depends' => [
                        ['layout', '!=', 'default'],
                        ['layout', '!=', 'magazine'],
                    ],
                ],
                'border' => [
                    'type'    => 'checkbox',
                    'title'   => Text::_('COM_SPPAGEBUILDER_GLOBAL_BORDER'),
                    'std'     => 1,
                    'depends' => [
                        ['layout', '!=', 'default'],
                    ],
                ],
                'border_width' => [
                    'type'  => 'slider',
                    'title' => Text::_('COM_SPPAGEBUILDER_GLOBAL_BORDER_WIDTH'),
                    'std'   => 1,
                    'depends' => [
                        ['border', '!=', 0],
                        ['layout', '!=', 'default'],
                    ],
                ],
                'border_color' => [
                    'type'  => 'color',
                    'title' => Text::_('COM_SPPAGEBUILDER_GLOBAL_BORDER_COLOR'),
                    'std'   => '#0000001a',
                    'depends' => [
                        ['border', '!=', 0],
                        ['layout', '!=', 'default'],
                    ],
                ],
                'radius' => [
                    'type'    => 'checkbox',
                    'title'   => Text::_('COM_SPPAGEBUILDER_GLOBAL_RADIUS'),
                    'std'     => 0,
                    'depends' => [
                        ['layout', '!=', 'default'],
                    ],
                ],
                'border_radius' => [
                    'type'  => 'slider',
                    'title' => Text::_('COM_SPPAGEBUILDER_GLOBAL_BORDER_RADIUS'),
                    'std'   => 0,
                    'depends' => [
                        ['radius', '!=', 0],
                        ['layout', '!=', 'default'],
                    ],
                ],
                'content_radius' => [
                    'type'  => 'slider',
                    'title' => Text::_('COM_SPPAGEBUILDER_GLOBAL_CONTENT_RADIUS'),
                    'std'   => 0,
                    'depends' => [
                        ['radius', '!=', 0],
                        ['layout', '!=', 'default'],
                    ],
                ],
                'image_radius' => [
                    'type'  => 'slider',
                    'title' => Text::_('COM_SPPAGEBUILDER_GLOBAL_IMAGE_RADIUS'),
                    'std'   => 0,
                    'depends' => [
                        ['radius', '!=', 0],
                        ['layout', '!=', 'default'],
                    ],
                ],
                'show_boxshadow' => [
                    'type'    => 'checkbox',
                    'title'   => Text::_('COM_SPPAGEBUILDER_GLOBAL_BOX_SHADOW'),
                    'std'     => 0,
                    ['layout', '!=', 'default'],
                ],

                'shadow_color' => [
                    'type'    => 'color',
                    'title'   => Text::_('COM_SPPAGEBUILDER_GLOBAL_SHADOW_COLOR'),
                    'std'     => 'rgba(0, 0, 0, .5)',
                    'depends' => [['show_boxshadow', '=', 1]],
                ],

                'shadow_horizontal' => [
                    'type'    => 'slider',
                    'title'   => Text::_('COM_SPPAGEBUILDER_GLOBAL_BOX_SHADOW_HORIZONTAL'),
                    'max'     => 100,
                    'depends' => [['show_boxshadow', '=', 1]],
                ],

                'shadow_vertical' => [
                    'type'    => 'slider',
                    'title'   => Text::_('COM_SPPAGEBUILDER_GLOBAL_BOX_SHADOW_VERTICAL'),
                    'max'     => 100,
                    'depends' => [['show_boxshadow', '=', 1]],
                ],

                'shadow_blur' => [
                    'type'    => 'slider',
                    'title'   => Text::_('COM_SPPAGEBUILDER_GLOBAL_BOX_SHADOW_BLUR'),
                    'max'     => 100,
                    'depends' => [['show_boxshadow', '=', 1]],
                ],

                'shadow_spread' => [
                    'type'    => 'slider',
                    'title'   => Text::_('COM_SPPAGEBUILDER_GLOBAL_BOX_SHADOW_SPREAD'),
                    'max'     => 100,
                    'depends' => [['show_boxshadow', '=', 1]],
                ],

                'overlay_color' => [
                    'type' => 'color',
                    'title' => Text::_('COM_SPPAGEBUILDER_GLOBAL_OVERLAY_COLOR'),
                    'std'     => '',
                    'depends' => [
                        ['layout', '=', 'magazine'],
                    ],
                ],
            ],
        ],

        'content' => [
            'title' => Text::_('COM_SPPAGEBUILDER_GLOBAL_CONTENT_ARTICLE'),
            'fields' => [
                'content_padding' => [
                    'type' => 'padding',
                    'title' => Text::_('COM_SPPAGEBUILDER_GLOBAL_PADDING'),
                    'responsive' => true,
                    'depends' => [
                        ['show_intro', '=', '1'],
                    ],
                ],
            ],
        ],

        'media' => [
            'title' => Text::_('COM_SPPAGEBUILDER_GLOBAL_MEDIA_ARTICLE'),
            'fields' => [
                'image_at' => [
                    'type'  => 'select',
                    'title' => Text::_('COM_SPPAGEBUILDER_GLOBAL_IMAGE_AT'),
                    'std'   => Text::_('COM_SPPAGEBUILDER_GLOBAL_LEFT'),
                    'values' => [
                        'left' => Text::_('COM_SPPAGEBUILDER_GLOBAL_LEFT'),
                        'right' => Text::_('COM_SPPAGEBUILDER_GLOBAL_RIGHT'),
                    ],
                    'depends' => [
                        ['layout', '!=', 'default'],
                        ['layout', '=', 'side'],
                    ],
                ],
                'image_width' => [
                    'type'  => 'slider',
                    'title' => Text::_('COM_SPPAGEBUILDER_GLOBAL_WIDTH'),
                    'depends' => [
                        ['layout', '!=', 'default'],
                        ['layout', '=', 'side'],
                    ],
                    'min' => 1,
                    'max' => 2000,
                ],

                'image_height' => [
                    'type'  => 'slider',
                    'title' => Text::_('COM_SPPAGEBUILDER_GLOBAL_HEIGHT'),
                    'depends' => [
                        ['layout', '!=', 'default'],
                        ['layout', '!=', 'masonry'],
                    ],
                    'min' => 1,
                    'max' => 2000,
                ],
                'image_padding' => [
                    'type' => 'padding',
                    'title' => Text::_('COM_SPPAGEBUILDER_GLOBAL_PADDING'),
                    'responsive' => true,
                    'depends' => [
                        ['layout', '!=', 'default'],
                    ],
                ],
                'hide_thumbnail' => [
                    'type' => 'checkbox',
                    'title' => Text::_('COM_SPPAGEBUILDER_ADDON_ARTICLES_HIDE_THUMBNAIL'),
                    'desc' => Text::_('COM_SPPAGEBUILDER_ADDON_ARTICLES_HIDE_THUMBNAIL_DESC'),
                    'values' => [
                        1 => Text::_('COM_SPPAGEBUILDER_YES'),
                        0 => Text::_('COM_SPPAGEBUILDER_NO'),
                    ],
                    'depends' => [
                        ['layout', '!=', 'side'],
                        ['layout', '!=', 'magazine'],
                    ],
                    'std' => 0,
                ],

                'thumb_size' => [
                    'type' => 'select',
                    'title' => Text::_('COM_SPPAGEBUILDER_ARTICLE_ADDON_THUMB_SIZE'),
                    'desc' => Text::_('COM_SPPAGEBUILDER_ARTICLE_ADDON_THUMB_SIZE_DESC'),
                    'values' => [
                        'image_thumbnail' => Text::_('COM_SPPAGEBUILDER_ARTICLE_ADDON_THUMB_SIZE_THUMBNAIL'),
                        'image_small' => Text::_('COM_SPPAGEBUILDER_ARTICLE_ADDON_THUMB_SIZE_SMALL'),
                        'image_medium' => Text::_('COM_SPPAGEBUILDER_ARTICLE_ADDON_THUMB_SIZE_MEDIUM'),
                        'image_large' => Text::_('COM_SPPAGEBUILDER_ARTICLE_ADDON_THUMB_SIZE_LARGE'),
                        'featured_image' => Text::_('COM_SPPAGEBUILDER_ARTICLE_ADDON_THUMB_SIZE_FEATURED_IMAGE'),
                    ],
                    'depends' => [
                        ['resource', '!=', 'k2'],
                        ['post_type', '!=', 'audio'],
                        ['post_type', '!=', 'video'],
                        ['post_type', '!=', 'gallery'],
                        ['post_type', '!=', 'link'],
                        ['post_type', '!=', 'quote'],
                        ['post_type', '!=', 'status'],
                        ['layout', '!=', 'side'],
                        ['layout', '!=', 'magazine'],
                        ['hide_thumbnail', '=', 0],
                    ],
                    'std' => 'image_thumbnail',
                ],
            ],
        ],

        'article_title' => [
            'title' => Text::_('COM_SPPAGEBUILDER_GLOBAL_TITLE_ARTICLE'),
            'fields' => [
                'article_heading_selector' => [
                    'type' => 'headings',
                    'title' => Text::_('COM_SPPAGEBUILDER_ADDON_HEADINGS'),
                    'desc' => Text::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_DESC'),
                    'std' => 'h3',
                ],

                'article_title_typography' => [
                    'type' => 'typography',
                    'title' => Text::_('COM_SPPAGEBUILDER_GLOBAL_TYPOGRAPHY'),
                    'fallbacks' => [
                        'font' => 'font_family',
                        'size' => 'title_fontsize',
                        'line_height' => 'title_lineheight',
                        'letter_spacing' => 'title_letterspace',
                        'uppercase' => 'title_font_style.uppercase',
                        'italic' => 'title_font_style.italic',
                        'underline' => 'title_font_style.underline',
                        'weight' => 'title_font_style.weight',
                    ],
                ],

                'article_title_margin_separator' => [
                    'type' => 'separator',
                ],

                'article_title_margin_top' => [
                    'type' => 'slider',
                    'title' => Text::_('COM_SPPAGEBUILDER_GLOBAL_MARGIN_TOP'),
                    'max' => 400,
                    'responsive' => true,
                ],

                'article_title_margin_bottom' => [
                    'type' => 'slider',
                    'title' => Text::_('COM_SPPAGEBUILDER_GLOBAL_MARGIN_BOTTOM'),
                    'max' => 400,
                    'responsive' => true,
                ],

                'article_title_status' => [
                    'type' => 'buttons',
                    'std' => 'normal',
                    'values' => [
                        ['label' => 'Normal', 'value' => 'normal'],
                        ['label' => 'Hover', 'value' => 'hover'],
                    ],
                    'tabs' => true,
                ],

                'article_title_text_color' => [
                    'type' => 'color',
                    'title' => Text::_('COM_SPPAGEBUILDER_GLOBAL_COLOR'),
                    'std' => '#ec430f',
                    'depends' => [['article_title_status', '=', 'normal']],
                ],
                'article_title_text_color_hover' => [
                    'type' => 'color',
                    'title' => Text::_('COM_SPPAGEBUILDER_GLOBAL_COLOR'),
                    'std' => '#044CD0',
                    'depends' => [['article_title_status', '=', 'hover']],
                ],
            ],
        ],

        'show_intro' => [
            'title' => Text::_('COM_SPPAGEBUILDER_ADDON_ARTICLES_SHOW_INTRO'),
            'desc' => Text::_('COM_SPPAGEBUILDER_ADDON_ARTICLES_SHOW_INTRO_DESC'),
            'fields' => [
                'show_intro' => [
                    'type' => 'checkbox',
                    'title' => Text::_('COM_SPPAGEBUILDER_ADDON_ARTICLES_SHOW_INTRO'),
                    'desc' => Text::_('COM_SPPAGEBUILDER_ADDON_ARTICLES_SHOW_INTRO_DESC'),
                    'std' => '1',
                    'is_header' => 1,
                ],
                'intro_limit' => [
                    'type' => 'slider',
                    'title' => Text::_('COM_SPPAGEBUILDER_ADDON_ARTICLES_INTRO_LIMIT'),
                    'desc' => Text::_('COM_SPPAGEBUILDER_ADDON_ARTICLES_INTRO_LIMIT_DESC'),
                    'std' => 200,
                    'depends' => [['show_intro', '=', '1']],
                ],
                'intro_typography' => [
                    'type' => 'typography',
                    'title' => Text::_('COM_SPPAGEBUILDER_GLOBAL_TYPOGRAPHY'),
                    'fallbacks' => [
                        'font' => 'intro_font_family',
                        'letter_spacing' => 'intro_letterspace',
                        'weight' => 'intro_font_style.weight',
                        'italic' => 'intro_font_style.italic',
                        'underline' => 'intro_font_style.underline',
                        'uppercase' => 'intro_font_style.uppercase',
                    ],
                    'depends' => [
                        ['show_intro', '=', '1'],
                    ],
                ],
                'intro_margin' => [
                    'type' => 'margin',
                    'title' => Text::_('COM_SPPAGEBUILDER_GLOBAL_MARGIN'),
                    'responsive' => true,
                    'depends' => [
                        ['show_intro', '=', '1'],
                    ],
                ],
                'intro_padding' => [
                    'type' => 'padding',
                    'title' => Text::_('COM_SPPAGEBUILDER_GLOBAL_PADDING'),
                    'responsive' => true,
                    'depends' => [
                        ['show_intro', '=', '1'],
                    ],
                ],
                'intro_color' => [
                    'type' => 'color',
                    'title' => Text::_('COM_SPPAGEBUILDER_GLOBAL_TEXT_COLOR'),
                    'std' => '#252525',
                    'depends' => [
                        ['show_intro', '=', '1'],
                    ],
                ],
            ]
        ],

        'show_custom_field' => [
            'type'  => 'checkbox',
            'title' => Text::_('COM_SPPAGEBUILDER_ADDON_ARTICLES_SHOW_CUSTOM_FIELD'),
            'fields' => [
                'show_custom_field' => [
                    'type'  => 'checkbox',
                    'title' => Text::_('COM_SPPAGEBUILDER_ADDON_ARTICLES_SHOW_CUSTOM_FIELD'),
                    'desc'  => Text::_('COM_SPPAGEBUILDER_ADDON_ARTICLES_SHOW_CUSTOM_FIELD_DESC'),
                    'values' => [
                        1 => Text::_('COM_SPPAGEBUILDER_YES'),
                        0 => Text::_('COM_SPPAGEBUILDER_NO'),
                    ],
                    'std' => 1,
                    'is_header' => 1,
                ],
            ]
        ],

        'show_author' => [
            'title' => Text::_('COM_SPPAGEBUILDER_ADDON_ARTICLES_SHOW_AUTHOR'),
            'desc' => Text::_('COM_SPPAGEBUILDER_ADDON_ARTICLES_SHOW_AUTHOR_DESC'),
            'fields' => [
                'show_author' => [
                    'type' => 'checkbox',
                    'title' => Text::_('COM_SPPAGEBUILDER_ADDON_ARTICLES_SHOW_AUTHOR'),
                    'desc' => Text::_('COM_SPPAGEBUILDER_ADDON_ARTICLES_SHOW_AUTHOR_DESC'),
                    'values' => [
                        1 => Text::_('COM_SPPAGEBUILDER_YES'),
                        0 => Text::_('COM_SPPAGEBUILDER_NO'),
                    ],
                    'std' => 1,
                    'is_header' => 1,
                ],
                'author_typography' => [
                    'type' => 'typography',
                    'title' => Text::_('COM_SPPAGEBUILDER_GLOBAL_TYPOGRAPHY'),
                    'fallbacks' => [
                        'font' => 'author_font_family',
                        'letter_spacing' => 'author_letterspace',
                        'weight' => 'author_font_style.weight',
                        'italic' => 'author_font_style.italic',
                        'underline' => 'author_font_style.underline',
                        'uppercase' => 'author_font_style.uppercase',
                    ],
                    'depends' => [
                        ['show_author', '=', '1'],
                    ],
                ],
                'author_margin_left' => [
                    'type' => 'slider',
                    'title' => Text::_('COM_SPPAGEBUILDER_GLOBAL_MARGIN_LEFT'),
                    'responsive' => true,
                    'depends' => [
                        ['show_author', '=', '1'],
                    ],
                ],
                'author_margin_right' => [
                    'type' => 'slider',
                    'title' => Text::_('COM_SPPAGEBUILDER_GLOBAL_MARGIN_RIGHT'),
                    'responsive' => true,
                    'depends' => [
                        ['show_author', '=', '1'],
                    ],
                ],
                'author_color' => [
                    'type' => 'color',
                    'title' => Text::_('COM_SPPAGEBUILDER_GLOBAL_TEXT_COLOR'),
                    'std' => '#888',
                    'depends' => [
                        ['show_author', '=', '1'],
                    ],
                ],
            ]
        ],

        'show_tags' => [
            'title' => Text::_('COM_SPPAGEBUILDER_ADDON_ARTICLES_SHOW_TAGS'),
            'desc' => Text::_('COM_SPPAGEBUILDER_ADDON_ARTICLES_SHOW_TAGS_DESC'),
            'fields' => [
                'show_tags' => [
                    'type' => 'checkbox',
                    'title' => Text::_('COM_SPPAGEBUILDER_ADDON_ARTICLES_SHOW_TAGS'),
                    'desc' => Text::_('COM_SPPAGEBUILDER_ADDON_ARTICLES_SHOW_TAGS_DESC'),
                    'values' => [
                        1 => Text::_('COM_SPPAGEBUILDER_YES'),
                        0 => Text::_('COM_SPPAGEBUILDER_NO'),
                    ],
                    'std' => 1,
                    'is_header' => 1,
                ],
                'tags_typography' => [
                    'type' => 'typography',
                    'title' => Text::_('COM_SPPAGEBUILDER_GLOBAL_TYPOGRAPHY'),
                    'fallbacks' => [
                        'font' => 'tags_font_family',
                        'letter_spacing' => 'tags_letterspace',
                        'weight' => 'tags_font_style.weight',
                        'italic' => 'tags_font_style.italic',
                        'underline' => 'tags_font_style.underline',
                        'uppercase' => 'tags_font_style.uppercase',
                    ],
                    'depends' => [
                        ['show_tags', '=', '1'],
                    ],
                ],
                'tags_margin' => [
                    'type' => 'margin',
                    'title' => Text::_('COM_SPPAGEBUILDER_GLOBAL_MARGIN'),
                    'responsive' => true,
                    'depends' => [
                        ['show_tags', '=', '1'],
                    ],
                ],
                'tags_padding' => [
                    'type' => 'padding',
                    'title' => Text::_('COM_SPPAGEBUILDER_GLOBAL_PADDING'),
                    'responsive' => true,
                    'depends' => [
                        ['show_tags', '=', '1'],
                    ],
                ],
                'tags_border_radius' => [
                    'type'  => 'slider',
                    'title' => Text::_('COM_SPPAGEBUILDER_GLOBAL_BORDER_RADIUS'),
                    'std'   => 0,
                    'depends' => [
                        ['show_tags', '=', '1'],
                    ],
                ],
                'tags_status' => [
                    'type' => 'buttons',
                    'std' => 'normal',
                    'values' => [
                        ['label' => 'Normal', 'value' => 'normal'],
                        ['label' => 'Hover', 'value' => 'hover'],
                    ],
                    'tabs' => true,
                    'depends' => [['show_tags', '=', '1']],
                ],
                'tags_color' => [
                    'type' => 'color',
                    'title' => Text::_('COM_SPPAGEBUILDER_GLOBAL_TEXT_COLOR'),
                    'std' => '#ec430f',
                    'depends' => [
                        ['show_tags', '=', '1'],
                        ['tags_status', '=', 'normal'],
                    ],
                ],
                'tags_color_hover' => [
                    'type' => 'color',
                    'title' => Text::_('COM_SPPAGEBUILDER_GLOBAL_TEXT_COLOR'),
                    'std' => '#fff',
                    'depends' => [
                        ['show_tags', '=', '1'],
                        ['tags_status', '=', 'hover'],
                    ],
                ],
                'tags_background_color' => [
                    'type' => 'color',
                    'title' => Text::_('COM_SPPAGEBUILDER_GLOBAL_BACKGROUND_COLOR'),
                    'std' => 'rgba(236, 67, 15, 0.1)',
                    'depends' => [
                        ['show_tags', '=', '1'],
                        ['tags_status', '=', 'normal'],
                    ],
                ],
                'tags_background_color_hover' => [
                    'type' => 'color',
                    'title' => Text::_('COM_SPPAGEBUILDER_GLOBAL_BACKGROUND_COLOR'),
                    'std' => '#044CD0',
                    'depends' => [
                        ['show_tags', '=', '1'],
                        ['tags_status', '=', 'hover'],
                    ],
                ],
            ]
        ],

        'show_category' => [
            'title' => Text::_('COM_SPPAGEBUILDER_ADDON_ARTICLES_SHOW_CATEGORY'),
            'desc' => Text::_('COM_SPPAGEBUILDER_ADDON_ARTICLES_SHOW_CATEGORY_DESC'),
            'fields' => [
                'show_category' => [
                    'type' => 'checkbox',
                    'title' => Text::_('COM_SPPAGEBUILDER_ADDON_ARTICLES_SHOW_CATEGORY'),
                    'desc' => Text::_('COM_SPPAGEBUILDER_ADDON_ARTICLES_SHOW_CATEGORY_DESC'),
                    'values' => [
                        1 => Text::_('COM_SPPAGEBUILDER_YES'),
                        0 => Text::_('COM_SPPAGEBUILDER_NO'),
                    ],
                    'std' => 1,
                    'is_header' => 1,
                ],
                'category_typography' => [
                    'type' => 'typography',
                    'title' => Text::_('COM_SPPAGEBUILDER_GLOBAL_TYPOGRAPHY'),
                    'fallbacks' => [
                        'font' => 'category_font_family',
                        'letter_spacing' => 'category_letterspace',
                        'weight' => 'category_font_style.weight',
                        'italic' => 'category_font_style.italic',
                        'underline' => 'category_font_style.underline',
                        'uppercase' => 'category_font_style.uppercase',
                    ],
                    'depends' => [
                        ['show_category', '=', '1'],
                    ],
                ],
                'category_margin_left' => [
                    'type' => 'slider',
                    'title' => Text::_('COM_SPPAGEBUILDER_GLOBAL_MARGIN_LEFT'),
                    'responsive' => true,
                    'depends' => [
                        ['show_category', '=', '1'],
                    ],
                ],
                'category_margin_right' => [
                    'type' => 'slider',
                    'title' => Text::_('COM_SPPAGEBUILDER_GLOBAL_MARGIN_RIGHT'),
                    'responsive' => true,
                    'depends' => [
                        ['show_category', '=', '1'],
                    ],
                ],
                'category_status' => [
                    'type' => 'buttons',
                    'std' => 'normal',
                    'values' => [
                        ['label' => 'Normal', 'value' => 'normal'],
                        ['label' => 'Hover', 'value' => 'hover'],
                    ],
                    'tabs' => true,
                    'depends' => [['show_category', '=', '1']],
                ],
                'category_color' => [
                    'type' => 'color',
                    'title' => Text::_('COM_SPPAGEBUILDER_GLOBAL_TEXT_COLOR'),
                    'std' => '#ec430f',
                    'depends' => [
                        ['show_category', '=', '1'],
                        ['category_status', '=', 'normal'],
                    ],
                ],
                'category_color_hover' => [
                    'type' => 'color',
                    'title' => Text::_('COM_SPPAGEBUILDER_GLOBAL_TEXT_COLOR'),
                    'std' => '#044CD0',
                    'depends' => [
                        ['show_category', '=', '1'],
                        ['category_status', '=', 'hover'],
                    ],
                ],
            ]
        ],

        'show_date' => [
            'title' => Text::_('COM_SPPAGEBUILDER_ADDON_ARTICLES_SHOW_DATE'),
            'desc' => Text::_('COM_SPPAGEBUILDER_ADDON_ARTICLES_SHOW_DATE_DESC'),
            'fields' => [
                'show_date' => [
                    'type' => 'checkbox',
                    'title' => Text::_('COM_SPPAGEBUILDER_ADDON_ARTICLES_SHOW_DATE'),
                    'desc' => Text::_('COM_SPPAGEBUILDER_ADDON_ARTICLES_SHOW_DATE_DESC'),
                    'values' => [
                        1 => Text::_('COM_SPPAGEBUILDER_YES'),
                        0 => Text::_('COM_SPPAGEBUILDER_NO'),
                    ],
                    'std' => 1,
                    'is_header' => 1,
                ],
                'show_date_text' => [
                    'type' => 'text',
                    'title' => Text::_('COM_SPPAGEBUILDER_ADDON_ARTICLES_SHOW_DATE_TEXT'),
                    'desc' => Text::_('COM_SPPAGEBUILDER_ADDON_ARTICLES_SHOW_DATE_TEXT_DESC'),
                    'std' => '',
                    'inline' => true,
                    'depends' => [['show_date', '=', '1']],
                ],
                'date_typography' => [
                    'type' => 'typography',
                    'title' => Text::_('COM_SPPAGEBUILDER_GLOBAL_TYPOGRAPHY'),
                    'fallbacks' => [
                        'font' => 'date_font_family',
                        'letter_spacing' => 'date_letterspace',
                        'weight' => 'date_font_style.weight',
                        'italic' => 'date_font_style.italic',
                        'underline' => 'date_font_style.underline',
                        'uppercase' => 'date_font_style.uppercase',
                    ],
                    'depends' => [
                        ['show_date', '=', '1'],
                    ],
                ],
                'date_margin_left' => [
                    'type' => 'slider',
                    'title' => Text::_('COM_SPPAGEBUILDER_GLOBAL_MARGIN_LEFT'),
                    'responsive' => true,
                    'depends' => [
                        ['show_date', '=', '1'],
                    ],
                ],
                'date_margin_right' => [
                    'type' => 'slider',
                    'title' => Text::_('COM_SPPAGEBUILDER_GLOBAL_MARGIN_RIGHT'),
                    'responsive' => true,
                    'depends' => [
                        ['show_date', '=', '1'],
                    ],
                ],
                'date_color' => [
                    'type' => 'color',
                    'title' => Text::_('COM_SPPAGEBUILDER_GLOBAL_TEXT_COLOR'),
                    'std' => '#888',
                    'depends' => [
                        ['show_date', '=', '1'],
                    ],
                ],
                // 'date_prefix_typography' => [
                //     'type' => 'typography',
                //     'title' => Text::_('COM_SPPAGEBUILDER_GLOBAL_TYPOGRAPHY'),
                //     'fallbacks' => [
                //         'font' => 'date_prefix_font_family',
                //         'letter_spacing' => 'date_prefix_letterspace',
                //         'weight' => 'date_prefix_font_style.weight',
                //         'italic' => 'date_prefix_font_style.italic',
                //         'underline' => 'date_prefix_font_style.underline',
                //         'uppercase' => 'date_prefix_font_style.uppercase',
                //     ],
                //     'depends' => [
                //         ['show_date', '=', '1'],
                //     ],
                // ],
                // 'date_prefix_color' => [
                //     'type' => 'color',
                //     'title' => Text::_('COM_SPPAGEBUILDER_GLOBAL_TEXT_COLOR'),
                //     'std' => '#FFFFFF',
                //     'depends' => [
                //         ['show_date', '=', '1'],
                //     ],
                // ],
            ]
        ],

        'show_last_modified_date' => [
            'title' => Text::_('COM_SPPAGEBUILDER_ADDON_ARTICLES_SHOW_LAST_MODIFIED_DATE'),
            'desc' => Text::_('COM_SPPAGEBUILDER_ADDON_ARTICLES_SHOW_LAST_MODIFIED_DATE_DESC'),
            'fields' => [
                'show_last_modified_date' => [
                    'type' => 'checkbox',
                    'title' => Text::_('COM_SPPAGEBUILDER_ADDON_ARTICLES_SHOW_LAST_MODIFIED_DATE'),
                    'desc' => Text::_('COM_SPPAGEBUILDER_ADDON_ARTICLES_SHOW_LAST_MODIFIED_DATE_DESC'),
                    'values' => [
                        1 => Text::_('COM_SPPAGEBUILDER_YES'),
                        0 => Text::_('COM_SPPAGEBUILDER_NO'),
                    ],
                    'std' => 0,
                    'is_header' => 1,
                ],
                'show_last_modified_date_text' => [
                    'type' => 'text',
                    'title' => Text::_('COM_SPPAGEBUILDER_ADDON_ARTICLES_SHOW_LAST_MODIFIED_DATE_TEXT'),
                    'desc' => Text::_('COM_SPPAGEBUILDER_ADDON_ARTICLES_SHOW_LAST_MODIFIED_DATE_TEXT_DESC'),
                    'std' => '',
                    'inline' => true,
                    'depends' => [['show_last_modified_date', '=', '1']],
                ],
                'last_modified_date_typography' => [
                    'type' => 'typography',
                    'title' => Text::_('COM_SPPAGEBUILDER_GLOBAL_TYPOGRAPHY'),
                    'fallbacks' => [
                        'font' => 'last_modified_date_font_family',
                        'letter_spacing' => 'last_modified_date_letterspace',
                        'weight' => 'last_modified_date_font_style.weight',
                        'italic' => 'last_modified_date_font_style.italic',
                        'underline' => 'last_modified_date_font_style.underline',
                        'uppercase' => 'last_modified_date_font_style.uppercase',
                    ],
                    'depends' => [
                        ['show_last_modified_date', '=', '1'],
                    ],
                ],
                'last_modified_date_margin_left' => [
                    'type' => 'slider',
                    'title' => Text::_('COM_SPPAGEBUILDER_GLOBAL_MARGIN_LEFT'),
                    'responsive' => true,
                    'depends' => [
                        ['show_last_modified_date', '=', '1'],
                    ],
                ],
                'last_modified_date_margin_right' => [
                    'type' => 'slider',
                    'title' => Text::_('COM_SPPAGEBUILDER_GLOBAL_MARGIN_RIGHT'),
                    'responsive' => true,
                    'depends' => [
                        ['show_last_modified_date', '=', '1'],
                    ],
                ],
                'last_modified_date_color' => [
                    'type' => 'color',
                    'title' => Text::_('COM_SPPAGEBUILDER_GLOBAL_TEXT_COLOR'),
                    'std' => '#888',
                    'depends' => [
                        ['show_last_modified_date', '=', '1'],
                    ],
                ],
                // 'last_modified_date_prefix_typography' => [
                //     'type' => 'typography',
                //     'title' => Text::_('COM_SPPAGEBUILDER_GLOBAL_TYPOGRAPHY'),
                //     'fallbacks' => [
                //         'font' => 'last_modified_date_prefix_font_family',
                //         'letter_spacing' => 'last_modified_date_prefix_letterspace',
                //         'weight' => 'last_modified_date_prefix_font_style.weight',
                //         'italic' => 'last_modified_date_prefix_font_style.italic',
                //         'underline' => 'last_modified_date_prefix_font_style.underline',
                //         'uppercase' => 'last_modified_date_prefix_font_style.uppercase',
                //     ],
                //     'depends' => [
                //         ['show_last_modified_date', '=', '1'],
                //     ],
                // ],
                // 'last_modified_date_prefix_color' => [
                //     'type' => 'color',
                //     'title' => Text::_('COM_SPPAGEBUILDER_GLOBAL_TEXT_COLOR'),
                //     'std' => '#FFFFFF',
                //     'depends' => [
                //         ['show_last_modified_date', '=', '1'],
                //     ],
                // ],
            ]
        ],

        'show_readmore' => [
            'title' => Text::_('COM_SPPAGEBUILDER_ADDON_ARTICLES_SHOW_READMORE'),
            'desc' => Text::_('COM_SPPAGEBUILDER_ADDON_ARTICLES_SHOW_READMORE_DESC'),
            'fields' => [
                'show_readmore' => [
                    'type' => 'checkbox',
                    'title' => Text::_('COM_SPPAGEBUILDER_ADDON_ARTICLES_SHOW_READMORE'),
                    'desc' => Text::_('COM_SPPAGEBUILDER_ADDON_ARTICLES_SHOW_READMORE_DESC'),
                    'values' => [
                        1 => Text::_('COM_SPPAGEBUILDER_YES'),
                        0 => Text::_('COM_SPPAGEBUILDER_NO'),
                    ],
                    'std' => 1,
                    'is_header' => 1,
                ],
                'readmore_text' => [
                    'type' => 'text',
                    'title' => Text::_('COM_SPPAGEBUILDER_ADDON_ARTICLES_READMORE_TEXT'),
                    'desc' => Text::_('COM_SPPAGEBUILDER_ADDON_ARTICLES_READMORE_TEXT_DESC'),
                    'std' => 'Read More',
                    'inline' => true,
                    'depends' => [['show_readmore', '=', '1']],
                ],
                'readmore_typography' => [
                    'type' => 'typography',
                    'title' => Text::_('COM_SPPAGEBUILDER_GLOBAL_TYPOGRAPHY'),
                    'fallbacks' => [
                        'font' => 'readmore_font_family',
                        'letter_spacing' => 'readmore_letterspace',
                        'weight' => 'readmore_font_style.weight',
                        'italic' => 'readmore_font_style.italic',
                        'underline' => 'readmore_font_style.underline',
                        'uppercase' => 'readmore_font_style.uppercase',
                    ],
                    'depends' => [
                        ['show_readmore', '=', '1'],
                    ],
                ],
                'readmore_margin' => [
                    'type' => 'margin',
                    'title' => Text::_('COM_SPPAGEBUILDER_GLOBAL_MARGIN'),
                    'responsive' => true,
                    'depends' => [
                        ['show_readmore', '=', '1'],
                    ],
                ],
                'readmore_padding' => [
                    'type' => 'padding',
                    'title' => Text::_('COM_SPPAGEBUILDER_GLOBAL_PADDING'),
                    'responsive' => true,
                    'depends' => [
                        ['show_readmore', '=', '1'],
                    ],
                ],
                'readmore_status' => [
                    'type' => 'buttons',
                    'std' => 'normal',
                    'values' => [
                        ['label' => 'Normal', 'value' => 'normal'],
                        ['label' => 'Hover', 'value' => 'hover'],
                    ],
                    'tabs' => true,
                    'depends' => [['show_readmore', '=', '1']],
                ],
                'readmore_color' => [
                    'type' => 'color',
                    'title' => Text::_('COM_SPPAGEBUILDER_GLOBAL_TEXT_COLOR'),
                    'std' => '#ec430f',
                    'depends' => [
                        ['show_readmore', '=', '1'],
                        ['readmore_status', '=', 'normal'],
                    ],
                ],
                'readmore_color_hover' => [
                    'type' => 'color',
                    'title' => Text::_('COM_SPPAGEBUILDER_GLOBAL_TEXT_COLOR'),
                    'std' => '#044CD0',
                    'depends' => [
                        ['show_readmore', '=', '1'],
                        ['readmore_status', '=', 'hover'],
                    ],
                ],
            ]
        ],

        'button' => [
            'title' => Text::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON'),
            'fields' => [
                'link_articles' => [
                    'type' => 'checkbox',
                    'title' => Text::_('COM_SPPAGEBUILDER_ADDON_ARTICLES_ALL_ARTICLES_BUTTON'),
                    'desc' => Text::_('COM_SPPAGEBUILDER_ADDON_ARTICLES_ALL_ARTICLES_BUTTON_DESC'),
                    'values' => [
                        1 => Text::_('COM_SPPAGEBUILDER_YES'),
                        0 => Text::_('COM_SPPAGEBUILDER_NO'),
                    ],
                    'std' => 0,
                    'is_header' => true,
                ],

                'link_catid' => [
                    'type' => 'category',
                    'title' => Text::_('COM_SPPAGEBUILDER_ADDON_ARTICLES_CATID'),
                    'desc' => Text::_('COM_SPPAGEBUILDER_ADDON_ARTICLES_CATID_DESC'),
                    'depends' => [
                        ['link_articles', '=', '1']
                    ],
                ],

                'all_articles_btn_text' => [
                    'type' => 'text',
                    'title' => Text::_('COM_SPPAGEBUILDER_GLOBAL_LABEL'),
                    'std' => 'See all posts',
                    'inline' => true,
                    'depends' => [
                        ['link_articles', '=', '1'],
                    ],
                ],

                'all_articles_btn_url' => [
                    'type' => 'link',
                    'title' => Text::_('COM_SPPAGEBUILDER_GLOBAL_LINK'),
                    'depends' => [
                        ['link_articles', '=', '1'],
                    ],
                ],

                'all_articles_btn_typography' => [
                    'type' => 'typography',
                    'title' => Text::_('COM_SPPAGEBUILDER_GLOBAL_TYPOGRAPHY'),
                    'fallbacks' => [
                        'font' => 'all_articles_btn_font_family',
                        'letter_spacing' => 'all_articles_btn_letterspace',
                        'weight' => 'all_articles_btn_font_style.weight',
                        'italic' => 'all_articles_btn_font_style.italic',
                        'underline' => 'all_articles_btn_font_style.underline',
                        'uppercase' => 'all_articles_btn_font_style.uppercase',
                    ],
                    'depends' => [
                        ['link_articles', '=', '1'],
                    ],
                ],

                'all_articles_btn_type' => [
                    'type' => 'select',
                    'title' => Text::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_STYLE'),
                    'desc' => Text::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_STYLE_DESC'),
                    'values' => [
                        'default' => Text::_('COM_SPPAGEBUILDER_GLOBAL_DEFAULT'),
                        'primary' => Text::_('COM_SPPAGEBUILDER_GLOBAL_PRIMARY'),
                        'secondary' => Text::_('COM_SPPAGEBUILDER_GLOBAL_SECONDARY'),
                        'success' => Text::_('COM_SPPAGEBUILDER_GLOBAL_SUCCESS'),
                        'info' => Text::_('COM_SPPAGEBUILDER_GLOBAL_INFO'),
                        'warning' => Text::_('COM_SPPAGEBUILDER_GLOBAL_WARNING'),
                        'danger' => Text::_('COM_SPPAGEBUILDER_GLOBAL_DANGER'),
                        'dark' => Text::_('COM_SPPAGEBUILDER_GLOBAL_DARK'),
                        'link' => Text::_('COM_SPPAGEBUILDER_GLOBAL_LINK'),
                        'custom' => Text::_('COM_SPPAGEBUILDER_GLOBAL_CUSTOM'),
                    ],
                    'std' => 'custom',
                    'inline' => true,
                    'depends' => [
                        ['link_articles', '=', '1'],
                    ],
                ],

                'all_articles_btn_link_padding_bottom' => [
                    'type' => 'slider',
                    'title' => Text::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_PADDING_BOTTOM'),
                    'max' => 100,
                    'std' => '',
                    'depends' => [
                        ['link_articles', '=', '1'],
                        ['all_articles_btn_type', '=', 'link'],
                    ],
                ],

                'all_articles_btn_appearance' => [
                    'type' => 'select',
                    'title' => Text::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_APPEARANCE'),
                    'desc' => Text::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_APPEARANCE_DESC'),
                    'values' => [
                        '' => Text::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_APPEARANCE_FLAT'),
                        'gradient' => Text::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_APPEARANCE_GRADIENT'),
                        'outline' => Text::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_APPEARANCE_OUTLINE'),
                    ],
                    'std' => '',
                    'inline' => true,
                    'depends' => [
                        ['link_articles', '=', '1'],
                    ],
                ],

                'all_articles_btn_shape' => [
                    'type' => 'select',
                    'title' => Text::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SHAPE'),
                    'desc' => Text::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SHAPE_DESC'),
                    'values' => [
                        'rounded' => Text::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SHAPE_ROUNDED'),
                        'square' => Text::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SHAPE_SQUARE'),
                        'round' => Text::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SHAPE_ROUND'),
                    ],
                    'std' => 'rounded',
                    'depends' => [
                        ['link_articles', '=', '1'],
                    ],
                ],

                'all_articles_btn_size' => [
                    'type' => 'select',
                    'title' => Text::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SIZE'),
                    'desc' => Text::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SIZE_DESC'),
                    'values' => [
                        '' => Text::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SIZE_DEFAULT'),
                        'lg' => Text::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SIZE_LARGE'),
                        'xlg' => Text::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SIZE_XLARGE'),
                        'sm' => Text::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SIZE_SMALL'),
                        'xs' => Text::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SIZE_EXTRA_SAMLL'),
                        'custom' => Text::_('COM_SPPAGEBUILDER_GLOBAL_CUSTOM'),
                    ],
                    'inline' => true,
                    'depends' => [
                        ['link_articles', '=', '1'],
                    ],
                ],

                'all_articles_btn_padding' => [
                    'type' => 'padding',
                    'title' => Text::_('COM_SPPAGEBUILDER_GLOBAL_PADDING'),
                    'responsive' => true,
                    'std' => ['xl' => '8px 22px 10px 22px', 'lg' => '8px 22px 10px 22px', 'md' => '8px 22px 10px 22px', 'sm' => '8px 22px 10px 22px', 'xs' => '8px 22px 10px 22px'],
                    'depends' => [
                        ['link_articles', '=', '1'],
                        ['all_articles_btn_size', '=', 'custom'],
                    ],
                ],

                'all_articles_btn_block' => [
                    'type' => 'select',
                    'title' => Text::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_BLOCK'),
                    'values' => [
                        '' => Text::_('JNO'),
                        'sppb-btn-block' => Text::_('JYES'),
                    ],
                    'depends' => [
                        ['link_articles', '=', '1'],
                        ['all_articles_btn_type', '!=', 'link'],
                    ],
                ],

                'all_articles_btn_icon_separator' => [
                    'type' => 'separator',
                    'depends' => [
                        ['link_articles', '=', '1'],
                    ],
                ],

                'all_articles_btn_icon' => [
                    'type' => 'icon',
                    'title' => Text::_('COM_SPPAGEBUILDER_GLOBAL_ICON'),
                    'desc' => Text::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_ICON_DESC'),
                    'depends' => [
                        ['link_articles', '=', '1'],
                    ],
                ],

                'all_articles_btn_icon_position' => [
                    'type' => 'select',
                    'title' => Text::_('COM_SPPAGEBUILDER_GLOBAL_POSITION'),
                    'values' => [
                        'left' => Text::_('COM_SPPAGEBUILDER_GLOBAL_LEFT'),
                        'right' => Text::_('COM_SPPAGEBUILDER_GLOBAL_RIGHT'),
                    ],
                    'std' => 'left',
                    'depends' => [
                        ['link_articles', '=', '1'],
                    ],
                ],

                'all_articles_btn_status_separator' => [
                    'type' => 'separator',
                    'depends' => [
                        ['link_articles', '=', '1'],
                        ['all_articles_btn_type', '=', 'custom'],
                    ],
                ],

                'all_articles_btn_status' => [
                    'type' => 'buttons',
                    'std' => 'normal',
                    'values' => [
                        ['label' => 'Normal', 'value' => 'normal'],
                        ['label' => 'Hover', 'value' => 'hover'],
                    ],
                    'tabs' => true,
                    'depends' => [
                        ['link_articles', '=', '1'],
                        ['all_articles_btn_type', '=', 'custom'],
                    ],
                ],

                'all_articles_btn_color' => [
                    'type' => 'color',
                    'title' => Text::_('COM_SPPAGEBUILDER_GLOBAL_TEXT_COLOR'),
                    'std' => '#FFFFFF',
                    'depends' => [
                        ['link_articles', '=', '1'],
                        ['all_articles_btn_type', '=', 'custom'],
                        ['all_articles_btn_status', '=', 'normal'],
                    ],
                ],

                'all_articles_btn_background_color' => [
                    'type' => 'color',
                    'title' => Text::_('COM_SPPAGEBUILDER_GLOBAL_BACKGROUND_COLOR'),
                    'std' => '#3366FF',
                    'depends' => [
                        ['link_articles', '=', '1'],
                        ['all_articles_btn_appearance', '!=', 'gradient'],
                        ['all_articles_btn_type', '=', 'custom'],
                        ['all_articles_btn_status', '=', 'normal'],
                    ],
                ],

                'all_articles_btn_background_gradient' => [
                    'type' => 'gradient',
                    'title' => Text::_('COM_SPPAGEBUILDER_GLOBAL_BACKGROUND_COLOR'),
                    'std' => [
                        "color" => "#3366FF",
                        "color2" => "#0037DD",
                        "deg" => "45",
                        "type" => "linear",
                    ],
                    'depends' => [
                        ['link_articles', '=', '1'],
                        ['all_articles_btn_appearance', '=', 'gradient'],
                        ['all_articles_btn_type', '=', 'custom'],
                        ['all_articles_btn_status', '=', 'normal'],
                    ],
                ],

                'all_articles_btn_color_hover' => [
                    'type' => 'color',
                    'title' => Text::_('COM_SPPAGEBUILDER_GLOBAL_TEXT_COLOR'),
                    'std' => '#FFFFFF',
                    'depends' => [
                        ['link_articles', '=', '1'],
                        ['all_articles_btn_type', '=', 'custom'],
                        ['all_articles_btn_status', '=', 'hover'],
                    ],
                ],

                'all_articles_btn_background_color_hover' => [
                    'type' => 'color',
                    'title' => Text::_('COM_SPPAGEBUILDER_GLOBAL_BACKGROUND_COLOR'),
                    'std' => '#0037DD',
                    'depends' => [
                        ['link_articles', '=', '1'],
                        ['all_articles_btn_appearance', '!=', 'gradient'],
                        ['all_articles_btn_type', '=', 'custom'],
                        ['all_articles_btn_status', '=', 'hover'],
                    ],
                ],

                'all_articles_btn_background_gradient_hover' => [
                    'type' => 'gradient',
                    'title' => Text::_('COM_SPPAGEBUILDER_GLOBAL_BACKGROUND_COLOR'),
                    'std' => [
                        "color" => "#0037DD",
                        "color2" => "#3366FF",
                        "deg" => "45",
                        "type" => "linear",
                    ],
                    'depends' => [
                        ['link_articles', '=', '1'],
                        ['all_articles_btn_appearance', '=', 'gradient'],
                        ['all_articles_btn_type', '=', 'custom'],
                        ['all_articles_btn_status', '=', 'hover'],
                    ],
                ],

                // link button
                'all_articles_btn_link_separator' => [
                    'type' => 'separator',
                    'depends' => [
                        ['link_articles', '=', '1'],
                        ['all_articles_btn_type', '=', 'link'],
                    ],
                ],

                'all_articles_btn_link_status' => [
                    'type' => 'buttons',
                    'std' => 'normal',
                    'values' => [
                        ['label' => 'Normal', 'value' => 'normal'],
                        ['label' => 'Hover', 'value' => 'hover'],
                    ],
                    'tabs' => true,
                    'depends' => [
                        ['link_articles', '=', '1'],
                        ['all_articles_btn_type', '=', 'link'],
                    ],
                ],

                'all_articles_btn_link_color' => [
                    'type' => 'color',
                    'title' => Text::_('COM_SPPAGEBUILDER_GLOBAL_COLOR'),
                    'depends' => [
                        ['link_articles', '=', '1'],
                        ['all_articles_btn_type', '=', 'link'],
                        ['all_articles_btn_link_status', '!=', 'hover'],
                    ],
                ],

                'all_articles_btn_link_border_width' => [
                    'type' => 'slider',
                    'title' => Text::_('COM_SPPAGEBUILDER_GLOBAL_BORDER_WIDTH'),
                    'max' => 30,
                    'depends' => [
                        ['link_articles', '=', '1'],
                        ['all_articles_btn_type', '=', 'link'],
                        ['all_articles_btn_link_status', '!=', 'hover'],
                    ],
                ],

                'all_articles_btn_link_border_color' => [
                    'type' => 'color',
                    'title' => Text::_('COM_SPPAGEBUILDER_GLOBAL_BORDER_COLOR'),
                    'std' => '',
                    'depends' => [
                        ['link_articles', '=', '1'],
                        ['all_articles_btn_type', '=', 'link'],
                        ['all_articles_btn_link_status', '!=', 'hover'],
                    ],
                ],

                //Link Hover
                'all_articles_btn_link_hover_color' => [
                    'type' => 'color',
                    'title' => Text::_('COM_SPPAGEBUILDER_GLOBAL_TEXT_COLOR'),
                    'std' => '',
                    'depends' => [
                        ['link_articles', '=', '1'],
                        ['all_articles_btn_type', '=', 'link'],
                        ['all_articles_btn_link_status', '=', 'hover'],
                    ],
                ],

                'all_articles_btn_link_border_hover_color' => [
                    'type' => 'color',
                    'title' => Text::_('COM_SPPAGEBUILDER_GLOBAL_BORDER_COLOR'),
                    'std' => '',
                    'depends' => [
                        ['link_articles', '=', '1'],
                        ['all_articles_btn_type', '=', 'link'],
                        ['all_articles_btn_link_status', '=', 'hover'],
                    ],
                ],
            ],
        ],

        'title' => [
            'title' => Text::_('COM_SPPAGEBUILDER_GLOBAL_TITLE'),
            'fields' => [
                'title' => [
                    'type' => 'text',
                    'title' => Text::_('COM_SPPAGEBUILDER_ADDON_TITLE'),
                    'desc' => Text::_('COM_SPPAGEBUILDER_ADDON_TITLE_DESC'),
                ],

                'heading_selector' => [
                    'type' => 'headings',
                    'title' => Text::_('COM_SPPAGEBUILDER_ADDON_HEADINGS'),
                    'desc' => Text::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_DESC'),
                    'std' => 'h3',
                ],

                'title_typography' => [
                    'type' => 'typography',
                    'title' => Text::_('COM_SPPAGEBUILDER_GLOBAL_TYPOGRAPHY'),
                    'fallbacks' => [
                        'font' => 'font_family',
                        'size' => 'title_fontsize',
                        'line_height' => 'title_lineheight',
                        'letter_spacing' => 'title_letterspace',
                        'uppercase' => 'title_font_style.uppercase',
                        'italic' => 'title_font_style.italic',
                        'underline' => 'title_font_style.underline',
                        'weight' => 'title_font_style.weight',
                    ],
                ],

                'title_text_color' => [
                    'type' => 'color',
                    'title' => Text::_('COM_SPPAGEBUILDER_GLOBAL_COLOR'),
                ],

                'title_margin_separator' => [
                    'type' => 'separator',
                ],

                'title_margin_top' => [
                    'type' => 'slider',
                    'title' => Text::_('COM_SPPAGEBUILDER_GLOBAL_MARGIN_TOP'),
                    'max' => 400,
                    'responsive' => true,
                ],

                'title_margin_bottom' => [
                    'type' => 'slider',
                    'title' => Text::_('COM_SPPAGEBUILDER_GLOBAL_MARGIN_BOTTOM'),
                    'max' => 400,
                    'responsive' => true,
                ],
            ],
        ],
    ],
]);