Files
2025-07-13 11:19:53 +02:00

79 lines
1.7 KiB
PHP

<?php
/**
* Creative Elements - live Theme & Page Builder
*
* @author WebshopWorks, Elementor
* @copyright 2019-2022 WebshopWorks.com & Elementor.com
* @license https://www.gnu.org/licenses/gpl-3.0.html
*/
namespace CE;
defined('_PS_VERSION_') or die;
/**
* Elementor tab control.
*
* A base control for creating tab control. Displays a tab header for a set of
* controls.
*
* Note: Do not use it directly, instead use: `$widget->startControlsTab()`
* and in the end `$widget->endControlsTab()`.
*
* @since 1.0.0
*/
class ControlTab extends BaseUIControl
{
/**
* Get tab control type.
*
* Retrieve the control type, in this case `tab`.
*
* @since 1.0.0
* @access public
*
* @return string Control type.
*/
public function getType()
{
return 'tab';
}
/**
* Render tab control output in the editor.
*
* Used to generate the control HTML in the editor using Underscore JS
* template. The variables for the class are available using `data` JS
* object.
*
* @since 1.0.0
* @access public
*/
public function contentTemplate()
{
?>
<div class="elementor-panel-tab-heading">
{{{ data.label }}}
</div>
<?php
}
/**
* Get tab control default settings.
*
* Retrieve the default settings of the tab control. Used to return the
* default settings while initializing the tab control.
*
* @since 1.0.0
* @access protected
*
* @return array Control default settings.
*/
protected function getDefaultSettings()
{
return [
'separator' => 'none',
];
}
}