HEX
Server: Apache
System: Linux sxb1plzcpnl440011.prod.sxb1.secureserver.net 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
User: xfp2mtarcm67 (7705020)
PHP: 7.3.33
Disabled: NONE
Upload Files
File: //proc/thread-self/cwd/wp-content/plugins/addons-for-elementor/includes/base/widget-base.php
<?php

namespace LivemeshAddons\Widgets;

use Elementor\Widget_Base;

if (!defined('ABSPATH')) {
    exit; // Exit if accessed directly.
}

/**
 * Elementor widget base.
 *
 * An abstract class to register new Elementor widgets for Livemesh Addons. It extended the
 * `Widget_Base` class from Elementor to inherit its properties.
 *
 * This abstract class must be extended in order to register new widgets.
 *
 * @since 6.2
 * @abstract
 */
abstract class LAE_Widget_Base extends Widget_Base {

    /**
     * Parse text editor.
     *
     * Parses the content from rich text editor with shortcodes, oEmbed and
     * filtered data.
     *
     * @param string $content Text editor content.
     *
     * @return string Parsed content.
     * @since 6.2
     * @access public
     *
     */
    public function parse_text_editor($content) {

        return parent::parse_text_editor($content);
    }
}