Jacek Kowalski
2012-11-04 9b67b8b8e6559d78a3a00fe086879b5e428b4cda
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<?php
class database {
    static function init($numer, $modul) {
        if(ctype_digit($numer)) {
            $user = 'Gadu-Gadu://'.$numer.'@gadu-gadu.pl';
        }
        else
        {
            $user = 'IMified://'.strtr($numer, array('@' => '\\@')).'@userkey.imified.com';
        }
        
        $data = new BotSession($user);
        $data->setClass($modul);
        return $data;
    }
    
    static function add($numer, $modul, $name, $value) {
        $data = self::init($numer, $modul);
        
        return $data->__set($name, $value);
    }
    
    static function del($numer, $modul, $name) {
        $data = self::init($numer, $modul);
        
        return $data->__unset($name);
    }
    
    static function delAll($numer, $modul) {
        $data = self::init($numer, $modul);
        
        return $data->truncate($name, $value);
    }
    
    static function addArray($numer, $modul, $name_value) {
        $data = self::init($numer, $modul);
        
        return $data->push($name_value);
    }
    
    static function get($numer, $modul, $name) {
        $data = self::init($numer, $modul);
        
        return $data->__get($name);
    }
    
    static function getArray($numer, $modul) {
        $data = self::init($numer, $modul);
        
        return $data->pull();
    }
}
?>