2001-05-02 10:02:32 +02:00
< ? php
/************************************************************************** \
* phpGroupWare API - Application configuration in a centralized location *
* This file written by Joseph Engo < jengo @ phpgroupware . org > *
* 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 config
{
var $db ;
var $appname ;
var $config_data ;
function config ( $appname = '' )
{
global $phpgw , $phpgw_info ;
if ( ! $appname )
{
$appname = $phpgw_info [ 'flags' ][ 'currentapp' ];
}
2001-05-21 19:18:39 +02:00
$this -> db = $phpgw -> db ;
2001-05-02 10:02:32 +02:00
$this -> appname = $appname ;
}
function read_repository ()
{
2001-05-21 19:18:39 +02:00
$this -> db -> query ( " select * from phpgw_config where config_app=' " . $this -> appname . " ' " , __LINE__ , __FILE__ );
2001-05-02 10:02:32 +02:00
while ( $this -> db -> next_record ())
{
$this -> config_data [ $this -> db -> f ( 'config_name' )] = $this -> db -> f ( 'config_value' );
}
}
function save_repository ()
{
$config_data = $this -> config_data ;
2001-06-13 17:44:56 +02:00
if ( $config_data )
2001-05-02 10:02:32 +02:00
{
2001-06-23 06:37:31 +02:00
$this -> db -> lock ( array ( 'phpgw_config' , 'phpgw_app_sessions' ));
2001-06-13 17:44:56 +02:00
$this -> db -> query ( " delete from phpgw_config where config_app=' " . $this -> appname . " ' " , __LINE__ , __FILE__ );
2001-06-23 03:01:39 +02:00
if ( $this -> appname == 'phpgwapi' )
{
$this -> db -> query ( " delete from phpgw_app_sessions where sessionid = '0' and loginid = '0' and app = ' " . $this -> appname . " ' and location = 'config' " , __LINE__ , __FILE__ );
}
2001-06-13 17:44:56 +02:00
while ( list ( $name , $value ) = each ( $config_data ))
{
$name = addslashes ( $name );
$value = addslashes ( $value );
2001-07-01 14:12:39 +02:00
$this -> db -> query ( " delete from phpgw_config where config_name=' " . $name . " ' " , __LINE__ , __FILE__ );
2001-06-13 17:44:56 +02:00
$this -> db -> query ( " insert into phpgw_config (config_app,config_name,config_value) "
. " values (' " . $this -> appname . " ',' " . $name . " ',' " . $value . " ') " , __LINE__ , __FILE__ );
}
$this -> db -> unlock ();
2001-05-02 10:02:32 +02:00
}
}
function delete_repository ()
{
2001-05-21 19:18:39 +02:00
$this -> db -> query ( " delete from phpgw_config where config_app=' " . $this -> appname . " ' " , __LINE__ , __FILE__ );
2001-05-02 10:02:32 +02:00
}
function value ( $variable_name , $variable_data )
{
$this -> config_data [ $variable_name ] = $variable_data ;
}
2001-05-21 19:18:39 +02:00
}
?>