%PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
| Server IP : 54.36.91.62 / Your IP : 216.73.217.162 Web Server : Apache System : Linux webm002.cluster127.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 User : wellingtpa ( 97533) PHP Version : 7.4.33 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/wellingtpa/wellingtonrecord/wp-content/plugins/kata-plus/includes/menu/ |
Upload File : |
<?php
/**
* Menu Class.
*
* @author ClimaxThemes
* @package Kata Plus
* @since 1.0.0
*/
// Don't load directly.
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
if ( ! class_exists( 'Kata_Plus_Menu' ) ) {
class Kata_Plus_Menu {
/**
* The directory of the file.
*
* @access public
* @var string
*/
public static $dir;
/**
* The directory of the file.
*
* @access public
* @var string
*/
public static $ptdir;
/**
* The url of the file.
*
* @access public
* @var string
*/
public static $url;
/**
* Instance of this class.
*
* @since 1.0.0
* @access public
* @var Kata_Plus_Menu
*/
public static $instance;
/**
* Provides access to a single instance of a module using the singleton pattern.
*
* @since 1.0.0
* @return object
*/
public static function get_instance() {
if ( self::$instance === null ) {
self::$instance = new self();
}
return self::$instance;
}
/**
* Constructor.
*
* @since 1.0.0
*/
public function __construct() {
$this->definitions();
$this->dependencies();
}
/**
* Global definitions.
*
* @since 1.0.0
*/
public function definitions() {
self::$dir = Kata_Plus::$dir . 'includes/menu/';
self::$ptdir = Kata_Plus::$dir . 'includes/post-types/';
self::$url = Kata_Plus::$url . 'includes/menu/';
}
/**
* Load dependencies.
*
* @since 1.0.0
*/
public function dependencies() {
Kata_Plus_Autoloader::load( self::$dir . 'inc', 'walker-nav-menu' );
Kata_Plus_Autoloader::load( self::$dir . 'inc/menu-icon', 'menu-icon' );
}
}
Kata_Plus_Menu::get_instance();
}