Linux sothorn202 5.15.0-161-generic #171-Ubuntu SMP Sat Oct 11 08:17:01 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 /
vw-landing-page /
inc /
[ HOME SHELL ]
NAME
SIZE
PERMISSION
ACTION
block-patterns
[ DIR ]
drwxr-xr-x
getstart
[ DIR ]
drwxr-xr-x
logo
[ DIR ]
drwxr-xr-x
tgm
[ DIR ]
drwxr-xr-x
themes-widgets
[ DIR ]
drwxr-xr-x
typography
[ DIR ]
drwxr-xr-x
custom-controls.php
4.38
KB
-rwxr-xr-x
custom-header.php
1.23
KB
-rwxr-xr-x
customizer.php
128.26
KB
-rwxr-xr-x
icon-picker.php
20.14
KB
-rwxr-xr-x
section-pro.php
1.36
KB
-rwxr-xr-x
template-tags.php
3.64
KB
-rwxr-xr-x
wptt-webfont-loader.php
16.86
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : custom-controls.php
<?php /** * VW Landing Page Customizer Custom Controls * */ if ( class_exists( 'WP_Customize_Control' ) ) { /** * Toggle Switch Custom Control * * @author Anthony Hortin <http://maddisondesigns.com> * @license http://www.gnu.org/licenses/gpl-2.0.html * @link https://github.com/maddisondesigns */ class VW_Landing_Page_Toggle_Switch_Custom_Control extends WP_Customize_Control { /** * The type of control being rendered */ public $type = 'toogle_switch'; /** * Enqueue our scripts and styles */ public function enqueue(){ wp_enqueue_style( 'vw_landing_page_custom_controls_css', trailingslashit( esc_url(get_template_directory_uri()) ) . 'assets/css/customizer.css', array(), '1.0', 'all' ); } /** * Render the control in the customizer */ public function render_content(){ ?> <div class="toggle-switch-control"> <div class="toggle-switch"> <input type="checkbox" id="<?php echo esc_attr($this->id); ?>" name="<?php echo esc_attr($this->id); ?>" class="toggle-switch-checkbox" value="<?php echo esc_attr( $this->value() ); ?>" <?php $this->link(); checked( $this->value() ); ?>> <label class="toggle-switch-label" for="<?php echo esc_attr( $this->id ); ?>"> <span class="toggle-switch-inner"></span> <span class="toggle-switch-switch"></span> </label> </div> <span class="customize-control-title"><?php echo esc_html( $this->label ); ?></span> <?php if( !empty( $this->description ) ) { ?> <span class="customize-control-description"><?php echo esc_html( $this->description ); ?></span> <?php } ?> </div> <?php } } // Image Toggle Radio Buttpon class VW_Landing_Page_Image_Radio_Control extends WP_Customize_Control { public function render_content() { if (empty($this->choices)) return; $name = '_customize-radio-' . $this->id; ?> <span class="customize-control-title"><?php echo esc_html($this->label); ?></span> <ul class="controls" id='vw-landing-page-img-container'> <?php foreach ($this->choices as $value => $label) : $class = ($this->value() == $value) ? 'vw-landing-page-radio-img-selected vw-landing-page-radio-img-img' : 'vw-landing-page-radio-img-img'; ?> <li style="display: inline;"> <label> <input <?php $this->link(); ?>style = 'display:none' type="radio" value="<?php echo esc_attr($value); ?>" name="<?php echo esc_attr($name); ?>" <?php $this->link(); checked($this->value(), $value); ?> /> <img src='<?php echo esc_url($label); ?>' class='<?php echo esc_attr($class); ?>' /> </label> </li> <?php endforeach; ?> </ul> <?php } } /** * Switch sanitization * * @param string Switch value * @return integer Sanitized value */ if ( ! function_exists( 'vw_landing_page_switch_sanitization' ) ) { function vw_landing_page_switch_sanitization( $input ) { if ( true === $input ) { return 1; } else { return 0; } } } // Reset Settings class VW_Landing_Page_Reset_Custom_Control extends WP_Customize_Control { public $type = 'reset_control'; public function render_content() { ?> <div class="reset-custom-control"> <span class="customize-reset-title"><?php echo esc_html( $this->label ); ?></span> <span class="reset-button"><?php echo esc_html_e('Reset', 'vw-landing-page'); ?></span> </div> <div id="myModal" class="modal kt-modal"> <div class="modal-content"> <span class="close">X</span> <h3><?php esc_html_e('Are you sure to reset the Changes ? ', 'vw-landing-page') ?></h3> <p><?php esc_html_e('After click on the reset button, it will reset the default settings and previous changes that you have done and the data will be lost.', 'vw-landing-page') ?></p> <p><?php esc_html_e('Please Refresh the customizer after reset the settings.', 'vw-landing-page') ?></p> <a href="javascript:location.reload();" class="refresh-btn" data-value="<?php echo esc_attr( $this->description ); ?>"><?php echo esc_html_e('RESET', 'vw-landing-page'); ?></a> </div> </div> <?php } } }
Close