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.137.198.239
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 /
anonmags.com /
wp-content /
plugins /
jnews-weather /
[ HOME SHELL ]
Name
Size
Permission
Action
assets
[ DIR ]
drwxr-xr-x
languages
[ DIR ]
drwxr-xr-x
class.jnews-weather-shortcode....
8.17
KB
-rw-r--r--
class.jnews-weather-topbar.php
6.21
KB
-rw-r--r--
class.jnews-weather-widget.php
14.49
KB
-rw-r--r--
class.jnews-weather.php
27.76
KB
-rw-r--r--
global-weather-option.php
7.72
KB
-rw-r--r--
header-weather-option.php
14.96
KB
-rw-r--r--
jnews-weather.php
4.1
KB
-rw-r--r--
readme.txt
1.5
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : jnews-weather.php
<?php /* Plugin Name: JNews - Weather Plugin URI: http://jegtheme.com/ Description: Weather Forecast Plugin for JNews Themes Version: 10.0.2 Author: Jegtheme Author URI: http://jegtheme.com License: GPL2 */ defined( 'JNEWS_WEATHER' ) or define( 'JNEWS_WEATHER', 'jnews-weather' ); defined( 'JNEWS_WEATHER_VERSION' ) or define( 'JNEWS_WEATHER_VERSION', '10.0.2' ); defined( 'JNEWS_WEATHER_URL' ) or define( 'JNEWS_WEATHER_URL', plugins_url( 'jnews-weather' ) ); defined( 'JNEWS_WEATHER_FILE' ) or define( 'JNEWS_WEATHER_FILE', __FILE__ ); defined( 'JNEWS_WEATHER_DIR' ) or define( 'JNEWS_WEATHER_DIR', plugin_dir_path( __FILE__ ) ); global $pagenow; /** * Get JNews option * * @param array $setting * @param mixed $default * * @return mixed */ if ( ! function_exists( 'jnews_get_option' ) ) { function jnews_get_option( $setting, $default = null ) { $options = get_option( 'jnews_option', array() ); $value = $default; if ( isset( $options[ $setting ] ) ) { $value = $options[ $setting ]; } return $value; } } if ( ! function_exists( 'is_elementor_editor' ) ) { /** * Check if the current page is elementor editor */ function is_elementor_editor() { return is_admin() && ( isset( $_GET['action'] ) && sanitize_text_field( $_GET['action'] ) === 'elementor' ); } } /** * Load Plugin Option */ add_action( 'jeg_register_customizer_option', 'jnews_weather_customizer_option' ); if ( ! function_exists( 'jnews_weather_customizer_option' ) ) { function jnews_weather_customizer_option() { if ( class_exists( 'Jeg\Customizer\Customizer' ) ) { $customizer = Jeg\Customizer\Customizer::get_instance(); $global_weather_section = array( 'id' => 'jnews_global_weather_section', 'title' => esc_html__( 'Weather Setting', 'jnews-weather' ), 'panel' => 'jnews_global_panel', 'priority' => 252, 'type' => 'jnews-lazy-section', ); $header_weather_section = array( 'id' => 'jnews_header_weather_section', 'title' => esc_html__( 'Header - Weather Setting', 'jnews-weather' ), 'panel' => 'jnews_header', 'priority' => 252, 'type' => 'jnews-lazy-section', ); $customizer->add_section( $global_weather_section ); $customizer->add_section( $header_weather_section ); } } } add_filter( 'jeg_register_lazy_section', 'jnews_weather_lazy_section' ); if ( ! function_exists( 'jnews_weather_lazy_section' ) ) { function jnews_weather_lazy_section( $result ) { $result['jnews_global_weather_section'][] = JNEWS_WEATHER_DIR . 'global-weather-option.php'; $result['jnews_header_weather_section'][] = JNEWS_WEATHER_DIR . 'header-weather-option.php'; return $result; } } /** * Load Weather Class */ add_action( 'plugins_loaded', 'jnews_weather' ); if ( ! function_exists( 'jnews_weather' ) ) { function jnews_weather() { require_once 'class.jnews-weather.php'; JNews_Weather::getInstance(); } } /** * Load Top Bar Weather */ if ( ! is_admin() ) { add_action( 'plugins_loaded', 'header_topbar_weather' ); if ( ! function_exists( 'header_topbar_weather' ) ) { function header_topbar_weather() { require_once 'class.jnews-weather-topbar.php'; JNews_Weather_TopBar::getInstance(); } } } /** * Register Weather Widget */ if ( 'widgets.php' === $pagenow || ! is_admin() || is_elementor_editor() || ( defined( 'DOING_AJAX' ) && 'DOING_AJAX' ) ) { add_action( 'widgets_init', 'register_weather_widget' ); if ( ! function_exists( 'register_weather_widget' ) ) { function register_weather_widget() { if ( ! defined( 'JNEWS_THEME_URL' ) ) { return; } require_once 'class.jnews-weather-widget.php'; register_widget( 'JNews_Weather_Widget' ); } } } /** * Load Shortcode Class */ add_action( 'plugins_loaded', 'jnews_weather_shortcode' ); if ( ! function_exists( 'jnews_weather_shortcode' ) ) { function jnews_weather_shortcode() { require_once 'class.jnews-weather-shortcode.php'; JNews_Weather_Shortcode::getInstance(); } } /** * Load Text Domain */ function jnews_weather_load_textdomain() { load_plugin_textdomain( JNEWS_WEATHER, false, basename( __DIR__ ) . '/languages/' ); } jnews_weather_load_textdomain();
Close