Setup new var, remove vars from class extension file (shared)

This commit is contained in:
Miles Lott 2001-03-28 00:57:47 +00:00
parent 30fe68b84c
commit d8c21b2961
2 changed files with 13 additions and 9 deletions

View File

@ -25,12 +25,6 @@
class contacts extends contacts_
{
var $db;
var $account_id;
var $stock_contact_fields; // This is an array of all the fields in the addressbook
var $email_types; // VCard email type array
var $total_records; // This will contain numrows for data retrieved
function check_perms($has, $needed)
{
return (!!($has & $needed) == True);

View File

@ -40,9 +40,10 @@
var $account_id;
var $stock_contact_fields; // This is an array of almost the fields in the phpgw_addressbook table, except id,owner,lid,tid,access,cat_id
var $email_types; // VCard email type array
var $total_records; // This will contain numrows for data retrieved
var $grants; // This holds all of the users that have granted access to there entrys
var $non_contact_fields; // Here are the rest
var $email_types; // VCard email type array
var $total_records; // This will contain numrows for data retrieved
var $grants; // This holds all of the users that have granted access to there entrys
function contacts_()
{
@ -106,6 +107,15 @@
"email_home_type" => "email_home_type" //'INTERNET','CompuServe',etc...
);
$this->non_contact_fields = array(
"id" => "id",
"lid" => "lid",
"tid" => "tid",
"cat_id" => "cat_id",
"access" => "access",
"owner" => "owner"
);
/* Used to flag an address as being:
domestic OR international(default)
parcel(default)