PATH:
home
/
lab2454c
/
fcxpro.com
/
wp-content
/
plugins
/
custom-twitter-feeds
/
inc
/
Builder
/
Tabs
<?php /** * Customizer Tab * * * @since 2.0 */ namespace TwitterFeed\Builder\Tabs; use TwitterFeed\Builder\CTF_Feed_Builder; if(!defined('ABSPATH')) exit; class CTF_Settings_Tab{ /** * Get Customize Tab Sections * * * @since 2.0 * @access public * * @return array */ static function get_sections(){ return [ 'settings_feedtype_sources' => [ 'heading' => __( 'Sources', 'custom-twitter-feeds' ), 'icon' => 'article', 'controls' => self::get_settings_sources_controls() ], 'settings_filters' => [ 'heading' => __( 'Filters', 'custom-twitter-feeds' ), 'description' => __( 'Upgrade to Pro to show or hide tweets that meet a specific criteria, or are specified by an ID.', 'custom-twitter-feeds' ), 'proLabel' => true, 'checkExtensionPopup' => 'advancedFilters', 'icon' => 'filter', 'separator' => 'none', 'controls' => self::get_settings_filters_controls() ], 'empty_sections' => [ 'heading' => '', 'isHeader' => true, ], 'settings_advanced' => [ 'heading' => __( 'Advanced', 'custom-twitter-feeds' ), 'icon' => 'cog', 'separator' => 'none', 'controls' => self::get_settings_advanced_controls() ] ]; } /** * Get Settings Tab Feed Type Sources * @since 2.0 * @return array */ static function get_settings_sources_controls(){ return [ [ 'type' => 'customview', 'viewId' => 'sources' ], ]; } /** * Get Settings Tab Filters Section * @since 2.0 * @return array */ static function get_settings_filters_controls(){ return [ [ 'type' => 'separator', 'top' => 30, 'bottom' => 10, ], [ 'type' => 'switcher', 'id' => 'includeretweetss', 'label' => __( 'Include Retweets', 'custom-twitter-feeds' ), 'reverse' => 'true', 'stacked' => 'true', 'labelStrong' => 'true', 'checkExtensionDimmed' => 'advancedFilters', 'checkExtensionPopup' => 'advancedFilters', 'disabledInput' => true, 'options' => [ 'enabled' => true, 'disabled' => false ] ], [ 'type' => 'separator', 'top' => 10, 'bottom' => 10, ], [ 'type' => 'switcher', 'id' => 'includereplies', 'label' => __( 'Include Replies', 'custom-twitter-feeds' ), //'ajaxAction' => 'feedFlyPreview', 'checkExtensionDimmed' => 'advancedFilters', 'checkExtensionPopup' => 'advancedFilters', 'disabledInput' => true, 'reverse' => 'true', 'stacked' => 'true', 'labelStrong' => 'true', 'options' => [ 'enabled' => true, 'disabled' => false ] ], [ 'type' => 'separator', 'top' => 10, 'bottom' => 10, ], [ 'type' => 'textarea', 'id' => 'includewords', 'checkExtensionDimmed' => 'advancedFilters', 'checkExtensionPopup' => 'advancedFilters', 'disabledInput' => true, 'heading' => __( 'Allowed Words', 'custom-twitter-feeds' ), 'placeholder' => __( 'Add words here to only show tweets containing these words', 'custom-twitter-feeds' ), 'tooltip' => __( 'Allowed Words', 'custom-twitter-feeds' ), 'labelStrong' => 'true', 'stacked' => 'true' ], [ 'type' => 'textarea', 'id' => 'excludewords', 'checkExtensionDimmed' => 'advancedFilters', 'checkExtensionPopup' => 'advancedFilters', 'disabledInput' => true, 'heading' => __( 'Blocked Words', 'custom-twitter-feeds' ), 'placeholder' => __( 'Add words here to only show tweets containing these words', 'custom-twitter-feeds' ), 'tooltip' => __( 'Blocked Words', 'custom-twitter-feeds' ), 'labelStrong' => 'true', 'stacked' => 'true' ], [ 'type' => 'select', 'id' => 'includeanyall', 'checkExtensionDimmed' => 'advancedFilters', 'checkExtensionPopup' => 'advancedFilters', 'disabledInput' => true, 'strongHeading' => 'false', 'stacked' => 'true', 'heading' => __( 'Show tweets that contain', 'custom-twitter-feeds' ), 'options' => [ 'any' => __( 'Any of the "Allowed words"', 'custom-twitter-feeds' ), 'all' => __( 'All of the "Allowed words"', 'custom-twitter-feeds' ), ] ], [ 'type' => 'select', 'id' => 'filterandor', 'checkExtensionDimmed' => 'advancedFilters', 'checkExtensionPopup' => 'advancedFilters', 'disabledInput' => true, 'layout' => 'half', 'strongHeading' => 'false', 'stacked' => 'true', 'reverse' => 'true', 'heading' => __( 'do not contain', 'custom-twitter-feeds' ), 'options' => [ 'and' => __( 'and', 'custom-twitter-feeds' ), 'or' => __( 'or', 'custom-twitter-feeds' ), ] ], [ 'type' => 'select', 'id' => 'excludeanyall', 'checkExtensionDimmed' => 'advancedFilters', 'checkExtensionPopup' => 'advancedFilters', 'disabledInput' => true, 'strongHeading' => 'false', 'stacked' => 'true', 'options' => [ 'any' => __( 'Any of the "Blocked words"', 'custom-twitter-feeds' ), 'all' => __( 'All of the "Blocked words"', 'custom-twitter-feeds' ), ] ], [ 'type' => 'separator', 'top' => 15, 'bottom' => 15, ], [ 'type' => 'textarea', 'id' => 'remove_by_id', 'checkExtensionDimmed' => 'advancedFilters', 'checkExtensionPopup' => 'advancedFilters', 'disabledInput' => true, 'heading' => __( 'Hide specific tweets', 'custom-twitter-feeds' ), 'tooltip' => __( 'Hide specific tweets', 'custom-twitter-feeds' ), 'labelStrong' => 'true', 'stacked' => 'true' ], ]; } /** * Get Settings Tab Advanced Section * @since 2.0 * @return array */ static function get_settings_advanced_controls(){ return [ [ 'type' => 'separator', 'top' => 30, 'bottom' => 10, ], [ 'type' => 'select', 'id' => 'multiplier', 'strongHeading' => 'true', 'heading' => __( 'Tweet Multiplier', 'custom-twitter-feeds' ), 'tooltip' => __( 'If your feed excludes reply tweets (this is automatic in hashtag/search feeds), the correct number of tweets may not show up. Increasing this number will increase the number of tweets retrieved but will also increase the load time for the feed as well.', 'custom-twitter-feeds' ), 'options' => [ '1.25' => '1.25', '2' => '2', '3' => '3', ] ], [ 'type' => 'separator', 'top' => 20, 'bottom' => 10, ], [ 'type' => 'textarea', 'heading' => __( 'Add Custom CSS Class', 'custom-twitter-feeds' ), 'id' => 'class', 'strongHeading' => 'true', 'tooltip' => __( 'Add one or more CSS classes, example: class1, class2', 'custom-twitter-feeds' ), 'placeholder' => __( 'Add one or more CSS classes, example: class1, class2', 'custom-twitter-feeds' ), ], ]; } }
[-] CTF_Settings_Tab.php
[edit]
[-] CTF_Styling_Tab.php
[edit]
[+]
..
[-] CTF_Customize_Tab.php
[edit]
[-] CTF_Builder_Customizer_Tab.php
[edit]