git-svn-id: file:///home/shish/svn/shimmie2/trunk@389 7f39781d-f577-437e-ae19-be835c7a54ca
		
			
				
	
	
		
			79 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			79 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
class Config {
 | 
						|
	var $values = array();
 | 
						|
	var $database = null;
 | 
						|
 | 
						|
	public function Config($database) {
 | 
						|
		$this->database = $database;
 | 
						|
		$this->values = $this->database->db->GetAssoc("SELECT name, value FROM config");
 | 
						|
	}
 | 
						|
	public function save($name=null) {
 | 
						|
		if(is_null($name)) {
 | 
						|
			foreach($this->values as $name => $value) {
 | 
						|
				// does "or update" work with sqlite / postgres?
 | 
						|
				$this->database->db->StartTrans();
 | 
						|
				$this->database->Execute("DELETE FROM config WHERE name = ?", array($name));
 | 
						|
				$this->database->Execute("INSERT INTO config VALUES (?, ?)", array($name, $value));
 | 
						|
				$this->database->db->CommitTrans();
 | 
						|
			}
 | 
						|
		}
 | 
						|
		else {
 | 
						|
			$this->database->db->StartTrans();
 | 
						|
			$this->database->Execute("DELETE FROM config WHERE name = ?", array($name));
 | 
						|
			$this->database->Execute("INSERT INTO config VALUES (?, ?)", array($name, $this->values[$name]));
 | 
						|
			$this->database->db->CommitTrans();
 | 
						|
		}
 | 
						|
	}
 | 
						|
 | 
						|
	public function set_int($name, $value) {
 | 
						|
		$this->values[$name] = parse_shorthand_int($value);
 | 
						|
		$this->save($name);
 | 
						|
	}
 | 
						|
	public function set_string($name, $value) {
 | 
						|
		$this->values[$name] = $value;
 | 
						|
		$this->save($name);
 | 
						|
	}
 | 
						|
	public function set_bool($name, $value) {
 | 
						|
		$this->values[$name] = (($value == 'on' || $value === true) ? 'Y' : 'N');
 | 
						|
		$this->save($name);
 | 
						|
	}
 | 
						|
 | 
						|
	public function set_default_int($name, $value) {
 | 
						|
		if(is_null($this->get($name))) {
 | 
						|
			$this->values[$name] = parse_shorthand_int($value);
 | 
						|
		}
 | 
						|
	}
 | 
						|
	public function set_default_string($name, $value) {
 | 
						|
		if(is_null($this->get($name))) {
 | 
						|
			$this->values[$name] = $value;
 | 
						|
		}
 | 
						|
	}
 | 
						|
	public function set_default_bool($name, $value) {
 | 
						|
		if(is_null($this->get($name))) {
 | 
						|
			$this->values[$name] = (($value == 'on' || $value === true) ? 'Y' : 'N');
 | 
						|
		}
 | 
						|
	}
 | 
						|
 | 
						|
	public function get_int($name, $default=null) {
 | 
						|
		// deprecated -- ints should be stored as ints now
 | 
						|
		return parse_shorthand_int($this->get($name, $default));
 | 
						|
	}
 | 
						|
	public function get_string($name, $default=null) {
 | 
						|
		return $this->get($name, $default);
 | 
						|
	}
 | 
						|
	public function get_bool($name, $default=null) {
 | 
						|
		// deprecated -- bools should be stored as Y/N now
 | 
						|
		return ($this->get($name, $default) == 'Y' || $this->get($name, $default) == '1');
 | 
						|
	}
 | 
						|
 | 
						|
	private function get($name, $default=null) {
 | 
						|
		if(isset($this->values[$name])) {
 | 
						|
			return $this->values[$name];
 | 
						|
		}
 | 
						|
		else {
 | 
						|
			return $default;
 | 
						|
		}
 | 
						|
	}
 | 
						|
}
 | 
						|
?>
 |