mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 09:04:53 +01:00
Added ability to pass the database handle to the accounts const
This commit is contained in:
parent
a3f62fa7cf
commit
4fc5186eb8
@ -1,89 +1,134 @@
|
||||
<?php
|
||||
/**************************************************************************\
|
||||
* phpGroupWare API - Accounts manager shared functions *
|
||||
* This file written by Joseph Engo <jengo@phpgroupware.org> *
|
||||
* shared functions for other account repository managers *
|
||||
* Copyright (C) 2000, 2001 Joseph Engo *
|
||||
* -------------------------------------------------------------------------*
|
||||
* This library is part of the phpGroupWare API *
|
||||
* http://www.phpgroupware.org/api *
|
||||
* ------------------------------------------------------------------------ *
|
||||
* This library is free software; you can redistribute it and/or modify it *
|
||||
* under the terms of the GNU Lesser General Public License as published by *
|
||||
* the Free Software Foundation; either version 2.1 of the License, *
|
||||
* or any later version. *
|
||||
* This library 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 Lesser General Public License for more details. *
|
||||
* You should have received a copy of the GNU Lesser General Public License *
|
||||
* along with this library; if not, write to the Free Software Foundation, *
|
||||
* Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA *
|
||||
\**************************************************************************/
|
||||
/**************************************************************************\
|
||||
* phpGroupWare API - Accounts manager shared functions *
|
||||
* This file written by Joseph Engo <jengo@phpgroupware.org> *
|
||||
* shared functions for other account repository managers *
|
||||
* Copyright (C) 2000, 2001 Joseph Engo *
|
||||
* -------------------------------------------------------------------------*
|
||||
* This library is part of the phpGroupWare API *
|
||||
* http://www.phpgroupware.org/api *
|
||||
* ------------------------------------------------------------------------ *
|
||||
* This library is free software; you can redistribute it and/or modify it *
|
||||
* under the terms of the GNU Lesser General Public License as published by *
|
||||
* the Free Software Foundation; either version 2.1 of the License, *
|
||||
* or any later version. *
|
||||
* This library 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 Lesser General Public License for more details. *
|
||||
* You should have received a copy of the GNU Lesser General Public License *
|
||||
* along with this library; if not, write to the Free Software Foundation, *
|
||||
* Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA *
|
||||
\**************************************************************************/
|
||||
|
||||
/* $Id$ */
|
||||
|
||||
class accounts extends accounts_
|
||||
{
|
||||
/**************************************************************************\
|
||||
* Standard constructor for setting $this->account_id *
|
||||
* This constructor sets the account id, if string is sent, converts to id *
|
||||
* I might move this to the accounts_shared if it stays around *
|
||||
\**************************************************************************/
|
||||
function accounts($account_id = False)
|
||||
{
|
||||
global $phpgw, $phpgw_info;
|
||||
$this->db = $phpgw->db;
|
||||
if ($account_id != False){ $this->account_id = $account_id; }
|
||||
}
|
||||
/* $Id$ */
|
||||
|
||||
function read()
|
||||
{
|
||||
if (count($this->data) == 0){ $this->read_repository(); }
|
||||
reset($this->data);
|
||||
return $this->data;
|
||||
}
|
||||
class accounts extends accounts_
|
||||
{
|
||||
/**************************************************************************\
|
||||
* Standard constructor for setting $this->account_id *
|
||||
* This constructor sets the account id, if string is sent, converts to id *
|
||||
* I might move this to the accounts_shared if it stays around *
|
||||
\**************************************************************************/
|
||||
|
||||
function update_data($data) {
|
||||
reset($data);
|
||||
$this->data = Array();
|
||||
$this->data = $data;
|
||||
reset($this->data);
|
||||
return $this->data;
|
||||
}
|
||||
function accounts($account_id = False, $db = '')
|
||||
{
|
||||
global $phpgw, $phpgw_info;
|
||||
|
||||
function memberships($account_id = False)
|
||||
{
|
||||
global $phpgw_info, $phpgw;
|
||||
if ($account_id == False){ $account_id = $phpgw_info['user']['account_id']; }
|
||||
elseif (gettype($account_id) == 'string') { $account_id = $this->name2id($account_id); }
|
||||
if (! is_object($db))
|
||||
{
|
||||
$this->db = $phpgw->db;
|
||||
}
|
||||
else
|
||||
{
|
||||
$this->db = $db;
|
||||
}
|
||||
|
||||
$security_equals = Array();
|
||||
$security_equals = $phpgw->acl->get_location_list_for_id('phpgw_group', 1, intval($account_id));
|
||||
if ($security_equals == False) { return False; }
|
||||
for ($idx=0; $idx<count($security_equals); $idx++){
|
||||
$name = $this->id2name(intval($security_equals[$idx]));
|
||||
$this->memberships[] = Array('account_id' => $security_equals[$idx], 'account_name' => "$name");
|
||||
}
|
||||
return $this->memberships;
|
||||
}
|
||||
if (! isset($account_id))
|
||||
{
|
||||
$this->account_id = $account_id;
|
||||
}
|
||||
}
|
||||
|
||||
function members ($account_id = False)
|
||||
{
|
||||
global $phpgw_info, $phpgw;
|
||||
if ($account_id == False){ $account_id = $phpgw_info['user']['account_id']; }
|
||||
elseif (gettype($account_id) == 'string') { $account_id = $this->name2id($account_id); }
|
||||
function read()
|
||||
{
|
||||
if (count($this->data) == 0)
|
||||
{
|
||||
$this->read_repository();
|
||||
}
|
||||
|
||||
$security_equals = Array();
|
||||
$acl = CreateObject('phpgwapi.acl');
|
||||
$security_equals = $acl->get_ids_for_location(intval($account_id), 1, 'phpgw_group');
|
||||
unset($acl);
|
||||
if ($security_equals == False) { return False; }
|
||||
for ($idx=0; $idx<count($security_equals); $idx++){
|
||||
$name = $this->id2name(intval($security_equals[$idx]));
|
||||
$this->members[] = Array('account_id' => intval($security_equals[$idx]), 'account_name' => "$name");
|
||||
}
|
||||
return $this->members;
|
||||
}
|
||||
}
|
||||
?>
|
||||
reset($this->data);
|
||||
return $this->data;
|
||||
}
|
||||
|
||||
function update_data($data)
|
||||
{
|
||||
reset($data);
|
||||
$this->data = Array();
|
||||
$this->data = $data;
|
||||
|
||||
reset($this->data);
|
||||
return $this->data;
|
||||
}
|
||||
|
||||
function memberships($account_id = False)
|
||||
{
|
||||
global $phpgw_info, $phpgw;
|
||||
if ($account_id == False)
|
||||
{
|
||||
$account_id = $phpgw_info['user']['account_id'];
|
||||
}
|
||||
elseif (gettype($account_id) == 'string')
|
||||
{
|
||||
$account_id = $this->name2id($account_id);
|
||||
}
|
||||
|
||||
$security_equals = Array();
|
||||
$security_equals = $phpgw->acl->get_location_list_for_id('phpgw_group', 1, intval($account_id));
|
||||
|
||||
if ($security_equals == False)
|
||||
{
|
||||
return False;
|
||||
}
|
||||
|
||||
for ($idx=0; $idx<count($security_equals); $idx++)
|
||||
{
|
||||
$name = $this->id2name(intval($security_equals[$idx]));
|
||||
$this->memberships[] = Array('account_id' => $security_equals[$idx], 'account_name' => $name);
|
||||
}
|
||||
|
||||
return $this->memberships;
|
||||
}
|
||||
|
||||
function members ($account_id = False)
|
||||
{
|
||||
global $phpgw_info, $phpgw;
|
||||
if ($account_id == False)
|
||||
{
|
||||
$account_id = $phpgw_info['user']['account_id'];
|
||||
}
|
||||
elseif (gettype($account_id) == 'string')
|
||||
{
|
||||
$account_id = $this->name2id($account_id);
|
||||
}
|
||||
|
||||
$security_equals = Array();
|
||||
$acl = CreateObject('phpgwapi.acl');
|
||||
$security_equals = $acl->get_ids_for_location(intval($account_id), 1, 'phpgw_group');
|
||||
unset($acl);
|
||||
|
||||
if ($security_equals == False)
|
||||
{
|
||||
return False;
|
||||
}
|
||||
|
||||
for ($idx=0; $idx<count($security_equals); $idx++)
|
||||
{
|
||||
$name = $this->id2name(intval($security_equals[$idx]));
|
||||
$this->members[] = Array('account_id' => intval($security_equals[$idx]), 'account_name' => $name);
|
||||
}
|
||||
|
||||
return $this->members;
|
||||
}
|
||||
}
|
||||
?>
|
Loading…
Reference in New Issue
Block a user