Linux sothorn202 5.15.0-164-generic #174-Ubuntu SMP Fri Nov 14 20:25:16 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 202.28.82.202 | : 216.73.216.9
pkexec version 0.105
Cant Read [ /etc/named.conf ]
iqtd
RED EYES BYPASS SHELL!
Terminal
Auto Root
Adminer
Backdoor Destroyer
Kernel Exploit
Lock Shell
Lock File
Create User
+ Create Folder
+ Create File
/
home /
human /
wp-content /
themes /
medihealth /
include /
[ HOME SHELL ]
NAME
SIZE
PERMISSION
ACTION
custom-edition
[ DIR ]
drwxr-xr-x
customizer
[ DIR ]
drwxr-xr-x
meta
[ DIR ]
drwxr-xr-x
widget
[ DIR ]
drwxr-xr-x
custom-header.php
1.7
KB
-rwxr-xr-x
header.php
5.32
KB
-rwxr-xr-x
medihealth-bootstrap-navwalker.php
4.67
KB
-rwxr-xr-x
medihealth-theme-function.php
385
B
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : medihealth-bootstrap-navwalker.php
<?php /** * Primary menu walker. * * @package Galaxis */ /** * This class outputs custom walker for primary menu. */ class Medihealth_Bootstrap_Navwalker extends Walker_Nav_Menu { /** * Starts the element output. * * @param string $output Used to append additional content (passed by reference). * @param WP_Post $item Menu item data object. * @param int $depth Depth of menu item. Used for padding. * @param stdClass $args An object of wp_nav_menu() arguments. * @param int $id Current item ID. */ public function start_el( &$output, $item, $depth = 0, $args = array(), $id = 0 ) { if ( isset( $args->item_spacing ) && 'discard' === $args->item_spacing ) { $t = ''; $n = ''; } else { $t = "\t"; $n = "\n"; } $indent = ( $depth ) ? str_repeat( $t, $depth ) : ''; $classes = empty( $item->classes ) ? array() : (array) $item->classes; /** * Filters the arguments for a single nav menu item. * * WP 4.4.0 * * @param stdClass $args An object of wp_nav_menu() arguments. * @param WP_Post $item Menu item data object. * @param int $depth Depth of menu item. Used for padding. */ $args = apply_filters( 'medihealth_nav_menu_item_args', $args, $item, $depth ); // Add some additional default classes to the item. $classes[] = 'menu-item-' . $item->ID; $classes[] = 'nav-item'; // Allow filtering the classes. $classes = apply_filters( 'medihealth_nav_menu_css_class', array_filter( $classes ), $item, $args, $depth ); // Form a string of classes in format: class="class_names". $class_names = join( ' ', $classes ); $class_names = $class_names ? ' class="' . esc_attr( $class_names ) . '"' : ''; /** * Filters the ID applied to a menu item's list item element. * * @since WP 3.0.1 * @since WP 4.1.0 The `$depth` parameter was added. * * @param string $menu_id The ID that is applied to the menu item's `<li>` element. * @param WP_Post $item The current menu item. * @param stdClass $args An object of wp_nav_menu() arguments. * @param int $depth Depth of menu item. Used for padding. */ $id = apply_filters( 'medihealth_nav_menu_item_id', 'menu-item-' . $item->ID, $item, $args, $depth ); $id = $id ? ' id="' . esc_attr( $id ) . '"' : ''; $output .= $indent . '<li itemscope="itemscope" itemtype="https://www.schema.org/SiteNavigationElement"' . $id . $class_names . '>'; // Initialize array for holding the $atts for the link item. $atts = array(); /* * Set title from item to the $atts array - if title is empty then * default to item title. */ if ( empty( $item->attr_title ) ) { $atts['title'] = ! empty( $item->title ) ? wp_strip_all_tags( $item->title ) : ''; } else { $atts['title'] = $item->attr_title; } $atts['target'] = ! empty( $item->target ) ? $item->target : ''; $atts['rel'] = ! empty( $item->xfn ) ? $item->xfn : ''; $atts['href'] = ! empty( $item->url ) ? $item->url : '#'; // If item has_children add atts to <a>. if ( $args->walker->has_children ) { $atts['aria-haspopup'] = 'true'; $atts['aria-expanded'] = 'false'; $atts['id'] = 'menu-item-dropdown-' . $item->ID; } // Allow filtering of the $atts array before using it. $atts = apply_filters( 'medihealth_nav_menu_link_attributes', $atts, $item, $args, $depth ); // Build a string of html containing all the atts for the item. $attributes = ''; foreach ( $atts as $attr => $value ) { if ( ! empty( $value ) ) { $value = ( 'href' === $attr ) ? esc_url( $value ) : esc_attr( $value ); $attributes .= ' ' . $attr . '="' . $value . '"'; } } $item_output = ( $args->before ); $item_output .= '<a' . $attributes . '>'; $item_output .= $args->link_before . apply_filters( 'medihealth_the_title', $item->title, $item->ID ) . $args->link_after; $item_output .= '</a>'; if ( $args->walker->has_children ) { $item_output .= '<button type="button" class="menu-button menu-arrow-button">'; $item_output .= ( /* translators: %s: Menu link title. */ '<span class="screen-reader-text menu-arrow-button-show">' . sprintf( esc_html__( 'Show %s submenu', 'medihealth' ), $item->title ) . '</span>' . /* translators: %s: Menu link title. */ '<span aria-hidden="true" class="screen-reader-text menu-arrow-button-hide">' . sprintf( esc_html__( 'Hide %s submenu', 'medihealth' ), $item->title ) . '</span>' ); $item_output .= ( '<i class="sub-menu-arrow" aria-hidden="true">' . '<i class="fas fa-angle-down"></i>' . '</i>' ); $item_output .= '</button>'; } $item_output .= $args->after; $output .= apply_filters( 'medihealth_walker_nav_menu_start_el', $item_output, $item, $depth, $args ); } }
Close