
Parse error: syntax error, unexpected T_OBJECT_OPERATOR in /home/gersofts/public_html/pos/applicatio
Publicado por german (21 intervenciones) el 26/12/2013 17:54:35
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<?php
class Appconfig extends Model
{
function exists($key)
{
$this->db->from('app_config');
$this->db->where('app_config.key',$key);
$query = $this->db->get();
return ($query->num_rows()==1);
}
function get_all()
{
$this->db->from('app_config');
$this->db->order_by("key", "asc");
return $this->db->get();
}
function get($key)
{
$query = $this->db->get_where('app_config', array('key' => $key), 1);
if($query->num_rows()==1)
{
return $query->rows()->value;
}
return "";
}
function save($key,$value)
{
$config_data=array(
'key'=>$key,
'value'=>$value
);
if (!$this->exists($key))
{
return $this->db->insert('app_config',$config_data);
}
$this->db->where('key', $key);
return $this->db->update('app_config',$config_data);
}
function batch_save($data)
{
$success=true;
//Run these queries as a transaction, we want to make sure we do all or nothing
$this->db->trans_start();
foreach($data as $key=>$value)
{
if(!$this->save($key,$value))
{
$success=false;
break;
}
}
$this->db->trans_complete();
return $success;
}
function delete($key)
{
return $this->db->delete('app_config', array('key' => $key));
}
function delete_all()
{
return $this->db->empty_table('app_config');
}
}
?>
Valora esta pregunta


0