Files
opensourcepos/application/models/appconfig.php
pappastech ecdf3a5aa1 Version 2.0_RC1. Upgrade to CI 2.1.0.
Tom

git-svn-id: svn+ssh://jekkos@svn.code.sf.net/p/opensourcepos/code/@24 c3eb156b-1dc0-44e1-88ae-e38439141b53
2012-01-16 02:16:01 +00:00

81 lines
1.3 KiB
PHP

<?php
class Appconfig extends CI_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->row()->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');
}
}
?>