NOX-ROOT-MARAZ Manager v2
PHP 8+ Secure
/
home
/
xiedrke
/
malino
/
wp-content
/
plugins
/
trendz-pro
/
modules
/
breadcrumb
/
Name
Size
Perms
Actions
📁 assets
-
0755
Chmod
|
Delete
📁 customizer
-
0755
Chmod
|
Delete
📁 metabox
-
0755
Chmod
|
Delete
📁 templates
-
0755
Chmod
|
Delete
📄 index.php
944 B
0644
Edit
|
Chmod
|
Delete
Editing: index.php
<?php if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } if( !class_exists( 'TrendzProBreadcrumb' ) ) { class TrendzProBreadcrumb { private static $_instance = null; public static function instance() { if ( is_null( self::$_instance ) ) { self::$_instance = new self(); } return self::$_instance; } function __construct() { $this->load_modules(); $this->load_frontend(); } function load_modules() { include_once TRENDZ_PRO_DIR_PATH.'modules/breadcrumb/customizer/index.php'; include_once TRENDZ_PRO_DIR_PATH.'modules/breadcrumb/metabox/index.php'; } function load_frontend() { include_once TRENDZ_PRO_DIR_PATH.'modules/breadcrumb/templates/index.php'; } } } TrendzProBreadcrumb::instance();
Cancel