Linux hkvL61zh9Vexzf 3.10.0-957.1.3.el7.x86_64 #1 SMP Thu Nov 29 14:49:43 UTC 2018 x86_64 Path : /www/wwwroot/fashion-kingdom.com/wp-content/plugins/siteguard/classes/ |
Current File : /www/wwwroot/fashion-kingdom.com/wp-content/plugins/siteguard/classes/siteguard-config.php |
<?php class SiteGuard_Config { protected $config; function __construct() { $this->config = get_option( 'siteguard_config' ); } function set( $key, $value ) { $this->config[ $key ] = $value; } function get( $key ) { return isset( $this->config[ $key ] ) ? $this->config[ $key ] : ''; } function update() { update_option( 'siteguard_config', $this->config ); } }