| Server IP : 37.9.174.138 / Your IP : 216.73.216.117 Web Server : Apache System : Linux vps6.backend.sk 6.12.100+deb13-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.12.100-1 (2026-07-30) x86_64 User : ftpuser ( 1001) PHP Version : 8.4.24 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /var/www/html/lukasreistetter.sk/web/wp-content/plugins/move-addons/base/ |
Upload File : |
<?php
namespace MoveAddons\Elementor\Widget;
use Elementor\Widget_Base;
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
abstract class Base extends Widget_Base {
/**
* [get_categories] Get categories
* @since 0.0.1
* @return [array] Widget categories.
*/
public function get_categories() {
return [ 'move_addon' ];
}
/**
* [get_custom_help_url] Get categories
* @since 0.0.1
* @return [URL] Help URL.
*/
public function get_custom_help_url() {
$str = substr( $this->get_name(), 0, 4 );
if( $str == 'move' ){
$url_slug = substr( $this->get_name(), 5 ).'-widget';
}else{
$url_slug = $this->get_name().'-widget';
}
return 'https://doc.moveaddons.com/'.$url_slug;
}
}