File "widget-base.php"

Full path: /home/kosmetik/public_html/wp-content/plugins/anywhere-elementor-pro.2.15.5/includes/base/widget-base.php
File size: 276 B
MIME-type: text/x-php
Charset: utf-8

Download   Open   Edit   Advanced Editor   Back

<?php

namespace Aepro\Base;


use Aepro\Aepro;

abstract class Widget_Base extends \Elementor\Widget_Base{

	public function is_enabled(){

		return true;

	}

	public function get_custom_help_url() {
		return Aepro::$_helper->get_help_url_prefix() . $this->get_name();
	}

}