mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 17:14:36 +01:00
405cdee6d1
created first calender hooks
80 lines
2.5 KiB
PHP
Executable File
80 lines
2.5 KiB
PHP
Executable File
<?php
|
||
/**************************************************************************\
|
||
* eGroupWare - resources - Resource Management System *
|
||
* http://www.egroupware.org *
|
||
* Written by Cornelius Weiss <egw@von-und-zu-weiss.de> *
|
||
* and Lukas Weiss <wnz_gh05t@users.sourceforge.net> *
|
||
* ----------------------------------------------- *
|
||
* This program is free software; you can redistribute it and/or modify it *
|
||
* under the terms of the GNU General Public License as published by the *
|
||
* Free Software Foundation; either version 2 of the License, or (at your *
|
||
* option) any later version. *
|
||
\**************************************************************************/
|
||
|
||
/* $Id: */
|
||
include_once(EGW_INCLUDE_ROOT.'/etemplate/inc/class.so_sql.inc.php');
|
||
|
||
class so_resources extends so_sql
|
||
{
|
||
function so_resources()
|
||
{
|
||
$this->so_sql('resources','egw_resources');
|
||
$this->db = clone($GLOBALS['egw']->db);
|
||
$this->db->set_app('resources');
|
||
$this->rs_table = 'egw_resources';
|
||
}
|
||
|
||
/**
|
||
* gets the value of $key from resource of $id
|
||
*
|
||
* Cornelius Wei<65> <egw@von-und-zu-weiss.de>
|
||
* @param string $key key of value to get
|
||
* @param int $id resource id
|
||
* @return mixed value of key and resource, false if key or id not found.
|
||
*/
|
||
function get_value($key,$id)
|
||
{
|
||
if($this->db->select($this->rs_table,$key,array('id' => $id),__LINE__,__FILE__))
|
||
{
|
||
$value = $this->db->row(row);
|
||
return $value[$key];
|
||
}
|
||
return false;
|
||
}
|
||
|
||
function delete($id)
|
||
{
|
||
$this->db->delete($this->rs_table,$id,__LINE__,__FILE__);
|
||
return true;
|
||
}
|
||
|
||
/**
|
||
* reads a resource exept binary datas
|
||
*
|
||
* Cornelius Wei<65> <egw@von-und-zu-weiss.de>
|
||
* @param int $id resource id
|
||
* @return array with key => value or false if not found
|
||
*/
|
||
function read($id)
|
||
{
|
||
if($this->db->select($this->rs_table,'*',array('id' => $id),__LINE__,__FILE__))
|
||
{
|
||
return $this->db->row(true);
|
||
}
|
||
return false;
|
||
}
|
||
|
||
/**
|
||
* saves a resource including binary datas
|
||
*
|
||
* Cornelius Wei<65> <egw@von-und-zu-weiss.de>
|
||
* @param array $resource key => value
|
||
* @return mixed id of resource if all right, false if fale
|
||
*/
|
||
function save($resource)
|
||
{
|
||
return $this->db->insert($this->rs_table,$resource,array('id' => $resource['id']),__LINE__,__FILE__) ? $this->db->get_last_insert_id($this->rs_table, 'id') : false;
|
||
}
|
||
|
||
}
|