From 9dfd13af5efc82f1213fa101147e9d66ff1f1521 Mon Sep 17 00:00:00 2001 From: skeeter Date: Wed, 21 Mar 2001 05:42:40 +0000 Subject: [PATCH] Juggling get_account_id() again. --- phpgwapi/inc/functions.inc.php | 76 +++++++++++++++++----------------- 1 file changed, 38 insertions(+), 38 deletions(-) diff --git a/phpgwapi/inc/functions.inc.php b/phpgwapi/inc/functions.inc.php index 85b594de2d..6d01f4298c 100644 --- a/phpgwapi/inc/functions.inc.php +++ b/phpgwapi/inc/functions.inc.php @@ -97,44 +97,6 @@ if ($debugme == "on") { echo 'debug: '.$text.'
'; } } - /************************************************************************\ - * This function will return a properly formatted account_id. * - * This needs to be placed here, or some classes will have a problem * - * on instantiation. * - \************************************************************************/ - function get_account_id($account_id = '',$default_id = '') - { - global $phpgw, $phpgw_info; - - if (gettype($account_id) == 'integer') - { - return $account_id; - } - elseif ($account_id == '') - { - if ($default_id == '') - { - return $phpgw_info['user']['account_id']; - } - elseif (gettype($default_id) == 'string') - { - return $phpgw->accounts->name2id($default_id); - } - return intval($default_id); - } - elseif (gettype($account_id) == 'string') - { - if($phpgw->accounts->exists(intval($account_id)) == True) - { - return intval($account_id); - } - else - { - return $phpgw->accounts->name2id($account_id); - } - } - } - print_debug('core functions are done'); /****************************************************************************\ * Quick verification of sane environment * @@ -427,4 +389,42 @@ } error_reporting(7); + + /************************************************************************\ + * This function will return a properly formatted account_id. * + * This needs to be placed here, or some classes will have a problem * + * on instantiation. * + \************************************************************************/ + function get_account_id($account_id = '',$default_id = '') + { + global $phpgw, $phpgw_info; + + if (gettype($account_id) == 'integer') + { + return $account_id; + } + elseif ($account_id == '') + { + if ($default_id == '') + { + return $phpgw_info['user']['account_id']; + } + elseif (gettype($default_id) == 'string') + { + return $phpgw->accounts->name2id($default_id); + } + return intval($default_id); + } + elseif (gettype($account_id) == 'string') + { + if($phpgw->accounts->exists(intval($account_id)) == True) + { + return intval($account_id); + } + else + { + return $phpgw->accounts->name2id($account_id); + } + } + }