egroupware_official/filemanager/inc/class.sophpwebhosting.inc.php
2003-08-28 14:31:11 +00:00

35 lines
648 B
PHP
Executable File

<?php
class sophpwebhosting
{
/* Any initializations that need to be done */
function sophpwebhosting()
{
$GLOBALS['phpgw']->db->Auto_Free = 0;
}
/* General SQL query */
function query($query)
{
return $GLOBALS['phpgw']->db->query($query);
}
/* Fetch next array for $query_id */
function fetch_array($query_id)
{
$GLOBALS['phpgw']->db->next_record ();
return $GLOBALS['phpgw']->db->Record;
}
/*
General wrapper for all other db calls
Calls in here are simply returned, so not all will work
*/
function call($function, $query_id)
{
return $GLOBALS['phpgw']->db->$function();
}
}
?>