mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2025-12-12 20:41:26 +01:00
97 lines
2.6 KiB
PHP
97 lines
2.6 KiB
PHP
<?PHP
|
|
/* Copyright (C) 2002 Rodolphe Quiedeville <rodolphe@quiedeville.org>
|
|
*
|
|
* $Id$
|
|
* $Source$
|
|
*
|
|
* 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.
|
|
*
|
|
* This program 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 General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
*
|
|
*/
|
|
|
|
class Webcal {
|
|
var $localdb;
|
|
|
|
var $heure = -1;
|
|
var $duree = 0;
|
|
|
|
|
|
|
|
Function Webcal() {
|
|
global $conf;
|
|
|
|
$this->localdb = new Db($conf->webcal->db->type,
|
|
$conf->webcal->db->host,
|
|
$conf->webcal->db->user,
|
|
$conf->webcal->db->pass,
|
|
$conf->webcal->db->name);
|
|
}
|
|
|
|
|
|
Function add($user, $date, $texte, $desc) {
|
|
|
|
$id = $this->get_next_id();
|
|
|
|
$cal_id = $id;
|
|
$cal_create_by = $user->webcal_login;
|
|
$cal_date = strftime('%Y%m%d', $date);
|
|
$cal_time = $this->heure;
|
|
$cal_mod_date = strftime('%Y%m%d', time());
|
|
$cal_mod_time = strftime('%H%M', time());
|
|
$cal_duration = $this->duree;
|
|
$cal_priority = 2;
|
|
$cal_type = "E";
|
|
$cal_access = "P";
|
|
$cal_name = $texte;
|
|
$cal_description = $desc;
|
|
|
|
|
|
$sql = "INSERT INTO webcal_entry (cal_id, cal_create_by,cal_date,cal_time,cal_mod_date, cal_mod_time,cal_duration,cal_priority,cal_type, cal_access, cal_name,cal_description)";
|
|
|
|
$sql .= " VALUES ($cal_id, '$cal_create_by', $cal_date, $cal_time,$cal_mod_date, $cal_mod_time, $cal_duration,$cal_priority,'$cal_type', '$cal_access', '$cal_name','$cal_description');";
|
|
|
|
if ( $this->localdb->query($sql) ) {
|
|
|
|
$sql = "INSERT INTO webcal_entry_user (cal_id, cal_login, cal_status)";
|
|
$sql .= " VALUES ($cal_id, '$cal_create_by', 'A')";
|
|
|
|
if ( $this->localdb->query($sql) ) {
|
|
|
|
} else {
|
|
print $this->localdb->error() . '<br>' .$sql;
|
|
}
|
|
} else {
|
|
print $this->localdb->error() . '<br>' .$sql;
|
|
}
|
|
|
|
$this->localdb->close();
|
|
}
|
|
|
|
|
|
Function get_next_id() {
|
|
|
|
$sql = "SELECT max(cal_id) FROM webcal_entry";
|
|
|
|
if ($this->localdb->query($sql)) {
|
|
$id = $this->localdb->result(0, 0) + 1;
|
|
return $id;
|
|
} else {
|
|
print $this->localdb->error();
|
|
}
|
|
|
|
|
|
}
|
|
}
|
|
?>
|