class.blocks_old.php
616 Bytes
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
54
55
56
57
<?php
/**
* @author: Bunzia Alexander <nifus@mail.ru> <http://www.weblancer.net/users/nifus/>
* @copyright: Copyright (c) 2010, Bunzia Alexander
* @version: 1.0
* @license: http://www.gnu.org/copyleft/gpl.html GNU/GPL
*/
// êëàññ äëÿ óïðàâëåíèÿ çàïèñÿìè òàáëèöû system_blocks
class blocks{
public function set_debug($v){
$this -> debug = $v;
}
static function exists_func($v){
}
// èùåì áëîêè ñ ïåðåìåííîé v
protected function make_error($msg){
$this -> last_error = $msg;
}
public function error(){
return $this -> last_error;
}
}
?>