PluginProbe ʕ •ᴥ•ʔ
Custom Twitter Feeds – A Tweets Widget or X Feed Widget / 2.7.0
Custom Twitter Feeds – A Tweets Widget or X Feed Widget v2.7.0
2.8.0 2.7.0 2.6.1 2.6.0 1.0 1.0.1 1.1 1.1.1 1.1.2 1.1.3 1.1.4 1.1.5 1.1.6 1.1.7 1.1.8 1.2 1.2.1 1.2.10 1.2.11 1.2.2 1.2.3 1.2.4 1.2.5 1.2.6 1.2.7 1.2.8 1.2.9 1.3 1.4 1.4.1 1.5 1.5.1 1.6 1.6.1 1.7 1.8 1.8.1 1.8.2 1.8.3 1.8.4 2.0 2.0.1 2.0.2 2.0.3 2.0.4 2.0.5 2.0.6 2.0.7 2.1 2.1.1 2.1.2 2.2 2.2.1 2.2.2 2.2.3 2.2.4 2.2.5 2.3.0 2.3.1 2.5.4 2.5.5 trunk
custom-twitter-feeds / inc / Builder / Controls / SB_Heading_Control.php
custom-twitter-feeds / inc / Builder / Controls Last commit date
SB_Actionbutton_Control.php 1 month ago SB_Checkbox_Control.php 1 month ago SB_Checkboxlist_Control.php 1 month ago SB_Checkboxsection_Control.php 1 month ago SB_Coloroverride_Control.php 1 month ago SB_Colorpicker_Control.php 1 month ago SB_Controls_Base.php 1 month ago SB_Customview_Control.php 1 month ago SB_Datepicker_Control.php 1 month ago SB_Heading_Control.php 1 month ago SB_Hidden_Control.php 1 month ago SB_Imagechooser_Control.php 1 month ago SB_Notice_Control.php 1 month ago SB_Number_Control.php 1 month ago SB_Select_Control.php 1 month ago SB_Separator_Control.php 1 month ago SB_Switcher_Control.php 1 month ago SB_Text_Control.php 1 month ago SB_Textarea_Control.php 1 month ago SB_Toggle_Control.php 1 month ago SB_Togglebutton_Control.php 1 month ago SB_Toggleset_Control.php 1 month ago
SB_Heading_Control.php
39 lines
1 <?php
2 /**
3 * Customizer Builder
4 * Heading Text Control
5 *
6 * @since 2.0
7 */
8 namespace TwitterFeed\Builder\Controls;
9
10 if(!defined('ABSPATH')) exit;
11
12 class SB_Heading_Control extends SB_Controls_Base{
13
14 /**
15 * Get control type.
16 *
17 * Getting the Control Type
18 *
19 * @since 2.0
20 * @access public
21 *
22 * @return string
23 */
24 public function get_type(){
25 return 'heading';
26 }
27
28 /**
29 * Output Control
30 *
31 *
32 * @since 2.0
33 * @access public
34 *
35 * @return HTML
36 */
37 public function get_control_output($controlEditingTypeModel){}
38
39 }