NOX-ROOT-MARAZ Manager v2
PHP 8+ Secure
/
home
/
xiedrke
/
malino
/
wp-content
/
plugins
/
trendz-pro
/
modules
/
hooks
/
Name
Size
Perms
Actions
📁 customizer
-
0755
Chmod
|
Delete
📄 index.php
666 B
0644
Edit
|
Chmod
|
Delete
Editing: index.php
<?php if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } if( !class_exists( 'TrendzProHooks' ) ) { class TrendzProHooks { 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(); } function load_modules() { include_once TRENDZ_PRO_DIR_PATH.'modules/hooks/customizer/index.php'; } } } TrendzProHooks::instance();
Cancel