86 lines
2.1 KiB
PHP
86 lines
2.1 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 button control.
|
|
*
|
|
* A base control for creating a button control. Displays a button that can
|
|
* trigger an event.
|
|
*
|
|
* @since 1.9.0
|
|
*/
|
|
class ControlButton extends BaseUIControl
|
|
{
|
|
/**
|
|
* Get button control type.
|
|
*
|
|
* Retrieve the control type, in this case `button`.
|
|
*
|
|
* @since 1.9.0
|
|
* @access public
|
|
*
|
|
* @return string Control type.
|
|
*/
|
|
public function getType()
|
|
{
|
|
return 'button';
|
|
}
|
|
|
|
/**
|
|
* Get button control default settings.
|
|
*
|
|
* Retrieve the default settings of the button control. Used to
|
|
* return the default settings while initializing the button
|
|
* control.
|
|
*
|
|
* @since 1.9.0
|
|
* @access protected
|
|
*
|
|
* @return array Control default settings.
|
|
*/
|
|
protected function getDefaultSettings()
|
|
{
|
|
return [
|
|
'text' => '',
|
|
'event' => '',
|
|
'button_type' => 'default',
|
|
];
|
|
}
|
|
|
|
/**
|
|
* Render button 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.9.0
|
|
* @access public
|
|
*/
|
|
public function contentTemplate()
|
|
{
|
|
?>
|
|
<div class="elementor-control-field">
|
|
<label class="elementor-control-title">{{{ data.label }}}</label>
|
|
<div class="elementor-control-input-wrapper">
|
|
<button type="button" class="elementor-button elementor-button-{{{ data.button_type }}}"
|
|
data-event="{{{ data.event }}}">{{{ data.text }}}</button>
|
|
</div>
|
|
</div>
|
|
<# if ( data.description ) { #>
|
|
<div class="elementor-control-field-description">{{{ data.description }}}</div>
|
|
<# } #>
|
|
<?php
|
|
}
|
|
}
|