25 $this -> _iProfileID = $this ->
getID( $vProfileID, $bWithEmail );
57 $bUseCacheSystem = (
getParam(
'enable_cache_system') ==
'on' ) ?
true :
false;
60 $sProfileCache = CH_DIRECTORY_PATH_CACHE .
'user' . $this -> _iProfileID .
'.php';
61 if( $bUseCacheSystem && file_exists( $sProfileCache ) && is_file( $sProfileCache ) ) {
62 require_once($sProfileCache);
63 $this -> _aProfile =
$aUser[$this -> _iProfileID];
65 $this -> _aProfile = $oPDb -> getProfileDataById( $this -> _iProfileID );
68 if( $this -> _aProfile[
'Couple'] ) {
69 $this -> bCouple =
true;
70 $this -> _iCoupleID = $this -> _aProfile[
'Couple'];
72 $sProfileCache = CH_DIRECTORY_PATH_CACHE .
'user' . $this -> _iCoupleID .
'.php';
73 if( $bUseCacheSystem && file_exists( $sProfileCache ) && is_file( $sProfileCache ) ) {
74 require_once($sProfileCache);
75 $this -> _aCouple =
$aUser[$this -> _iCoupleID];
77 $this -> _aCouple = $oPDb -> getProfileDataById( $this -> _iCoupleID );
80 return $this -> _aProfile;
97 if( is_array( $aData ) ) {
99 foreach($aData
as $key => $value ) {
100 $sQueryAdd .=
" `$key` = '$value', ";
151 function getID( $vID =
false, $bWithEmail = 1 )
154 return $this -> _iProfileID;
161 $aMail = $oPDb -> getIdByEmail( $vID );
162 if ( (
int)$aMail[
'ID'] ) {
163 return (
int)$aMail[
'ID'];
169 if ( strcmp(
"$vID",
"$iID") === 0 ) {
172 $aNick = $oPDb -> getIdByNickname( $vID );
173 if ( (
int)$aNick[
'ID'] ) {
174 return (
int)$aNick[
'ID'];