blob: 75bd711ad8e33c7a5c8fe324f47f24658f0f3cc5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
<?php
/**
* ViewUser class file
*
* @author Qiang Xue <qiang.xue@gmail.com>
* @link http://www.pradosoft.com/
* @copyright Copyright © 2006 PradoSoft
* @license http://www.pradosoft.com/license/
* @version $Id$
*/
/**
* ViewUser class
*
* @author Qiang Xue <qiang.xue@gmail.com>
* @link http://www.pradosoft.com/
* @copyright Copyright © 2006 PradoSoft
* @license http://www.pradosoft.com/license/
*/
class ViewUser extends BlogPage
{
private $_userRecord=null;
public function onInit($param)
{
parent::onInit($param);
if(($id=$this->Request['id'])!==null)
$id=TPropertyValue::ensureInteger($id);
else
$id=$this->User->ID;
if(($this->_userRecord=$this->DataAccess->queryUserByID($id))===null)
throw new BlogException(500,'profile_id_invalid',$id);
$this->_userRecord->Email=strtr(strtoupper($this->_userRecord->Email),array('@'=>' at ','.'=>' dot '));
}
public function getProfile()
{
return $this->_userRecord;
}
}
?>
|