Files
Jacek Pyziak 6cc26c0ed2 Add Creative Elements templates and update index files
- Introduced new templates for catalog, checkout, contact, and error pages.
- Implemented caching headers and redirection in index.php files across various directories.
- Enhanced product and layout templates for better integration with Creative Elements.
- Added backoffice header styles and scripts for improved UI/UX in the admin panel.
2025-07-01 00:56:07 +02:00

78 lines
1.8 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 raw HTML control.
*
* A base control for creating raw HTML control. Displays HTML markup between
* controls in the panel.
*
* @since 1.0.0
*/
class ControlRawHtml extends BaseUIControl
{
/**
* Get raw html control type.
*
* Retrieve the control type, in this case `raw_html`.
*
* @since 1.0.0
* @access public
*
* @return string Control type.
*/
public function getType()
{
return 'raw_html';
}
/**
* Render raw html 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()
{
?>
<# if ( data.label ) { #>
<span class="elementor-control-title">{{{ data.label }}}</span>
<# } #>
<div class="elementor-control-raw-html {{ data.content_classes }}">{{{ data.raw }}}</div>
<?php
}
/**
* Get raw html control default settings.
*
* Retrieve the default settings of the raw html control. Used to return the
* default settings while initializing the raw html control.
*
* @since 1.0.0
* @access protected
*
* @return array Control default settings.
*/
protected function getDefaultSettings()
{
return [
'raw' => '',
'content_classes' => '',
];
}
}