Cheetah
ChWsbProfile.php
Go to the documentation of this file.
1 <?php
2 
8 ch_import('ChWsbProfileQuery');
9 
11 {
14  var $bCouple;
16  var $_aCouple;
17 
23  function __construct( $vProfileID, $bWithEmail = 1 )
24  {
25  $this -> _iProfileID = $this -> getID( $vProfileID, $bWithEmail );
26  }
27 
34  function getProfileThumbnail( $float )
35  {
36  $ret = $this -> getProfileImageUrl( $iProfileID );
37  }
38 
45  function getProfileImageUrl( $imageNum )
46  {
47 
48  }
49 
53  function getProfileData()
54  {
55  global $aUser;
56 
57  $bUseCacheSystem = ( getParam('enable_cache_system') == 'on' ) ? true : false;
58 
59  $oPDb = new ChWsbProfileQuery();
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];
64  } else
65  $this -> _aProfile = $oPDb -> getProfileDataById( $this -> _iProfileID );
66 
67  //get couple data
68  if( $this -> _aProfile['Couple'] ) {
69  $this -> bCouple = true;
70  $this -> _iCoupleID = $this -> _aProfile['Couple'];
71 
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];
76  } else
77  $this -> _aCouple = $oPDb -> getProfileDataById( $this -> _iCoupleID );
78  }
79 
80  return $this -> _aProfile;
81  }
82 
95  function updateProfileData( $aData )
96  {
97  if( is_array( $aData ) ) {
98  $sQueryAdd = '';
99  foreach($aData as $key => $value ) {
100  $sQueryAdd .= " `$key` = '$value', ";
101  }
102  }
103 
104  $this -> updateProfileDataFile( $iProfileID );
105  }
106 
112  function updateProfileDataFile( $iProfileID )
113  {
114 
115  }
116 
123  function getMembershipStatus( $iPrifileID, $offer_upgrade = true, $credits = 0 )
124  {
125 
126  }
127 
135  /*function getProfileLastOnlinePeriod( $lastNavTime )
136  {
137 
138  }*/
139 
140  function getNickName()
141  {
142  $oProfileQuery = new ChWsbProfileQuery();
143  return process_line_output( $oProfileQuery -> getNickName( $this -> _iProfileID ) );
144  }
145 
146  function getPassword()
147  {
148 
149  }
150 
151  function getID( $vID = false, $bWithEmail = 1 )
152  {
153  if (false === $vID)
154  return $this -> _iProfileID;
155 
156  $oPDb = new ChWsbProfileQuery();
157 
158  if ( $bWithEmail ) {
159  ch_import('ChWsbForm');
161  $aMail = $oPDb -> getIdByEmail( $vID );
162  if ( (int)$aMail['ID'] ) {
163  return (int)$aMail['ID'];
164  }
165  }
166  }
167 
168  $iID = (int)$vID;
169  if ( strcmp("$vID", "$iID") === 0 ) {
170  return $iID;
171  } else {
172  $aNick = $oPDb -> getIdByNickname( $vID );
173  if ( (int)$aNick['ID'] ) {
174  return (int)$aNick['ID'];
175  }
176  }
177 
178  return false;
179  }
180 
181 }
ChWsbProfile\getProfileImageUrl
getProfileImageUrl( $imageNum)
Definition: ChWsbProfile.php:45
$ret
$ret
Definition: index.php:39
ChWsbProfile\getProfileThumbnail
getProfileThumbnail( $float)
Definition: ChWsbProfile.php:34
ch_import
ch_import($sClassName, $aModule=array())
Definition: utils.inc.php:1218
php
ChWsbProfile\__construct
__construct( $vProfileID, $bWithEmail=1)
Definition: ChWsbProfile.php:23
ChWsbProfile\getPassword
getPassword()
Definition: ChWsbProfile.php:146
ChWsbProfile\getNickName
getNickName()
Definition: ChWsbProfile.php:140
ChWsbProfile\updateProfileData
updateProfileData( $aData)
Definition: ChWsbProfile.php:95
ChWsbProfile\getProfileData
getProfileData()
Definition: ChWsbProfile.php:53
getParam
getParam($sParamName, $bUseCache=true)
Definition: db.inc.php:130
ChWsbProfile\$_iProfileID
$_iProfileID
Definition: ChWsbProfile.php:12
ChWsbProfile\$_aCouple
$_aCouple
Definition: ChWsbProfile.php:16
ChWsbProfile\updateProfileDataFile
updateProfileDataFile( $iProfileID)
Definition: ChWsbProfile.php:112
ChWsbFormCheckerHelper\checkEmail
static checkEmail($s)
Definition: ChWsbForm.php:511
global
if(!defined("GLOBAL_MODULE")) define("GLOBAL_MODULE" global
Definition: header.inc.php:25
ChWsbProfile\$_aProfile
$_aProfile
Definition: ChWsbProfile.php:13
ChWsbProfileQuery
Definition: ChWsbProfileQuery.php:11
ChWsbProfile\getID
getID( $vID=false, $bWithEmail=1)
Definition: ChWsbProfile.php:151
process_line_output
process_line_output($text, $maxwordlen=100)
Definition: utils.inc.php:328
$aUser
$aUser
Definition: profiles.inc.php:74
ChWsbProfile
Definition: ChWsbProfile.php:11
ChWsbProfile\getMembershipStatus
getMembershipStatus( $iPrifileID, $offer_upgrade=true, $credits=0)
Definition: ChWsbProfile.php:123
as
as
Definition: Filter.ExtractStyleBlocks.Escaping.txt:10
ChWsbProfile\$bCouple
$bCouple
Definition: ChWsbProfile.php:14
ChWsbProfile\$_iCoupleID
$_iCoupleID
Definition: ChWsbProfile.php:15