egroupware/addressbook/add.php

89 lines
3.1 KiB
PHP
Raw Normal View History

2000-08-18 05:24:22 +02:00
<?php
/**************************************************************************\
* phpGroupWare - addressbook *
* http://www.phpgroupware.org *
* Written by Joseph Engo <jengo@phpgroupware.org> *
* -------------------------------------------- *
* 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$ */
2000-11-03 21:07:57 +01:00
if ($submit || $AddVcard) {
$phpgw_info["flags"] = array("noheader" => True, "nonavbar" => True);
2000-08-18 05:24:22 +02:00
}
$phpgw_info["flags"]["currentapp"] = "addressbook";
$phpgw_info["flags"]["enable_addressbook_class"] = True;
2000-08-18 05:24:22 +02:00
include("../header.inc.php");
$t = new Template($phpgw_info["server"]["app_tpl"]);
$t->set_file(array( "add" => "add.tpl"));
2000-11-03 21:07:57 +01:00
2001-01-21 07:36:59 +01:00
$this = CreateObject("addressbook.addressbook");
2000-11-03 21:07:57 +01:00
if ($AddVcard){
Header("Location: " . $phpgw->link($phpgw_info["server"]["webserver_url"] .
"/addressbook/vcardin.php"));
}
else if ($add_email) {
list($fields["firstname"],$fields["lastname"]) = explode(" ", $name);
2000-08-18 05:24:22 +02:00
$fields["email"] = $add_email;
form("","add.php","Add",$fields);
} else if (! $submit && ! $add_email) {
form("","add.php","Add","","","");
} else {
if (! $bday_month && ! $bday_day && ! $bday_year) {
2000-08-18 05:24:22 +02:00
$bday = "";
} else {
2000-08-18 05:24:22 +02:00
$bday = "$bday_month/$bday_day/$bday_year";
}
if ($access != "private" && $access != "public") {
$access = $phpgw->accounts->array_to_string($access,$n_groups);
}
if ($url == "http://") {
$url = "";
}
2000-08-18 05:24:22 +02:00
2001-01-21 07:36:59 +01:00
$this->id = $ab_id;
$this->company = $company;
//$this->company_id = $company_id;
2001-01-21 07:36:59 +01:00
$this->firstname = $firstname;
$this->lastname = $lastname;
$this->email = $email;
$this->title = $title;
$this->wphone = $wphone;
$this->hphone = $hphone;
$this->fax = $fax;
$this->pager = $pager;
$this->mphone = $mphone;
$this->ophone = $ophone;
$this->street = $street;
$this->address2 = $address2;
$this->city = $city;
$this->state = $state;
$this->zip = $zip;
$this->bday = $bday;
$this->url = $url;
$this->notes = $notes;
$this->access = $access;
$this->add_entry();
2000-08-18 05:24:22 +02:00
Header("Location: " . $phpgw->link($phpgw_info["server"]["webserver_url"] . "/addressbook/",
"cd=14"));
}
$t->set_var("lang_ok",lang("ok"));
$t->set_var("lang_clear",lang("clear"));
$t->set_var("lang_cancel",lang("cancel"));
2001-01-15 03:30:29 +01:00
$t->set_var("cancel_url",$phpgw->link("index.php?sort=$sort&order=$order&filter=$filter&start=$start"));
$t->parse("out","add");
$t->pparse("out","add");
2000-08-18 05:24:22 +02:00
$phpgw->common->phpgw_footer();
?>