// Init user data array
function initUserData () {
// User id should not be zero
- if (getCurrentUserId() == '0') debug_report_bug('User id is zero.');
+ if (getCurrentUserId() == '0') debug_report_bug(__FUNCTION__.': User id is zero.');
// Init the user
$GLOBALS['user_data'][getCurrentUserId()] = array();
// Getter for user data
function getUserData ($column) {
// User id should not be zero
- if (getCurrentUserId() == '0') debug_report_bug('User id is zero.');
+ if (getCurrentUserId() == '0') debug_report_bug(__FUNCTION__.': User id is zero.');
// Return the value
return $GLOBALS['user_data'][getCurrentUserId()][$column];
// Geter for whole user data array
function getUserDataArray () {
// User id should not be zero
- if (getCurrentUserId() == '0') debug_report_bug('User id is zero.');
+ if (getCurrentUserId() == '0') debug_report_bug(__FUNCTION__.': User id is zero.');
// Get the whole array
return $GLOBALS['user_data'][getCurrentUserId()];
// in, but you should use isMember() if you want to find that out.
function isUserDataValid () {
// User id should not be zero
- if (getCurrentUserId() == '0') debug_report_bug('User id is zero.');
+ if (getCurrentUserId() == '0') debug_report_bug(__FUNCTION__.': User id is zero.');
// Is the array there and filled?
return ((isset($GLOBALS['user_data'][getCurrentUserId()])) && (count($GLOBALS['user_data'][getCurrentUserId()]) > 1));