Files
szkoleniauryzaj.pl/wp-content/plugins/youtube-feed-pro/inc/Builder/Controls/SB_Heading_Control.php
2026-04-26 23:47:49 +02:00

40 lines
545 B
PHP

<?php
/**
* Customizer Builder
* Heading Text Control
*
* @since 2.0
*/
namespace SmashBalloon\YouTubeFeed\Builder\Controls;
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
class SB_Heading_Control extends SB_Controls_Base {
/**
* Get control type.
*
* Getting the Control Type
*
* @since 2.0
* @access public
*
* @return string
*/
public function get_type() {
return 'heading';
}
/**
* Output Control
*
*
* @since 2.0
* @access public
*/
public function get_control_output( $controlEditingTypeModel ) {}
}