uawdijnntqw1x1x1
IP : 216.73.216.147
Hostname : webm041.cluster026.gra.hosting.ovh.net
Kernel : Linux webm041.cluster026.gra.hosting.ovh.net 5.15.167-ovh-vps-grsec-zfs-classid #1 SMP Tue Sep 17 08:14:20 UTC 2024 x86_64
Disable Function : _dyuweyrj4,_dyuweyrj4r,dl
OS : Linux
PATH:
/
home
/
.
/
monikamovk
/
.
/
www
/
.
/
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 ); } }
/home/./monikamovk/./www/./wp-content/plugins/nextgen-gallery/src/./Settings/GlobalSettings.php