2001-01-11 10:52:33 +01:00
|
|
|
<?php
|
|
|
|
/**************************************************************************\
|
2001-01-13 11:18:50 +01:00
|
|
|
* phpGroupWare API - Commononly used functions *
|
|
|
|
* This file written by Dan Kuykendall <seek3r@phpgroupware.org> *
|
|
|
|
* and Joseph Engo <jengo@phpgroupware.org> *
|
|
|
|
* and Mark Peters <skeeter@phpgroupware.org> *
|
|
|
|
* Commononly used functions by phpGroupWare developers *
|
|
|
|
* Copyright (C) 2000, 2001 Dan Kuykendall *
|
|
|
|
* -------------------------------------------------------------------------*
|
2001-01-16 14:52:32 +01:00
|
|
|
* This library is part of the phpGroupWare API *
|
|
|
|
* http://www.phpgroupware.org/api *
|
|
|
|
* ------------------------------------------------------------------------ *
|
2001-01-13 11:18:50 +01:00
|
|
|
* 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 *
|
2001-01-11 10:52:33 +01:00
|
|
|
\**************************************************************************/
|
|
|
|
|
|
|
|
/* $Id$ */
|
|
|
|
|
2001-02-11 21:03:35 +01:00
|
|
|
$d1 = strtolower(substr($phpgw_info['server']['api_inc'],0,3));
|
|
|
|
$d2 = strtolower(substr($phpgw_info['server']['server_root'],0,3));
|
|
|
|
$d3 = strtolower(substr($phpgw_info['server']['app_inc'],0,3));
|
|
|
|
if($d1 == 'htt' || $d1 == 'ftp' || $d2 == 'htt' || $d2 == 'ftp' || $d3 == 'htt' || $d3 == 'ftp') {
|
|
|
|
echo 'Failed attempt to break in via an old Security Hole!<br>'."\n";
|
2001-01-11 10:52:33 +01:00
|
|
|
exit;
|
|
|
|
} unset($d1);unset($d2);unset($d3);
|
2001-03-14 07:38:11 +01:00
|
|
|
|
|
|
|
/*!
|
|
|
|
@class common
|
|
|
|
@abstract common class that contains commonly used functions
|
|
|
|
*/
|
2001-03-18 06:16:00 +01:00
|
|
|
class common
|
|
|
|
{
|
|
|
|
var $phpgw;
|
|
|
|
var $iv = '';
|
|
|
|
var $key = '';
|
|
|
|
var $crypto;
|
|
|
|
var $debug_info; // An array with debugging info from the API
|
2001-01-11 10:52:33 +01:00
|
|
|
|
2001-03-18 06:16:00 +01:00
|
|
|
// Convert an array into the format needed for the access column.
|
2001-03-14 07:38:11 +01:00
|
|
|
/*!
|
2001-03-23 06:38:11 +01:00
|
|
|
@function array_to_string
|
2001-03-14 07:38:11 +01:00
|
|
|
@abstract Convert an array into the format needed for the access column
|
|
|
|
@param $access
|
|
|
|
@param $array
|
|
|
|
*/
|
2001-03-18 06:16:00 +01:00
|
|
|
function array_to_string($access,$array)
|
|
|
|
{
|
|
|
|
$this->debug_info[] = 'array_to_string() is a depreciated function - use ACL instead';
|
|
|
|
$s = '';
|
|
|
|
if ($access == 'group' || $access == 'public' || $access == 'none')
|
|
|
|
{
|
|
|
|
if (count($array))
|
|
|
|
{
|
|
|
|
while ($t = each($array)) {
|
|
|
|
$s .= ',' . $t[1];
|
|
|
|
}
|
|
|
|
$s .= ',';
|
|
|
|
}
|
|
|
|
if (! count($array) && $access == 'none')
|
|
|
|
{
|
|
|
|
$s = '';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $s;
|
|
|
|
}
|
2001-02-05 17:37:38 +01:00
|
|
|
|
|
|
|
|
2001-03-18 06:16:00 +01:00
|
|
|
// This is used for searching the access fields
|
2001-03-14 07:38:11 +01:00
|
|
|
/*!
|
|
|
|
@function sql_search
|
|
|
|
@abstract this function is used for searching the access fields
|
|
|
|
@param $table
|
|
|
|
@param $owner
|
|
|
|
*/
|
2001-03-18 06:16:00 +01:00
|
|
|
function sql_search($table,$owner=0)
|
|
|
|
{
|
|
|
|
global $phpgw, $phpgw_info;
|
2001-02-05 17:37:38 +01:00
|
|
|
|
2001-03-18 06:16:00 +01:00
|
|
|
$this->debug_info[] = 'sql_search() is a depreciated function - use ACL instead';
|
|
|
|
$s = '';
|
|
|
|
if (!$owner)
|
|
|
|
{
|
|
|
|
$owner = $phpgw_info['user']['account_id'];
|
|
|
|
}
|
|
|
|
$groups = $phpgw->accounts->memberships(intval($owner));
|
|
|
|
if (gettype($groups) == 'array')
|
|
|
|
{
|
|
|
|
while ($group = each($groups))
|
|
|
|
{
|
|
|
|
$s .= " or $table like '%," . $group[2] . ",%'";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $s;
|
|
|
|
}
|
2001-02-05 17:37:38 +01:00
|
|
|
|
2001-01-11 10:52:33 +01:00
|
|
|
// return a array of installed languages
|
2001-03-14 07:38:11 +01:00
|
|
|
/*!
|
|
|
|
@function getInstalledLanguages
|
|
|
|
@abstract return an array of installed languages
|
|
|
|
@result $installedLanguages; an array containing the installed languages
|
|
|
|
*/
|
2001-01-11 10:52:33 +01:00
|
|
|
function getInstalledLanguages()
|
|
|
|
{
|
|
|
|
global $phpgw;
|
|
|
|
|
2001-02-11 21:03:35 +01:00
|
|
|
$phpgw->db->query('select distinct lang from lang');
|
2001-01-11 10:52:33 +01:00
|
|
|
while (@$phpgw->db->next_record())
|
|
|
|
{
|
2001-02-11 21:03:35 +01:00
|
|
|
$installedLanguages[$phpgw->db->f('lang')] = $phpgw->db->f('lang');
|
2001-01-11 10:52:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return $installedLanguages;
|
|
|
|
}
|
|
|
|
|
|
|
|
// return the preferred language of the users
|
|
|
|
// it's using HTTP_ACCEPT_LANGUAGE (send from the users browser)
|
|
|
|
// and ...(to find out which languages are installed)
|
2001-03-14 07:38:11 +01:00
|
|
|
/*!
|
|
|
|
@function getPreferredLanguage
|
|
|
|
@abstract return the preferred langugae of the users
|
|
|
|
@discussion it uses HTTP_ACCEPT_LANGUAGE (from the users browser) <br>
|
|
|
|
and .... to find out which languages are installed
|
|
|
|
*/
|
2001-01-11 10:52:33 +01:00
|
|
|
function getPreferredLanguage()
|
|
|
|
{
|
|
|
|
global $HTTP_ACCEPT_LANGUAGE;
|
|
|
|
|
|
|
|
// create a array of languages the user is accepting
|
2001-02-11 21:03:35 +01:00
|
|
|
$userLanguages = explode(',',$HTTP_ACCEPT_LANGUAGE);
|
2001-01-11 10:52:33 +01:00
|
|
|
$supportedLanguages = $this->getInstalledLanguages();
|
|
|
|
|
|
|
|
// find usersupported language
|
|
|
|
while (list($key,$value) = each($userLanguages))
|
|
|
|
{
|
2001-02-11 21:03:35 +01:00
|
|
|
// remove everything behind '-' example: de-de
|
2001-01-11 10:52:33 +01:00
|
|
|
$value = trim($value);
|
2001-02-11 21:03:35 +01:00
|
|
|
$pieces = explode('-', $value);
|
2001-01-11 10:52:33 +01:00
|
|
|
$value = $pieces[0];
|
2001-02-11 21:03:35 +01:00
|
|
|
# print 'current lang $value<br>';
|
2001-01-11 10:52:33 +01:00
|
|
|
if ($supportedLanguages[$value])
|
|
|
|
{
|
|
|
|
$retValue=$value;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// no usersupported language found -> return english
|
|
|
|
if (empty($retValue))
|
|
|
|
{
|
2001-02-11 21:03:35 +01:00
|
|
|
$retValue='en';
|
2001-01-11 10:52:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return $retValue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// connect to the ldap server and return a handle
|
2001-03-14 07:38:11 +01:00
|
|
|
/*!
|
|
|
|
@function ldapConnect
|
|
|
|
@abstract connect to the ldap server and return a handle
|
|
|
|
@param $host ldap host
|
|
|
|
@param $dn ldap_root_dn
|
|
|
|
@param $passwd ldap_root_pw
|
|
|
|
*/
|
2001-02-11 21:03:35 +01:00
|
|
|
function ldapConnect($host = '', $dn = '', $passwd = '')
|
2001-01-11 10:52:33 +01:00
|
|
|
{
|
2001-02-12 22:11:08 +01:00
|
|
|
global $phpgw_info;
|
2001-01-11 10:52:33 +01:00
|
|
|
|
2001-02-12 22:11:08 +01:00
|
|
|
if (! $host) {
|
|
|
|
$host = $phpgw_info['server']['ldap_host'];
|
|
|
|
}
|
2001-01-11 10:52:33 +01:00
|
|
|
|
2001-02-12 22:11:08 +01:00
|
|
|
if (! $dn) {
|
|
|
|
$dn = $phpgw_info['server']['ldap_root_dn'];
|
|
|
|
}
|
2001-01-11 10:52:33 +01:00
|
|
|
|
2001-02-12 22:11:08 +01:00
|
|
|
if (! $passwd) {
|
|
|
|
$passwd = $phpgw_info['server']['ldap_root_pw'];
|
|
|
|
}
|
2001-01-11 10:52:33 +01:00
|
|
|
|
|
|
|
|
2001-02-12 22:11:08 +01:00
|
|
|
// connect to ldap server
|
|
|
|
if (! $ds = ldap_connect($host)) {
|
|
|
|
printf("<b>Error: Can't connect to LDAP server %s!</b><br>",$host);
|
|
|
|
return False;
|
|
|
|
}
|
|
|
|
|
|
|
|
// bind as admin, we not to able to do everything
|
|
|
|
if (! ldap_bind($ds,$dn,$passwd)) {
|
|
|
|
printf("<b>Error: Can't bind to LDAP server: %s!</b><br>",$dn);
|
|
|
|
return False;
|
|
|
|
}
|
|
|
|
|
|
|
|
return $ds;
|
2001-01-11 10:52:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// This function is used if the developer wants to stop a running app in the middle of execution
|
|
|
|
// We may need to do some clean up before hand
|
2001-03-14 07:38:11 +01:00
|
|
|
/*!
|
|
|
|
@function phpgw_exit
|
|
|
|
@abstract function to stop running an app
|
|
|
|
@discussion used to stop running an app in the middle of execution <br>
|
|
|
|
There may need to be some cleanup before hand
|
|
|
|
@param $call_footer boolean value to if true then call footer else exit
|
|
|
|
*/
|
2001-01-11 10:52:33 +01:00
|
|
|
function phpgw_exit($call_footer = False)
|
|
|
|
{
|
|
|
|
global $phpgw;
|
|
|
|
|
|
|
|
if ($call_footer) {
|
|
|
|
$this->phpgw_footer();
|
|
|
|
}
|
|
|
|
$phpgw->db->disconnect();
|
|
|
|
exit;
|
|
|
|
}
|
2001-03-14 07:38:11 +01:00
|
|
|
/*!
|
|
|
|
@function randomstring
|
|
|
|
@abstract return a random string of size $size
|
|
|
|
@param $size int-size of random string to return
|
|
|
|
*/
|
2001-01-11 10:52:33 +01:00
|
|
|
function randomstring($size)
|
|
|
|
{
|
2001-02-11 21:03:35 +01:00
|
|
|
$s = '';
|
2001-01-11 10:52:33 +01:00
|
|
|
srand((double)microtime()*1000000);
|
2001-02-11 21:03:35 +01:00
|
|
|
$random_char = array('0','1','2','3','4','5','6','7','8','9','a','b','c','d','e','f',
|
|
|
|
'g','h','i','j','k','l','m','n','o','p','q','r','s','t','u','v',
|
|
|
|
'w','x','y','z','A','B','C','D','E','F','G','H','I','J','K','L',
|
|
|
|
'M','N','O','P','Q','R','S','T','U','V','W','X','Y','Z');
|
2001-01-11 10:52:33 +01:00
|
|
|
|
|
|
|
for ($i=0; $i<$size; $i++) {
|
|
|
|
$s .= $random_char[rand(1,61)];
|
|
|
|
}
|
|
|
|
return $s;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Look at the note towards the top of this file (jengo)
|
|
|
|
function filesystem_separator()
|
|
|
|
{
|
|
|
|
return filesystem_separator();
|
|
|
|
}
|
2001-03-14 07:38:11 +01:00
|
|
|
/*!
|
|
|
|
@function error_list
|
|
|
|
@abstract ???
|
|
|
|
@param $error ???
|
|
|
|
*/
|
2001-01-11 10:52:33 +01:00
|
|
|
function error_list($error)
|
|
|
|
{
|
2001-02-11 21:03:35 +01:00
|
|
|
$html_error = '<table border="0" width="50%"><tr><td align="right"><b>' . lang('error') . '</b>: </td><td align="left">' . $error[0] . '</td></tr>';
|
2001-01-11 10:52:33 +01:00
|
|
|
|
|
|
|
for ($i=1; $i<count($error); $i++) {
|
|
|
|
$html_error .= '<tr><td> </td><td align="left">' . $error[$i] . '</td></tr>';
|
|
|
|
}
|
|
|
|
return $html_error . '</table>';
|
|
|
|
}
|
2001-03-18 06:16:00 +01:00
|
|
|
|
2001-03-14 07:38:11 +01:00
|
|
|
/*!
|
|
|
|
@function check_owner
|
|
|
|
@abstract none yet
|
|
|
|
@param $record ?
|
|
|
|
@param $link ?
|
|
|
|
@param $label ?
|
|
|
|
@param $extravars
|
|
|
|
*/
|
2001-03-18 06:16:00 +01:00
|
|
|
// This is a depreciated function - use ACL instead (jengo)
|
|
|
|
function check_owner($record,$link,$label,$extravars = '')
|
|
|
|
{
|
|
|
|
global $phpgw, $phpgw_info;
|
2001-01-11 10:52:33 +01:00
|
|
|
|
2001-03-18 06:16:00 +01:00
|
|
|
$this->debug_info[] = 'check_owner() is a depreciated function - use ACL instead';
|
|
|
|
$s = '<a href="' . $phpgw->link($link,$extravars) . '"> ' . lang($label) . ' </a>';
|
|
|
|
if (ereg('^[0-9]+$',$record))
|
|
|
|
{
|
|
|
|
if ($record != $phpgw_info['user']['account_id'])
|
|
|
|
{
|
|
|
|
$s = ' ';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if ($record != $phpgw_info['user']['userid'])
|
|
|
|
{
|
|
|
|
$s = ' ';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $s;
|
|
|
|
}
|
2001-01-11 10:52:33 +01:00
|
|
|
|
2001-03-14 07:38:11 +01:00
|
|
|
/*!
|
|
|
|
@function display_fullname
|
|
|
|
@abstract return the fullname of a user
|
2001-03-22 14:26:54 +01:00
|
|
|
@param $lid account loginid
|
2001-03-14 07:38:11 +01:00
|
|
|
@param $firstname firstname
|
|
|
|
@param $lastname lastname
|
|
|
|
*/
|
2001-03-22 14:25:06 +01:00
|
|
|
function display_fullname($lid = '', $firstname = '', $lastname = '')
|
|
|
|
{
|
|
|
|
if (! $lid && ! $firstname && ! $lastname)
|
|
|
|
{
|
|
|
|
global $phpgw_info;
|
|
|
|
$lid = $phpgw_info['user']['account_lid'];
|
|
|
|
$firstname = $phpgw_info['user']['firstname'];
|
|
|
|
$lastname = $phpgw_info['user']['lastname'];
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($lastname)
|
|
|
|
{
|
|
|
|
$a[] = $lastname;
|
|
|
|
}
|
2001-03-22 19:10:09 +01:00
|
|
|
|
|
|
|
if ($firstname)
|
|
|
|
{
|
|
|
|
$a[] = $firstname;
|
|
|
|
}
|
2001-03-22 14:25:06 +01:00
|
|
|
|
|
|
|
return '<' . $lid . '> ' . implode(', ',$a);
|
|
|
|
}
|
|
|
|
|
2001-03-14 07:38:11 +01:00
|
|
|
/*!
|
|
|
|
@function grab_owner_name
|
|
|
|
@abstract grab the owner name
|
|
|
|
@param $id account id
|
|
|
|
*/
|
2001-03-19 21:25:04 +01:00
|
|
|
function grab_owner_name($accountid = '')
|
2001-01-11 10:52:33 +01:00
|
|
|
{
|
|
|
|
global $phpgw;
|
|
|
|
|
2001-03-19 21:25:04 +01:00
|
|
|
$account_id = get_account_id($accountid);
|
2001-01-11 10:52:33 +01:00
|
|
|
$db = $phpgw->db;
|
2001-03-19 21:25:04 +01:00
|
|
|
$db->query('select account_lid,account_firstname,account_lastname from phpgw_accounts where account_id='.$account_id,__LINE__,__FILE__);
|
2001-01-11 10:52:33 +01:00
|
|
|
$db->next_record();
|
|
|
|
|
2001-02-11 21:03:35 +01:00
|
|
|
return $phpgw->common->display_fullname($db->f('account_lid'),$db->f('account_firstname'),$db->f('account_lastname'));
|
2001-01-11 10:52:33 +01:00
|
|
|
}
|
2001-03-14 18:21:09 +01:00
|
|
|
/*!
|
|
|
|
@function create_tabs
|
|
|
|
@abstract create tabs
|
|
|
|
@param $tabs ?
|
|
|
|
@param $selected ?
|
|
|
|
@param $fontsize optional
|
|
|
|
*/
|
2001-02-11 21:03:35 +01:00
|
|
|
function create_tabs($tabs, $selected, $fontsize = '')
|
2001-01-11 10:52:33 +01:00
|
|
|
{
|
|
|
|
global $phpgw_info;
|
|
|
|
$output_text = '<table border="0" cellspacing="0" cellpadding="0"><tr>';
|
2001-02-11 21:03:35 +01:00
|
|
|
$ir = $phpgw_info['server']['images_dir'];
|
2001-01-11 10:52:33 +01:00
|
|
|
|
|
|
|
if ($fontsize) {
|
|
|
|
$fs = '<font size="' . $fontsize . '">';
|
|
|
|
$fse = '</font>';
|
|
|
|
}
|
|
|
|
|
|
|
|
$i = 1;
|
|
|
|
while ($tab = each($tabs)) {
|
|
|
|
if ($tab[0] == $selected) {
|
|
|
|
if ($i == 1) {
|
|
|
|
$output_text .= '<td align="right"><img src="' . $ir . '/tabs-start1.gif"></td>';
|
|
|
|
}
|
|
|
|
|
|
|
|
$output_text .= '<td align="left" background="' . $ir . '/tabs-bg1.gif"> <b><a href="'
|
2001-02-11 21:03:35 +01:00
|
|
|
. $tab[1]['link'] . '" class="tablink">' . $fs . $tab[1]['label']
|
2001-01-11 10:52:33 +01:00
|
|
|
. $fse . '</a></b> </td>';
|
|
|
|
if ($i == count($tabs)) {
|
|
|
|
$output_text .= '<td align="left"><img src="' . $ir . '/tabs-end1.gif"></td>';
|
|
|
|
} else {
|
|
|
|
$output_text .= '<td align="left"><img src="' . $ir . '/tabs-sepr.gif"></td>';
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if ($i == 1) {
|
|
|
|
$output_text .= '<td align="right"><img src="' . $ir . '/tabs-start0.gif"></td>';
|
|
|
|
}
|
|
|
|
$output_text .= '<td align="left" background="' . $ir . '/tabs-bg0.gif"> <b><a href="'
|
2001-02-11 21:03:35 +01:00
|
|
|
. $tab[1]['link'] . '" class="tablink">' . $fs . $tab[1]['label'] . $fse
|
2001-01-11 10:52:33 +01:00
|
|
|
. '</a></b> </td>';
|
|
|
|
if (($i + 1) == $selected) {
|
|
|
|
$output_text .= '<td align="left"><img src="' . $ir . '/tabs-sepl.gif"></td>';
|
|
|
|
} else if ($i == $selected || $i != count($tabs)) {
|
|
|
|
$output_text .= '<td align="left"><img src="' . $ir . '/tabs-sepm.gif"></td>';
|
|
|
|
} else if ($i == count($tabs)) {
|
|
|
|
if ($i == $selected) {
|
|
|
|
$output_text .= '<td align="left"><img src="' . $ir . '/tabs-end1.gif"></td>';
|
|
|
|
} else {
|
|
|
|
$output_text .= '<td align="left"><img src="' . $ir . '/tabs-end0.gif"></td>';
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if ($i != count($tabs)) {
|
|
|
|
$output_text .= '<td align="left"><img src="' . $ir . '/tabs-sepr.gif"></td>';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$i++;
|
|
|
|
$output_text .= "\n";
|
|
|
|
}
|
|
|
|
$output_text .= "</table>\n";
|
|
|
|
return $output_text;
|
|
|
|
}
|
2001-03-14 07:38:11 +01:00
|
|
|
/*!
|
|
|
|
@function get_app_dir
|
2001-03-14 18:21:09 +01:00
|
|
|
@abstract get directory of application
|
|
|
|
@discussion $appname can either be passed or derived from $phpgw_info['flags']['currentapp'];
|
|
|
|
@param $appname name of application
|
2001-03-14 07:38:11 +01:00
|
|
|
*/
|
2001-02-11 21:03:35 +01:00
|
|
|
function get_app_dir($appname = ''){
|
2001-01-11 10:52:33 +01:00
|
|
|
global $phpgw_info;
|
2001-02-11 21:03:35 +01:00
|
|
|
if ($appname == '') {
|
|
|
|
$appname = $phpgw_info['flags']['currentapp'];
|
2001-02-06 14:46:50 +01:00
|
|
|
}
|
2001-02-11 21:03:35 +01:00
|
|
|
if ($appname == 'home' || $appname == 'logout' || $appname == 'login') {
|
|
|
|
$appname = 'phpgwapi';
|
2001-02-06 14:46:50 +01:00
|
|
|
}
|
2001-01-11 10:52:33 +01:00
|
|
|
|
2001-02-11 21:03:35 +01:00
|
|
|
$appdir = PHPGW_INCLUDE_ROOT . '/'.$appname;
|
|
|
|
$appdir_default = PHPGW_SERVER_ROOT . '/'.$appname;
|
2001-01-11 10:52:33 +01:00
|
|
|
|
|
|
|
if (is_dir ($appdir)){
|
|
|
|
return $appdir;
|
|
|
|
}elseif (is_dir ($appdir_default)){
|
|
|
|
return $appdir_default;
|
|
|
|
}else{
|
|
|
|
return False;
|
|
|
|
}
|
|
|
|
}
|
2001-03-14 18:21:09 +01:00
|
|
|
/*!
|
|
|
|
@function get_inc_dir
|
|
|
|
@abstract get inc (include dir) of application
|
|
|
|
@discussion $appname can either be passed or derived from $phpgw_info['flags']['currentapp'];
|
|
|
|
@param $appname name of application
|
|
|
|
*/
|
2001-02-11 21:03:35 +01:00
|
|
|
function get_inc_dir($appname = '')
|
2001-02-06 15:11:44 +01:00
|
|
|
{
|
|
|
|
global $phpgw_info;
|
|
|
|
|
|
|
|
if (! $appname){
|
2001-02-11 21:03:35 +01:00
|
|
|
$appname = $phpgw_info['flags']['currentapp'];
|
2001-02-06 15:11:44 +01:00
|
|
|
}
|
2001-02-11 21:03:35 +01:00
|
|
|
if ($appname == 'home' || $appname == 'logout' || $appname == 'login') {
|
|
|
|
$appname = 'phpgwapi';
|
2001-02-06 15:11:44 +01:00
|
|
|
}
|
|
|
|
|
2001-02-11 21:03:35 +01:00
|
|
|
$incdir = PHPGW_INCLUDE_ROOT . '/' . $appname . '/inc';
|
|
|
|
$incdir_default = PHPGW_SERVER_ROOT . '/' . $appname . '/inc';
|
2001-02-06 15:11:44 +01:00
|
|
|
|
|
|
|
if (is_dir ($incdir)) {
|
|
|
|
return $incdir;
|
|
|
|
} elseif (is_dir ($incdir_default)) {
|
|
|
|
return $incdir_default;
|
|
|
|
} else {
|
|
|
|
return False;
|
|
|
|
}
|
2001-01-11 10:52:33 +01:00
|
|
|
}
|
2001-03-14 18:21:09 +01:00
|
|
|
/*!
|
|
|
|
@function list_themes
|
|
|
|
@abstract list themes available
|
|
|
|
*/
|
2001-02-06 14:46:50 +01:00
|
|
|
function list_themes()
|
|
|
|
{
|
2001-02-11 21:03:35 +01:00
|
|
|
$dh = opendir(PHPGW_SERVER_ROOT . '/phpgwapi/themes');
|
2001-02-06 14:46:50 +01:00
|
|
|
while ($file = readdir($dh)) {
|
|
|
|
if (eregi("\.theme$", $file)) {
|
2001-02-11 21:03:35 +01:00
|
|
|
$list[] = substr($file,0,strpos($file,'.'));
|
2001-02-06 14:46:50 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
//$dh->close();
|
|
|
|
reset ($list);
|
|
|
|
return $list;
|
2001-01-11 10:52:33 +01:00
|
|
|
}
|
2001-03-14 18:21:09 +01:00
|
|
|
/*!
|
|
|
|
@function list_templates
|
|
|
|
@abstract list available templates
|
|
|
|
*/
|
2001-01-11 10:52:33 +01:00
|
|
|
function list_templates(){
|
|
|
|
global $phpgw_info;
|
2001-02-11 21:03:35 +01:00
|
|
|
$d = dir(PHPGW_SERVER_ROOT . '/phpgwapi/templates');
|
2001-02-06 14:46:50 +01:00
|
|
|
while ($entry=$d->read()) {
|
2001-02-11 21:03:35 +01:00
|
|
|
if ($entry != 'CVS' && $entry != '.' && $entry != '..'){
|
|
|
|
$list[$entry]['name'] = $entry;
|
|
|
|
$f = PHPGW_SERVER_ROOT . '/phpgwapi/templates/' . $entry . '/details.inc.php';
|
2001-02-06 14:46:50 +01:00
|
|
|
if (file_exists ($f)){
|
|
|
|
include($f);
|
2001-02-11 21:03:35 +01:00
|
|
|
$list[$entry]['title'] = 'Use '.$phpgw_info['template'][$entry]['title'].'interface';
|
2001-02-06 14:46:50 +01:00
|
|
|
} else {
|
2001-02-11 21:03:35 +01:00
|
|
|
$list[$entry]['title'] = $entry;
|
2001-02-06 14:46:50 +01:00
|
|
|
}
|
|
|
|
}
|
2001-01-11 10:52:33 +01:00
|
|
|
}
|
|
|
|
$d->close();
|
|
|
|
reset ($list);
|
|
|
|
return $list;
|
|
|
|
}
|
2001-03-14 18:21:09 +01:00
|
|
|
/*!
|
|
|
|
@function get_tpl_dir
|
|
|
|
@abstract get template dir of an application
|
|
|
|
@param $appname appication name optional can be derived from $phpgw_info['flags']['currentapp'];
|
|
|
|
*/
|
2001-02-11 21:03:35 +01:00
|
|
|
function get_tpl_dir($appname = '')
|
2001-02-06 14:18:51 +01:00
|
|
|
{
|
|
|
|
global $phpgw_info;
|
|
|
|
if (! $appname) {
|
2001-02-11 21:03:35 +01:00
|
|
|
$appname = $phpgw_info['flags']['currentapp'];
|
2001-02-06 14:18:51 +01:00
|
|
|
}
|
2001-02-11 21:03:35 +01:00
|
|
|
if ($appname == 'home' || $appname == 'logout' || $appname == 'login') {
|
|
|
|
$appname = 'phpgwapi';
|
2001-02-06 14:18:51 +01:00
|
|
|
}
|
2001-01-11 10:52:33 +01:00
|
|
|
|
2001-02-06 14:18:51 +01:00
|
|
|
// Setting this for display of template choices in user preferences
|
2001-02-11 21:03:35 +01:00
|
|
|
if ($phpgw_info['server']['template_set'] == 'user_choice') {
|
|
|
|
$phpgw_info['server']['usrtplchoice'] = 'user_choice';
|
2001-02-06 14:18:51 +01:00
|
|
|
}
|
2001-01-11 10:52:33 +01:00
|
|
|
|
2001-02-11 21:03:35 +01:00
|
|
|
if ($phpgw_info['server']['template_set'] == 'user_choice' && isset($phpgw_info['user']['preferences']['common']['template_set'])) {
|
|
|
|
$phpgw_info['server']['template_set'] = $phpgw_info['user']['preferences']['common']['template_set'];
|
|
|
|
} elseif ($phpgw_info['server']['template_set'] == 'user_choice' || !isset($phpgw_info['server']['template_set'])) {
|
|
|
|
$phpgw_info['server']['template_set'] = 'default';
|
2001-02-06 14:18:51 +01:00
|
|
|
}
|
2001-01-11 10:52:33 +01:00
|
|
|
|
2001-02-11 21:03:35 +01:00
|
|
|
$tpldir = PHPGW_SERVER_ROOT . '/' . $appname . '/templates/'
|
|
|
|
. $phpgw_info['server']['template_set'];
|
|
|
|
$tpldir_default = PHPGW_SERVER_ROOT . '/' . $appname . '/templates/default';
|
2001-02-06 14:18:51 +01:00
|
|
|
|
2001-02-06 21:13:06 +01:00
|
|
|
if (is_dir($tpldir)) {
|
2001-02-06 14:18:51 +01:00
|
|
|
return $tpldir;
|
2001-02-06 21:13:06 +01:00
|
|
|
} elseif (is_dir($tpldir_default)) {
|
2001-02-06 14:18:51 +01:00
|
|
|
return $tpldir_default;
|
|
|
|
} else {
|
|
|
|
return False;
|
|
|
|
}
|
2001-01-11 10:52:33 +01:00
|
|
|
}
|
2001-03-14 18:21:09 +01:00
|
|
|
/*!
|
|
|
|
@function get_image_dir
|
|
|
|
@abstract get image dir of an application
|
|
|
|
@param $appname application name optional can be derived from $phpgw_info['flags']['currentapp'];
|
|
|
|
*/
|
2001-02-11 21:03:35 +01:00
|
|
|
function get_image_dir($appname = ''){
|
2001-01-11 10:52:33 +01:00
|
|
|
global $phpgw_info;
|
2001-02-11 21:03:35 +01:00
|
|
|
if ($appname == '') {
|
|
|
|
$appname = $phpgw_info['flags']['currentapp'];
|
2001-02-06 14:46:50 +01:00
|
|
|
}
|
2001-02-11 21:03:35 +01:00
|
|
|
if (empty($phpgw_info['server']['template_set'])) {
|
|
|
|
$phpgw_info['server']['template_set'] = 'default';
|
2001-02-06 14:46:50 +01:00
|
|
|
}
|
2001-01-11 10:52:33 +01:00
|
|
|
|
2001-02-11 21:03:35 +01:00
|
|
|
$imagedir = PHPGW_SERVER_ROOT . '/' . $appname . '/templates/'
|
|
|
|
. $phpgw_info['server']['template_set'] . '/images';
|
|
|
|
$imagedir_default = PHPGW_SERVER_ROOT . '/' . $appname . '/templates/default/images';
|
|
|
|
$imagedir_olddefault = PHPGW_SERVER_ROOT . '/' . $appname . '/images';
|
2001-01-11 10:52:33 +01:00
|
|
|
|
|
|
|
if (is_dir ($imagedir)){
|
2001-02-06 14:46:50 +01:00
|
|
|
return $imagedir;
|
|
|
|
} elseif (is_dir ($imagedir_default)) {
|
|
|
|
return $imagedir_default;
|
|
|
|
} elseif (is_dir ($imagedir_olddefault)) {
|
|
|
|
return $imagedir_olddefault;
|
|
|
|
} else {
|
|
|
|
return False;
|
2001-01-11 10:52:33 +01:00
|
|
|
}
|
|
|
|
}
|
2001-03-14 18:21:09 +01:00
|
|
|
/*!
|
|
|
|
@function get_image_path
|
|
|
|
@abstract get image path of an application
|
|
|
|
@param $appname appication name optional can be derived from $phpgw_info['flags']['currentapp'];
|
|
|
|
*/
|
2001-03-08 09:44:57 +01:00
|
|
|
function get_image_path($appname = '')
|
|
|
|
{
|
|
|
|
global $phpgw_info;
|
|
|
|
|
|
|
|
if ($appname == '')
|
|
|
|
{
|
|
|
|
$appname = $phpgw_info['flags']['currentapp'];
|
|
|
|
}
|
|
|
|
|
|
|
|
if (empty($phpgw_info['server']['template_set']))
|
|
|
|
{
|
|
|
|
$phpgw_info['server']['template_set'] = 'default';
|
|
|
|
}
|
|
|
|
|
|
|
|
$imagedir = PHPGW_SERVER_ROOT . '/'.$appname.'/templates/'.$phpgw_info['server']['template_set'].'/images';
|
|
|
|
$imagedir_default = PHPGW_SERVER_ROOT . '/'.$appname.'/templates/default/images';
|
|
|
|
$imagedir_olddefault = PHPGW_SERVER_ROOT . '/'.$appname.'/images';
|
|
|
|
|
|
|
|
if (is_dir ($imagedir))
|
|
|
|
{
|
|
|
|
return $phpgw_info['server']['webserver_url'].'/'.$appname.'/templates/'.$phpgw_info['server']['template_set'].'/images';
|
|
|
|
}
|
|
|
|
elseif (is_dir ($imagedir_default))
|
|
|
|
{
|
|
|
|
return $phpgw_info['server']['webserver_url'].'/'.$appname.'/templates/default/images';
|
|
|
|
}
|
|
|
|
elseif (is_dir ($imagedir_olddefault))
|
|
|
|
{
|
|
|
|
return $phpgw_info['server']['webserver_url'].'/'.$appname.'/images';
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return False;
|
|
|
|
}
|
|
|
|
}
|
2001-03-14 18:21:09 +01:00
|
|
|
/*!
|
|
|
|
@function navbar
|
|
|
|
@abstract none yet
|
|
|
|
@discussion *someone wanna add some detail here*
|
|
|
|
*/
|
2001-03-08 09:44:57 +01:00
|
|
|
function navbar()
|
|
|
|
{
|
|
|
|
global $phpgw_info, $phpgw;
|
|
|
|
|
|
|
|
$phpgw_info['navbar']['home']['title'] = 'Home';
|
|
|
|
$phpgw_info['navbar']['home']['url'] = $phpgw->link('/index.php');
|
|
|
|
$phpgw_info['navbar']['home']['icon'] = $phpgw_info['server']['webserver_url'] . '/phpgwapi/templates/'
|
|
|
|
. $phpgw_info['server']['template_set'] . '/images/home.gif';
|
|
|
|
|
|
|
|
reset($phpgw_info['user']['apps']);
|
|
|
|
while ($permission = each($phpgw_info['user']['apps']))
|
|
|
|
{
|
|
|
|
if (is_long($permission[0]))
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($phpgw_info['apps'][$permission[0]]['status'] != 2)
|
|
|
|
{
|
|
|
|
$phpgw_info['navbar'][$permission[0]]['title'] = $phpgw_info['apps'][$permission[0]]['title'];
|
|
|
|
$phpgw_info['navbar'][$permission[0]]['url'] = $phpgw->link('/' . $permission[0] . '/index.php');
|
|
|
|
$icon_file = PHPGW_SERVER_ROOT . '/'.$permission[0] . '/templates/'. $phpgw_info['server']['template_set']. '/images/navbar.gif';
|
|
|
|
|
|
|
|
if (file_exists($icon_file))
|
|
|
|
{
|
|
|
|
$phpgw_info['navbar'][$permission[0]]['icon'] = $phpgw_info['server']['webserver_url'] . '/'
|
|
|
|
. $permission[0] . '/templates/' . $phpgw_info['server']['template_set'] . '/images/navbar.gif';
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$phpgw_info['navbar'][$permission[0]]['icon'] = $phpgw_info['server']['webserver_url'] . '/'
|
|
|
|
. $permission[0] . '/templates/default/images/navbar.gif';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$phpgw_info['navbar']['preferences']['title'] = 'preferences';
|
|
|
|
$phpgw_info['navbar']['preferences']['url'] = $phpgw->link('/preferences/index.php');
|
|
|
|
$phpgw_info['navbar']['preferences']['icon'] = $phpgw_info['server']['webserver_url'] . '/preferences/templates/'
|
|
|
|
. $phpgw_info['server']['template_set'] . '/images/navbar.gif';
|
2001-01-11 10:52:33 +01:00
|
|
|
|
2001-03-08 09:44:57 +01:00
|
|
|
if ($phpgw_info['flags']['currentapp'] == 'home' || $phpgw_info['flags']['currentapp'] == 'preferences' || $phpgw_info['flags']['currentapp'] == 'about')
|
|
|
|
{
|
|
|
|
$app = 'phpGroupWare';
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$app = $phpgw_info['flags']['currentapp'];
|
|
|
|
}
|
2001-01-11 10:52:33 +01:00
|
|
|
|
2001-03-08 09:44:57 +01:00
|
|
|
// We handle this here becuase its special
|
|
|
|
$phpgw_info['navbar']['about']['title'] = lang('About x',$app);
|
2001-01-11 10:52:33 +01:00
|
|
|
|
2001-03-08 09:44:57 +01:00
|
|
|
$phpgw_info['navbar']['about']['url'] = $phpgw->link('/about.php','app='.$app);
|
|
|
|
$phpgw_info['navbar']['about']['icon'] = $phpgw_info['server']['webserver_url'] . '/phpgwapi/templates/'
|
2001-02-11 21:03:35 +01:00
|
|
|
. $phpgw_info['server']['template_set'] . '/images/about.gif';
|
2001-01-11 10:52:33 +01:00
|
|
|
|
2001-03-08 09:44:57 +01:00
|
|
|
$phpgw_info['navbar']['logout']['title'] = 'Logout';
|
|
|
|
$phpgw_info['navbar']['logout']['url'] = $phpgw->link('/logout.php');
|
|
|
|
$phpgw_info['navbar']['logout']['icon'] = $phpgw_info['server']['webserver_url'] . '/phpgwapi/templates/'
|
2001-02-11 21:03:35 +01:00
|
|
|
. $phpgw_info['server']['template_set'] . '/images/logout.gif';
|
2001-03-08 09:44:57 +01:00
|
|
|
}
|
2001-01-11 10:52:33 +01:00
|
|
|
|
2001-03-14 18:21:09 +01:00
|
|
|
/*!
|
|
|
|
@function app_header
|
|
|
|
@abstract load header.inc.php for an application
|
|
|
|
*/
|
2001-03-08 09:44:57 +01:00
|
|
|
function app_header()
|
|
|
|
{
|
|
|
|
if (file_exists(PHPGW_APP_INC . '/header.inc.php'))
|
|
|
|
{
|
|
|
|
include(PHPGW_APP_INC . '/header.inc.php');
|
|
|
|
}
|
|
|
|
}
|
2001-03-14 18:21:09 +01:00
|
|
|
/*!
|
|
|
|
@function phpgw_header
|
|
|
|
@abstract load the phpgw header
|
|
|
|
*/
|
2001-03-08 09:44:57 +01:00
|
|
|
function phpgw_header()
|
|
|
|
{
|
|
|
|
global $phpgw, $phpgw_info;
|
2001-01-11 10:52:33 +01:00
|
|
|
|
2001-03-08 09:44:57 +01:00
|
|
|
include(PHPGW_INCLUDE_ROOT . '/phpgwapi/templates/' . $phpgw_info['server']['template_set']
|
2001-02-11 21:03:35 +01:00
|
|
|
. '/head.inc.php');
|
2001-03-08 09:44:57 +01:00
|
|
|
$this->navbar(False);
|
|
|
|
include(PHPGW_INCLUDE_ROOT . '/phpgwapi/templates/' . $phpgw_info['server']['template_set']
|
2001-02-11 21:03:35 +01:00
|
|
|
. '/navbar.inc.php');
|
2001-03-08 09:44:57 +01:00
|
|
|
if ((! isset($phpgw_info['flags']['nonavbar']) || ! $phpgw_info['flags']['nonavbar']) && ! $phpgw_info['flags']['navbar_target'])
|
|
|
|
{
|
|
|
|
echo parse_navbar();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function phpgw_footer()
|
|
|
|
{
|
|
|
|
global $phpgw, $phpgw_info, $HTMLCOMPLAINT;
|
|
|
|
|
|
|
|
if (!isset($phpgw_info['flags']['nofooter']) || !$phpgw_info['flags']['nofooter'])
|
|
|
|
{
|
|
|
|
include(PHPGW_API_INC . '/footer.inc.php');
|
|
|
|
}
|
2001-01-11 10:52:33 +01:00
|
|
|
|
2001-03-08 09:44:57 +01:00
|
|
|
// Clean up mcrypt
|
|
|
|
if (is_object($this->crypto))
|
|
|
|
{
|
|
|
|
$this->crypto->cleanup();
|
|
|
|
unset($this->crypto);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function hex2bin($data)
|
|
|
|
{
|
|
|
|
$len = strlen($data);
|
|
|
|
return pack('H' . $len, $data);
|
|
|
|
}
|
2001-03-14 18:21:09 +01:00
|
|
|
/*!
|
|
|
|
@function encrypt
|
|
|
|
@abstract encrypt data passed to the function
|
|
|
|
@param $data data (string?) to be encrypted
|
|
|
|
*/
|
|
|
|
function encrypt($data)
|
2001-03-08 09:44:57 +01:00
|
|
|
{
|
|
|
|
global $phpgw_info, $phpgw;
|
|
|
|
|
|
|
|
$data = serialize($data);
|
|
|
|
return $phpgw->crypto->encrypt($data);
|
|
|
|
}
|
2001-03-14 18:21:09 +01:00
|
|
|
/*!
|
|
|
|
@function decrypt
|
|
|
|
@abstract decrypt $data
|
|
|
|
@param $data data to be decrypted
|
|
|
|
*/
|
2001-03-08 09:44:57 +01:00
|
|
|
function decrypt($data)
|
|
|
|
{
|
|
|
|
global $phpgw_info, $phpgw;
|
|
|
|
|
|
|
|
$data = $phpgw->crypto->decrypt($data);
|
|
|
|
return unserialize($data);
|
|
|
|
}
|
2001-03-14 18:21:09 +01:00
|
|
|
/*!
|
|
|
|
@function des_cryptpasswd
|
|
|
|
@abstract des encrypt a password
|
|
|
|
@param $userpass userpassword
|
|
|
|
@param $random random seed
|
|
|
|
*/
|
2001-03-08 09:44:57 +01:00
|
|
|
function des_cryptpasswd($userpass, $random)
|
|
|
|
{
|
|
|
|
$lcrypt = '{crypt}';
|
|
|
|
$password = crypt($userpass);
|
|
|
|
$ldappassword = sprintf('%s%s', $lcrypt, $password);
|
2001-01-11 10:52:33 +01:00
|
|
|
|
2001-03-08 09:44:57 +01:00
|
|
|
return $ldappassword;
|
|
|
|
}
|
2001-03-14 18:21:09 +01:00
|
|
|
/*!
|
|
|
|
@function md5_cryptpasswd
|
|
|
|
@abstract md5 encrypt password
|
|
|
|
@param $userpass user password
|
|
|
|
@param $random random seed
|
|
|
|
*/
|
|
|
|
function md5_cryptpasswd($userpass, $random)
|
2001-01-11 10:52:33 +01:00
|
|
|
{
|
|
|
|
$bsalt = "$1$";
|
|
|
|
$esalt = "$"; // patch
|
|
|
|
$lcrypt = "{crypt}";
|
|
|
|
// $modsalt = sprintf("%s%s", $bsalt, $random);
|
|
|
|
$modsalt = sprintf("%s%s%s", $bsalt, $random, $esalt); // patch
|
|
|
|
$password = crypt($userpass, $modsalt);
|
|
|
|
$ldappassword = sprintf("%s%s", $lcrypt, $password);
|
|
|
|
|
|
|
|
return $ldappassword;
|
|
|
|
}
|
2001-03-14 18:21:09 +01:00
|
|
|
/*!
|
|
|
|
@function encrypt_password
|
|
|
|
@abstract encrypt password
|
|
|
|
@abstract uses the encryption type set in setup and calls the appropriate encryption functions
|
|
|
|
@param $password password to encrypt
|
|
|
|
*/
|
2001-01-11 10:52:33 +01:00
|
|
|
function encrypt_password($password)
|
|
|
|
{
|
|
|
|
global $phpgw, $phpgw_info;
|
|
|
|
|
2001-02-11 21:03:35 +01:00
|
|
|
if ($phpgw_info['server']['ldap_encryption_type'] == 'DES') {
|
2001-01-11 10:52:33 +01:00
|
|
|
$salt = $this->randomstring(2);
|
|
|
|
$e_password = $this->des_cryptpasswd($password, $salt);
|
|
|
|
}
|
2001-02-11 21:03:35 +01:00
|
|
|
if ($phpgw_info['server']['ldap_encryption_type'] == 'MD5') {
|
2001-01-11 10:52:33 +01:00
|
|
|
// $salt = $this->randomstring(9);
|
|
|
|
$salt = $this->randomstring(8); // patch
|
|
|
|
$e_password = $this->md5_cryptpasswd($password, $salt);
|
|
|
|
}
|
|
|
|
return $e_password;
|
|
|
|
}
|
2001-03-14 18:21:09 +01:00
|
|
|
/*!
|
|
|
|
@function hook
|
|
|
|
@abstract hooking function which allows applications to "hook" into each other
|
|
|
|
@discussion Someone flesh this out please
|
|
|
|
*/
|
2001-03-14 13:10:01 +01:00
|
|
|
function hook($location = '', $order = '')
|
|
|
|
{
|
|
|
|
global $phpgw, $phpgw_info;
|
|
|
|
if ($order == '')
|
|
|
|
{
|
|
|
|
$order[] = $phpgw_info['flags']['currentapp'];
|
|
|
|
}
|
|
|
|
|
|
|
|
/* First include the ordered apps hook file */
|
|
|
|
reset ($order);
|
|
|
|
while (list (, $appname) = each ($order))
|
|
|
|
{
|
|
|
|
$f = PHPGW_SERVER_ROOT . '/' . $appname . '/inc/hook_'.$phpgw_info['flags']['currentapp'];
|
|
|
|
if ($location != '')
|
|
|
|
{
|
|
|
|
$f .= '_'.$location.'.inc.php';
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$f .= '.inc.php';
|
|
|
|
}
|
|
|
|
|
2001-03-14 13:17:24 +01:00
|
|
|
if (file_exists($f) && ($phpgw_info['user']['apps'][$appname] || $appname == 'preferences'))
|
2001-03-14 13:10:01 +01:00
|
|
|
{
|
|
|
|
include($f);
|
|
|
|
}
|
|
|
|
$completed_hooks[$appname] = True;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Then add the rest */
|
|
|
|
reset ($phpgw_info['user']['apps']);
|
|
|
|
while ($permission = each($phpgw_info['user']['apps']))
|
|
|
|
{
|
|
|
|
if ($completed_hooks[$permission[0]] != True)
|
|
|
|
{
|
|
|
|
$appname = $permission[0];
|
|
|
|
$f = PHPGW_SERVER_ROOT . '/' . $permission[0] . '/inc/hook_'.$phpgw_info['flags']['currentapp'];
|
|
|
|
if ($location != '')
|
|
|
|
{
|
|
|
|
$f .= '_'.$location.'.inc.php';
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$f .= '.inc.php';
|
|
|
|
}
|
|
|
|
|
2001-03-14 13:17:24 +01:00
|
|
|
if (file_exists($f) && ($phpgw_info['user']['apps'][$appname] || $appname == 'preferences'))
|
2001-03-14 13:10:01 +01:00
|
|
|
{
|
|
|
|
include($f);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2001-01-11 10:52:33 +01:00
|
|
|
|
2001-03-14 18:21:09 +01:00
|
|
|
/*!
|
|
|
|
@function hook_single
|
|
|
|
@abstract call the hooks for a single application
|
|
|
|
@param $location hook location - optional
|
|
|
|
@param $appname application name - optional
|
|
|
|
*/
|
|
|
|
function hook_single($location = '', $appname = '')
|
2001-01-11 10:52:33 +01:00
|
|
|
{
|
|
|
|
global $phpgw, $phpgw_info;
|
|
|
|
if (! $appname) {
|
2001-02-11 21:03:35 +01:00
|
|
|
$appname = $phpgw_info['flags']['currentapp'];
|
2001-01-11 10:52:33 +01:00
|
|
|
}
|
|
|
|
$s = $phpgw->common->filesystem_separator();
|
|
|
|
/* First include the ordered apps hook file */
|
2001-02-11 21:03:35 +01:00
|
|
|
$f = PHPGW_SERVER_ROOT . $s . $appname . $s . 'inc' . $s . 'hook_'.$appname;
|
|
|
|
if ($location != '') {
|
|
|
|
$f .= '_'.$location.'.inc.php';
|
2001-01-11 10:52:33 +01:00
|
|
|
} else {
|
2001-02-11 21:03:35 +01:00
|
|
|
$f .= '.inc.php';
|
2001-01-11 10:52:33 +01:00
|
|
|
}
|
|
|
|
if (file_exists($f)) {
|
|
|
|
include($f);
|
|
|
|
return True;
|
|
|
|
} else {
|
|
|
|
return False;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-03-14 18:21:09 +01:00
|
|
|
/*!
|
|
|
|
@function hook_count
|
|
|
|
@abstract loop through the applications and count the hooks
|
|
|
|
*/
|
2001-02-11 21:03:35 +01:00
|
|
|
function hook_count($location = ''){
|
2001-01-11 10:52:33 +01:00
|
|
|
global $phpgw, $phpgw_info;
|
|
|
|
$count = 0;
|
2001-02-11 21:03:35 +01:00
|
|
|
reset($phpgw_info['user']['apps']);
|
|
|
|
while ($permission = each($phpgw_info['user']['apps'])) {
|
|
|
|
$f = PHPGW_SERVER_ROOT . '/' . $permission[0] . '/inc/hook_'.$phpgw_info['flags']['currentapp'];
|
|
|
|
if ($location != ''){$f .= '_'.$location.'.inc.php';}else{$f .= '.inc.php'; }
|
2001-01-11 10:52:33 +01:00
|
|
|
if (file_exists($f)) {++$count;}
|
|
|
|
}
|
|
|
|
return $count;
|
|
|
|
}
|
|
|
|
|
2001-02-07 21:22:17 +01:00
|
|
|
/* Wrapper to the session->appsession() */
|
2001-02-11 21:03:35 +01:00
|
|
|
function appsession($data = '##NOTHING##') {
|
2001-02-07 21:22:17 +01:00
|
|
|
global $phpgw_info, $phpgw;
|
2001-02-24 23:56:31 +01:00
|
|
|
return $phpgw->session->appsession('default','',$data);
|
2001-02-07 21:22:17 +01:00
|
|
|
}
|
2001-03-14 18:21:09 +01:00
|
|
|
/*!
|
|
|
|
@function show_date
|
|
|
|
@abstract show current date
|
|
|
|
@param $t time - optional can be pulled from user preferences
|
|
|
|
@param $format - optional can be pulled from user prefernces
|
|
|
|
*/
|
2001-02-11 21:03:35 +01:00
|
|
|
function show_date($t = '', $format = '')
|
2001-01-11 10:52:33 +01:00
|
|
|
{
|
|
|
|
global $phpgw_info;
|
|
|
|
|
|
|
|
if (! $t)
|
|
|
|
$t = time();
|
|
|
|
|
2001-02-11 21:03:35 +01:00
|
|
|
$t = $t + ((60*60) * $phpgw_info['user']['preferences']['common']['tz_offset']);
|
2001-01-11 10:52:33 +01:00
|
|
|
|
|
|
|
if (! $format) {
|
2001-02-11 21:03:35 +01:00
|
|
|
$format = $phpgw_info['user']['preferences']['common']['dateformat'] . ' - ';
|
|
|
|
if ($phpgw_info['user']['preferences']['common']['timeformat'] == '12') {
|
|
|
|
$format .= 'h:i:s a';
|
2001-01-11 10:52:33 +01:00
|
|
|
} else {
|
2001-02-11 21:03:35 +01:00
|
|
|
$format .= 'H:i:s';
|
2001-01-11 10:52:33 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return date($format,$t);
|
|
|
|
}
|
2001-03-15 06:55:06 +01:00
|
|
|
/*!
|
|
|
|
@function dateformatorder
|
|
|
|
@abstract
|
|
|
|
@param $yearstr year - string
|
|
|
|
@param $monthstr month - string
|
|
|
|
@param $day day - string
|
|
|
|
@param $add_seperator boolean defaults to false
|
|
|
|
*/
|
2001-01-11 10:52:33 +01:00
|
|
|
function dateformatorder($yearstr,$monthstr,$daystr,$add_seperator = False)
|
|
|
|
{
|
|
|
|
global $phpgw_info;
|
2001-02-11 21:03:35 +01:00
|
|
|
$dateformat = strtolower($phpgw_info['user']['preferences']['common']['dateformat']);
|
|
|
|
$sep = substr($phpgw_info['user']['preferences']['common']['dateformat'],1,1);
|
2001-01-11 10:52:33 +01:00
|
|
|
|
|
|
|
$dlarr[strpos($dateformat,'y')] = $yearstr;
|
|
|
|
$dlarr[strpos($dateformat,'m')] = $monthstr;
|
|
|
|
$dlarr[strpos($dateformat,'d')] = $daystr;
|
|
|
|
ksort($dlarr);
|
|
|
|
|
|
|
|
if ($add_seperator) {
|
|
|
|
return (implode($sep,$dlarr));
|
|
|
|
} else {
|
2001-02-11 21:03:35 +01:00
|
|
|
return (implode(' ',$dlarr));
|
2001-01-11 10:52:33 +01:00
|
|
|
}
|
|
|
|
}
|
2001-03-15 06:55:06 +01:00
|
|
|
/*!
|
|
|
|
@function formattime
|
|
|
|
@abstract format the time takes settings from user preferences
|
|
|
|
@param $hour hour
|
|
|
|
@param $min minutes
|
|
|
|
@param $sec defaults to ''
|
|
|
|
*/
|
2001-02-11 21:03:35 +01:00
|
|
|
function formattime($hour,$min,$sec='')
|
2001-01-11 10:52:33 +01:00
|
|
|
{
|
|
|
|
global $phpgw_info;
|
|
|
|
|
|
|
|
$h12 = $hour;
|
2001-02-11 21:03:35 +01:00
|
|
|
if ($phpgw_info['user']['preferences']['common']['timeformat'] == '12') {
|
2001-03-22 18:29:37 +01:00
|
|
|
if ($hour >= 12)
|
2001-02-11 21:03:35 +01:00
|
|
|
$ampm = ' pm';
|
2001-01-11 10:52:33 +01:00
|
|
|
else
|
2001-02-11 21:03:35 +01:00
|
|
|
$ampm = ' am';
|
2001-01-11 10:52:33 +01:00
|
|
|
$h12 %= 12;
|
|
|
|
if ($h12 == 0 && $hour)
|
|
|
|
$h12 = 12;
|
|
|
|
if ($h12 == 0 && ! $hour)
|
|
|
|
$h12 = 0;
|
|
|
|
} else
|
|
|
|
$h12 = $hour;
|
|
|
|
|
|
|
|
if ($sec)
|
|
|
|
$sec = ":$sec";
|
|
|
|
|
|
|
|
return "$h12:$min$sec$ampm";
|
|
|
|
}
|
|
|
|
|
2001-02-20 09:29:31 +01:00
|
|
|
|
|
|
|
// This is not the best place for it, but it needs to be shared bewteen Aeromail and SM
|
2001-03-15 06:55:06 +01:00
|
|
|
/*!
|
|
|
|
@function create_emailpreferences
|
|
|
|
@abstract create email preferences
|
|
|
|
@discussion This is not the best place for it, but it needs to be shared between Aeromail and SM
|
|
|
|
@param $prefs
|
|
|
|
@param $account_id -optional defaults to : phpgw_info['user']['account_id']
|
|
|
|
*/
|
2001-03-19 21:25:04 +01:00
|
|
|
function create_emailpreferences($prefs,$accountid='')
|
2001-02-20 09:29:31 +01:00
|
|
|
{
|
2001-03-07 20:02:25 +01:00
|
|
|
global $phpgw, $phpgw_info;
|
|
|
|
|
2001-03-19 21:25:04 +01:00
|
|
|
$account_id = get_account_id($accountid);
|
2001-02-20 09:29:31 +01:00
|
|
|
|
2001-03-07 20:02:25 +01:00
|
|
|
/* Add default preferences info */
|
|
|
|
if (!isset($prefs['email']['userid']))
|
2001-02-20 09:29:31 +01:00
|
|
|
{
|
2001-03-07 20:02:25 +01:00
|
|
|
if ($phpgw_info['server']['mail_login_type'] == 'vmailmgr')
|
2001-02-20 09:29:31 +01:00
|
|
|
{
|
2001-03-07 20:02:25 +01:00
|
|
|
$prefs['email']['userid'] = $phpgw->accounts->id2name($account_id)
|
|
|
|
. '@' . $phpgw_info['server']['mail_suffix'];
|
2001-02-20 09:29:31 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2001-03-07 20:02:25 +01:00
|
|
|
$prefs['email']['userid'] = $phpgw->accounts->id2name($account_id);
|
2001-02-20 09:29:31 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
/* Set Server Mail Type if not defined */
|
2001-03-07 20:02:25 +01:00
|
|
|
if (empty($phpgw_info['server']['mail_server_type']))
|
2001-02-20 09:29:31 +01:00
|
|
|
{
|
2001-03-07 20:02:25 +01:00
|
|
|
$phpgw_info['server']['mail_server_type'] = 'imap';
|
2001-02-20 09:29:31 +01:00
|
|
|
}
|
|
|
|
|
2001-03-07 20:02:25 +01:00
|
|
|
if (!isset($prefs['email']['passwd']))
|
2001-02-20 09:29:31 +01:00
|
|
|
{
|
2001-03-07 20:02:25 +01:00
|
|
|
$prefs['email']['passwd'] = $phpgw_info['user']['passwd'];
|
2001-02-20 09:29:31 +01:00
|
|
|
}
|
2001-02-21 04:48:59 +01:00
|
|
|
else
|
|
|
|
{
|
2001-03-07 20:02:25 +01:00
|
|
|
$prefs['email']['passwd'] = $this->decrypt($prefs['email']['passwd']);
|
2001-02-21 04:48:59 +01:00
|
|
|
}
|
2001-03-07 20:02:25 +01:00
|
|
|
if (!isset($prefs['email']['address']))
|
2001-02-20 09:29:31 +01:00
|
|
|
{
|
2001-03-07 20:02:25 +01:00
|
|
|
$prefs['email']['address'] = $phpgw->accounts->id2name($account_id)
|
|
|
|
. '@' . $phpgw_info['server']['mail_suffix'];
|
2001-02-20 09:29:31 +01:00
|
|
|
}
|
2001-03-07 20:02:25 +01:00
|
|
|
if (!isset($prefs['email']['mail_server']))
|
2001-02-20 09:29:31 +01:00
|
|
|
{
|
2001-03-07 20:02:25 +01:00
|
|
|
$prefs['email']['mail_server'] = $phpgw_info['server']['mail_server'];
|
2001-02-20 09:29:31 +01:00
|
|
|
}
|
2001-03-07 20:02:25 +01:00
|
|
|
if (!isset($prefs['email']['mail_server_type']))
|
2001-02-20 09:29:31 +01:00
|
|
|
{
|
2001-03-07 20:02:25 +01:00
|
|
|
$prefs['email']['mail_server_type'] = $phpgw_info['server']['mail_server_type'];
|
2001-02-20 09:29:31 +01:00
|
|
|
}
|
2001-03-07 20:02:25 +01:00
|
|
|
if (!isset($prefs['email']['imap_server_type']))
|
2001-02-20 09:29:31 +01:00
|
|
|
{
|
2001-03-07 20:02:25 +01:00
|
|
|
$prefs['email']['imap_server_type'] = $phpgw_info['server']['imap_server_type'];
|
2001-02-20 09:29:31 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* These sets the mail_port server variable */
|
2001-03-07 20:02:25 +01:00
|
|
|
if ($prefs['email']['mail_server_type']=='imap')
|
2001-02-20 09:29:31 +01:00
|
|
|
{
|
2001-03-07 20:02:25 +01:00
|
|
|
$prefs['email']['mail_port'] = '143';
|
2001-02-20 09:29:31 +01:00
|
|
|
}
|
2001-03-07 20:02:25 +01:00
|
|
|
elseif ($prefs['mail']['mail_server_type']=='pop3')
|
2001-02-20 09:29:31 +01:00
|
|
|
{
|
2001-03-07 20:02:25 +01:00
|
|
|
$prefs['email']['mail_port'] = '110';
|
2001-02-20 09:29:31 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* This is going to be used to switch to the nntp class */
|
2001-03-07 20:02:25 +01:00
|
|
|
if ($phpgw_info['flags']['newsmode'])
|
2001-02-20 09:29:31 +01:00
|
|
|
{
|
2001-03-07 20:02:25 +01:00
|
|
|
$prefs['email']['mail_server_type'] = 'nntp';
|
2001-02-21 04:02:20 +01:00
|
|
|
}
|
2001-03-08 19:51:17 +01:00
|
|
|
return $prefs;
|
2001-02-20 09:29:31 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2001-01-11 10:52:33 +01:00
|
|
|
// This will be moved into the applications area.
|
2001-03-15 06:55:06 +01:00
|
|
|
/*!
|
|
|
|
@function check_code
|
|
|
|
@abstract ?
|
|
|
|
@discussion This will be moved into the applications area
|
|
|
|
*/
|
2001-01-11 10:52:33 +01:00
|
|
|
function check_code($code)
|
|
|
|
{
|
2001-02-11 21:03:35 +01:00
|
|
|
$s = '<br>';
|
2001-01-11 10:52:33 +01:00
|
|
|
switch ($code)
|
|
|
|
{
|
2001-02-11 21:03:35 +01:00
|
|
|
case 13: $s .= lang('Your message has been sent');break;
|
|
|
|
case 14: $s .= lang('New entry added sucessfully');break;
|
|
|
|
case 15: $s .= lang('Entry updated sucessfully'); break;
|
|
|
|
case 16: $s .= lang('Entry has been deleted sucessfully'); break;
|
|
|
|
case 18: $s .= lang('Password has been updated'); break;
|
|
|
|
case 38: $s .= lang('Password could not be changed'); break;
|
|
|
|
case 19: $s .= lang('Session has been killed'); break;
|
|
|
|
case 27: $s .= lang('Account has been updated'); break;
|
|
|
|
case 28: $s .= lang('Account has been created'); break;
|
|
|
|
case 29: $s .= lang('Account has been deleted'); break;
|
|
|
|
case 30: $s .= lang('Your settings have been updated'); break;
|
|
|
|
case 31: $s .= lang('Group has been added'); break;
|
|
|
|
case 32: $s .= lang('Group has been deleted'); break;
|
|
|
|
case 33: $s .= lang('Group has been updated'); break;
|
|
|
|
case 34: $s .= lang('Account has been deleted') . '<p>'
|
|
|
|
. lang('Error deleting x x directory',lang('users'),' '.lang('private').' ')
|
|
|
|
. ',<br>' . lang('Please x by hand',lang('delete')) . '<br><br>'
|
|
|
|
. lang('To correct this error for the future you will need to properly set the')
|
|
|
|
. '<br>' . lang('permissions to the files/users directory')
|
2001-03-16 05:04:08 +01:00
|
|
|
. '<br>' . lang('On *nix systems please type: x','chmod 770 '
|
2001-02-11 21:03:35 +01:00
|
|
|
. $phpgw_info['server']['files_dir'] . '/users/');
|
2001-01-11 10:52:33 +01:00
|
|
|
break;
|
2001-02-11 21:03:35 +01:00
|
|
|
case 35: $s .= lang('Account has been updated') . '<p>'
|
|
|
|
. lang('Error renaming x x directory',lang('users'),
|
|
|
|
' '.lang('private').' ')
|
|
|
|
. ',<br>' . lang('Please x by hand',
|
|
|
|
lang('rename')) . '<br><br>'
|
|
|
|
. lang('To correct this error for the future you will need to properly set the')
|
|
|
|
. '<br>' . lang('permissions to the files/users directory')
|
2001-03-16 05:04:08 +01:00
|
|
|
. '<br>' . lang('On *nix systems please type: x','chmod 770 '
|
2001-02-11 21:03:35 +01:00
|
|
|
. $phpgw_info['server']['files_dir'] . '/users/');
|
2001-01-11 10:52:33 +01:00
|
|
|
break;
|
2001-02-11 21:03:35 +01:00
|
|
|
case 36: $s .= lang('Account has been created') . '<p>'
|
|
|
|
. lang('Error creating x x directory',lang('users'),
|
|
|
|
' '.lang('private').' ')
|
|
|
|
. ',<br>' . lang('Please x by hand',
|
|
|
|
lang('create')) . '<br><br>'
|
|
|
|
. lang('To correct this error for the future you will need to properly set the')
|
|
|
|
. '<br>' . lang('permissions to the files/users directory')
|
2001-03-16 05:04:08 +01:00
|
|
|
. '<br>' . lang('On *nix systems please type: x','chmod 770 '
|
2001-02-11 21:03:35 +01:00
|
|
|
. $phpgw_info['server']['files_dir'] . '/users/');
|
2001-01-11 10:52:33 +01:00
|
|
|
break;
|
2001-02-11 21:03:35 +01:00
|
|
|
case 37: $s .= lang('Group has been added') . '<p>'
|
|
|
|
. lang('Error creating x x directory',lang('groups'),' ')
|
|
|
|
. ',<br>' . lang('Please x by hand',
|
|
|
|
lang('create')) . '<br><br>'
|
|
|
|
. lang('To correct this error for the future you will need to properly set the')
|
|
|
|
. '<br>' . lang('permissions to the files/users directory')
|
2001-03-16 05:04:08 +01:00
|
|
|
. '<br>' . lang('On *nix systems please type: x','chmod 770 '
|
2001-02-11 21:03:35 +01:00
|
|
|
. $phpgw_info['server']['files_dir'] . '/groups/');
|
2001-01-11 10:52:33 +01:00
|
|
|
break;
|
2001-02-11 21:03:35 +01:00
|
|
|
case 38: $s .= lang('Group has been deleted') . '<p>'
|
|
|
|
. lang('Error deleting x x directory',lang('groups'),' ')
|
|
|
|
. ',<br>' . lang('Please x by hand',
|
|
|
|
lang('delete')) . '<br><br>'
|
|
|
|
. lang('To correct this error for the future you will need to properly set the')
|
|
|
|
. '<br>' . lang('permissions to the files/users directory')
|
2001-03-16 05:04:08 +01:00
|
|
|
. '<br>' . lang('On *nix systems please type: x','chmod 770 '
|
2001-02-11 21:03:35 +01:00
|
|
|
. $phpgw_info['server']['files_dir'] . '/groups/');
|
2001-01-11 10:52:33 +01:00
|
|
|
break;
|
2001-02-11 21:03:35 +01:00
|
|
|
case 39: $s .= lang('Group has been updated') . '<p>'
|
|
|
|
. lang('Error renaming x x directory',lang('groups'),' ')
|
|
|
|
. ',<br>' . lang('Please x by hand',
|
|
|
|
lang('rename')) . '<br><br>'
|
|
|
|
. lang('To correct this error for the future you will need to properly set the')
|
|
|
|
. '<br>' . lang('permissions to the files/users directory')
|
2001-03-16 05:04:08 +01:00
|
|
|
. '<br>' . lang('On *nix systems please type: x','chmod 770 '
|
2001-02-11 21:03:35 +01:00
|
|
|
. $phpgw_info['server']['files_dir'] . '/groups/');
|
2001-01-11 10:52:33 +01:00
|
|
|
break;
|
2001-02-11 21:03:35 +01:00
|
|
|
case 40: $s .= lang('You have not entered a\nBrief Description').'.';
|
2001-01-11 10:52:33 +01:00
|
|
|
break;
|
2001-02-11 21:03:35 +01:00
|
|
|
case 41: $s .= lang('You have not entered a\nvalid time of day.');
|
2001-01-11 10:52:33 +01:00
|
|
|
break;
|
2001-02-11 21:03:35 +01:00
|
|
|
case 42: $s .= lang('You have not entered a\nvalid date.');
|
2001-01-11 10:52:33 +01:00
|
|
|
break;
|
2001-02-11 21:03:35 +01:00
|
|
|
default: return '';
|
2001-01-11 10:52:33 +01:00
|
|
|
}
|
|
|
|
return $s;
|
|
|
|
}
|
2001-03-15 06:55:06 +01:00
|
|
|
/*!
|
|
|
|
@fucntion phpgw_error
|
|
|
|
@abstract process error message
|
|
|
|
@param $error error
|
|
|
|
@param $line line
|
|
|
|
@param $file file
|
|
|
|
*/
|
2001-02-11 21:03:35 +01:00
|
|
|
function phpgw_error($error,$line = '', $file = '')
|
2001-01-11 10:52:33 +01:00
|
|
|
{
|
2001-02-11 21:03:35 +01:00
|
|
|
echo '<p><b>phpGroupWare internal error:</b><p>'.$error;
|
2001-01-11 10:52:33 +01:00
|
|
|
if ($line) {
|
2001-02-11 21:03:35 +01:00
|
|
|
echo 'Line: '.$line;
|
2001-01-11 10:52:33 +01:00
|
|
|
}
|
|
|
|
if ($file) {
|
2001-02-11 21:03:35 +01:00
|
|
|
echo 'File: '.$file;
|
2001-01-11 10:52:33 +01:00
|
|
|
}
|
2001-02-11 21:03:35 +01:00
|
|
|
echo '<p>Your session has been halted.';
|
2001-01-11 10:52:33 +01:00
|
|
|
exit;
|
|
|
|
}
|
|
|
|
|
2001-03-15 06:55:06 +01:00
|
|
|
/*!
|
|
|
|
@function create_phpcode_from_array
|
|
|
|
@abstract create phpcode from array
|
|
|
|
@param $array - array
|
|
|
|
*/
|
2001-01-11 10:52:33 +01:00
|
|
|
function create_phpcode_from_array($array)
|
|
|
|
{
|
|
|
|
while (list($key, $val) = each($array)) {
|
|
|
|
if (is_array($val)) {
|
|
|
|
while (list($key2, $val2) = each($val)) {
|
|
|
|
if (is_array($val2)) {
|
|
|
|
while (list($key3, $val3) = each ($val2)) {
|
|
|
|
if (is_array($val3)) {
|
|
|
|
while (list($key4, $val4) = each ($val3)) {
|
|
|
|
$s .= '$phpgw_info["' . $key . '"]["' . $key2 . '"]["' . $key3 . '"]["' .$key4 . '"]="' . $val4 . '";';
|
|
|
|
$s .= "\n";
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$s .= '$phpgw_info["' . $key . '"]["' . $key2 . '"]["' . $key3 . '"]="' . $val3 . '";';
|
|
|
|
$s .= "\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$s .= '$phpgw_info["' . $key .'"]["' . $key2 . '"]="' . $val2 . '";';
|
|
|
|
$s .= "\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$s .= '$phpgw_info["' . $key . '"]="' . $val . '";';
|
|
|
|
$s .= "\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $s;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-03-15 06:55:06 +01:00
|
|
|
// This will return the full phpgw_info array, used for debugging
|
|
|
|
/*!
|
|
|
|
@function debug_list_array_contents
|
|
|
|
@abstract return the full phpgw_info array for debugging
|
|
|
|
@param array - array
|
|
|
|
*/
|
2001-02-08 05:42:44 +01:00
|
|
|
function debug_list_array_contents($array)
|
2001-01-11 10:52:33 +01:00
|
|
|
{
|
2001-02-08 05:42:44 +01:00
|
|
|
while (list($key, $val) = each($array)) {
|
2001-01-11 10:52:33 +01:00
|
|
|
if (is_array($val)) {
|
|
|
|
while (list($key2, $val2) = each($val)) {
|
|
|
|
if (is_array($val2)) {
|
|
|
|
while (list($key3, $val3) = each ($val2)) {
|
|
|
|
if (is_array($val3)) {
|
|
|
|
while (list($key4, $val4) = each ($val3)) {
|
2001-02-08 05:42:44 +01:00
|
|
|
echo $$array . "[$key][$key2][$key3][$key4]=$val4<br>";
|
2001-01-11 10:52:33 +01:00
|
|
|
}
|
|
|
|
} else {
|
2001-02-08 05:42:44 +01:00
|
|
|
echo $$array . "[$key][$key2][$key3]=$val3<br>";
|
2001-01-11 10:52:33 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
2001-02-08 05:42:44 +01:00
|
|
|
echo $$array . "[$key][$key2]=$val2<br>";
|
2001-01-11 10:52:33 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
2001-02-08 05:42:44 +01:00
|
|
|
echo $$array . "[$key]=$val<br>";
|
2001-01-11 10:52:33 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// This will return a list of functions in the API
|
2001-03-15 06:55:06 +01:00
|
|
|
/*!
|
|
|
|
@function debug_list_core_functions
|
|
|
|
@abstract return a list of functionsin the API
|
|
|
|
*/
|
|
|
|
|
2001-01-11 10:52:33 +01:00
|
|
|
function debug_list_core_functions()
|
|
|
|
{
|
2001-02-11 21:03:35 +01:00
|
|
|
echo '<br><b>core functions</b><br>';
|
|
|
|
echo '<pre>';
|
|
|
|
chdir(PHPGW_INCLUDE_ROOT . '/phpgwapi');
|
2001-01-11 10:52:33 +01:00
|
|
|
system("grep -r '^[ \t]*function' *");
|
2001-02-11 21:03:35 +01:00
|
|
|
echo '</pre>';
|
2001-01-11 10:52:33 +01:00
|
|
|
}
|
2001-03-22 09:23:35 +01:00
|
|
|
|
2001-03-23 05:42:22 +01:00
|
|
|
// This will return a value for the next id an app/class may need to insert values into ldap.
|
2001-03-22 09:23:35 +01:00
|
|
|
/*!
|
|
|
|
@function next_id
|
|
|
|
@abstract return the next higher value for an integer, and increment it in the db.
|
|
|
|
*/
|
|
|
|
function next_id($appname)
|
|
|
|
{
|
|
|
|
global $phpgw;
|
|
|
|
|
|
|
|
if (!$appname) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
$phpgw->db->query("SELECT id FROM phpgw_nextid WHERE appname='".$appname."'");
|
|
|
|
while( $phpgw->db->next_record() ) {
|
|
|
|
$id = $phpgw->db->f("id");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (empty($id) || !$id) {
|
|
|
|
$id = 1;
|
|
|
|
$phpgw->db->query("INSERT INTO phpgw_nextid (appname,id) VALUES ('".$appname."',".$id.")");
|
|
|
|
$phpgw->db->query("UPDATE phpgw_nextid SET id=".$id." WHERE appname='".$appname."'");
|
|
|
|
} else {
|
|
|
|
$id = $id + 1;
|
|
|
|
$phpgw->db->query("UPDATE phpgw_nextid SET id=".$id." WHERE appname='".$appname."'");
|
|
|
|
}
|
|
|
|
|
|
|
|
return intval($id);
|
|
|
|
}
|
2001-03-23 05:42:22 +01:00
|
|
|
|
|
|
|
// This will return a value for the last id entered, which an app may need to check
|
|
|
|
// values for ldap.
|
|
|
|
/*!
|
|
|
|
@function last_id
|
|
|
|
@abstract return the current id in the next_id table for a particular app/class.
|
|
|
|
*/
|
|
|
|
function last_id($appname)
|
|
|
|
{
|
|
|
|
global $phpgw;
|
|
|
|
|
|
|
|
if (!$appname) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
$phpgw->db->query("SELECT id FROM phpgw_nextid WHERE appname='".$appname."'");
|
|
|
|
while( $phpgw->db->next_record() ) {
|
|
|
|
$id = $phpgw->db->f("id");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (empty($id) || !$id) {
|
|
|
|
return -1;
|
|
|
|
} else {
|
|
|
|
return intval($id);
|
|
|
|
}
|
|
|
|
}
|
2001-01-28 13:07:20 +01:00
|
|
|
}//end common class
|