* * and Mark Peters * * Manages user preferences * * Copyright (C) 2000, 2001 Joseph Engo * * -------------------------------------------------------------------------* * This library is part of the phpGroupWare API * * http://www.phpgroupware.org/api * * ------------------------------------------------------------------------ * * This library is free software; you can redistribute it and/or modify it * * under the terms of the GNU Lesser General Public License as published by * * the Free Software Foundation; either version 2.1 of the License, * * or any later version. * * This library is distributed in the hope that it will be useful, but * * WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * * See the GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * * along with this library; if not, write to the Free Software Foundation, * * Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * \**************************************************************************/ /* $Id$ */ class preferences { var $account_id; var $preference = Array(); var $db; function preferences($account_id = "") { global $phpgw, $phpgw_info; $this->db = $phpgw->db; if ($account_id == ""){ $this->account_id = $phpgw_info["user"]["account_id"]; }elseif (is_long($account_id)) { $this->account_id = $account_id; } elseif(is_string($account_id)) { $this->account_id = $phpgw->accounts->username2userid($account_id); } //echo "Account ID (Initializing prefs) = ".$this->account_id."
\n"; } function get_saved_preferences() { global $phpgw; $this->db->lock("preferences"); $this->db->query("SELECT preference_value FROM preferences WHERE preference_owner=".$this->account_id,__LINE__,__FILE__); $this->db->next_record(); $pref_info = $this->db->f("preference_value"); $this->preference = Array(); $this->preference = unserialize($pref_info); $this->db->unlock(); return $this->preference; } function get_preferences() { global $phpgw; return $this->preference; } // This should be called when you are done makeing changes to the preferences function commit($line = "",$file = "") { global $phpgw, $phpgw_info; //echo "
commit called
Line: $line
File: $file".$phpgw_info["user"]["account_id"]."
"; if ($this->account_id) { $this->db->lock("preferences"); $this->db->query("delete from preferences where preference_owner=" . $this->account_id,__LINE__,__FILE__); if ($PHP_VERSION < "4.0.0") { $pref_info = addslashes(serialize($this->preference)); } else { $pref_info = serialize($this->preference); } $this->db->query("insert into preferences (preference_owner,preference_value) values (" . $this->account_id . ",'" . $pref_info . "')",__LINE__,__FILE__); $this->db->unlock(); if ($phpgw_info["user"]["account_id"] == $this->account_id) { $this->get_saved_preferences(); $phpgw->accounts->sync(__LINE__,__FILE__); } } } // Add a new preference. function change($app_name,$var,$value = "") { global $phpgw_info; if (! $value) { global $$var; $value = $$var; } $this->preference["$app_name"]["$var"] = $value; } function delete($app_name,$var) { if (! $var) { $this->reset($app_name); } else { unset($this->preference["$app_name"]["$var"]); } } // This will kill all preferences within a certain app function reset($app_name) { $this->preference["$app_name"] = array(); } } //end of preferences class ?>