PATH:
home
/
letacommog
/
letacommunication
/
wp-content
/
plugins
/
all-in-one-wp-security-and-firewall
/
classes
<?php if(!defined('ABSPATH')){ exit;//Exit if accessed directly } class AIOWPSecurity_Config{ var $configs; var $message_stack; static $_this; function __construct(){ $this->message_stack = new stdClass(); } function load_config(){ $this->configs = get_option('aio_wp_security_configs'); } function get_value($key){ return isset($this->configs[$key])?$this->configs[$key] : ''; } function set_value($key, $value){ $this->configs[$key] = $value; } function add_value($key, $value){ if(!is_array($this->configs)){$this->configs = array();} if (array_key_exists($key, $this->configs)){ //Don't update the value for this key } else{//It is safe to update the value for this key $this->configs[$key] = $value; } } function save_config(){ update_option('aio_wp_security_configs', $this->configs); } function get_stacked_message($key){ if(isset($this->message_stack->{$key})) return $this->message_stack->{$key}; return ""; } function set_stacked_message($key,$value){ $this->message_stack->{$key} = $value; } static function get_instance(){ if(empty(self::$_this)){ self::$_this = new AIOWPSecurity_Config(); self::$_this->load_config(); return self::$_this; } return self::$_this; } }
[+]
..
[-] wp-security-utility.php
[edit]
[-] wp-security-general-init-tasks.php
[edit]
[-] index.html
[edit]
[-] wp-security-user-registration.php
[edit]
[-] wp-security-installer.php
[edit]
[-] wp-security-file-scan.php
[edit]
[-] wp-security-wp-loaded-tasks.php
[edit]
[-] wp-security-config.php
[edit]
[-] wp-security-bot-protection.php
[edit]
[-] wp-security-backup.php
[edit]
[-] wp-security-wp-footer-content.php
[edit]
[-] wp-security-blocking.php
[edit]
[-] wp-security-captcha.php
[edit]
[+]
grade-system
[-] index.php
[edit]
[-] wp-security-deactivation-tasks.php
[edit]
[-] wp-security-utility-file.php
[edit]
[-] wp-security-cronjob-handler.php
[edit]
[-] wp-security-utility-htaccess.php
[edit]
[-] wp-security-process-renamed-login-page.php
[edit]
[-] wp-security-configure-settings.php
[edit]
[-] wp-security-user-login.php
[edit]
[-] wp-security-utility-ip-address.php
[edit]
[-] wp-security-debug-logger.php
[edit]