NOX-ROOT-MARAZ Manager v2
PHP 8+ Secure
/
home
/
xiedrke
/
malino
/
wp-content
/
plugins
/
trendz-plus
/
modules
/
footer
/
Name
Size
Perms
Actions
📁 customizer
-
0755
Chmod
|
Delete
📁 elementor
-
0755
Chmod
|
Delete
📁 layouts
-
0755
Chmod
|
Delete
📄 index.php
1,014 B
0644
Edit
|
Chmod
|
Delete
Editing: index.php
<?php if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } if( !class_exists( 'TrendzPlusFooter' ) ) { class TrendzPlusFooter { private static $_instance = null; public static function instance() { if ( is_null( self::$_instance ) ) { self::$_instance = new self(); } return self::$_instance; } function __construct() { $this->load_footer_layouts(); $this->load_modules(); } function load_footer_layouts() { foreach( glob( TRENDZ_PLUS_DIR_PATH. 'modules/footer/layouts/*/index.php' ) as $module ) { include_once $module; } } function load_modules() { include_once TRENDZ_PLUS_DIR_PATH.'modules/footer/customizer/index.php'; include_once TRENDZ_PLUS_DIR_PATH.'modules/footer/elementor/index.php'; } } } TrendzPlusFooter::instance();
Cancel