blob: dc59ba7ba51b2bf2eddc2b350d9717c5e3119122 (
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
43
44
45
46
47
48
49
|
<?php
/**
* BlogPage 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$
*/
/**
* BlogPage class
*
* @author Qiang Xue <qiang.xue@gmail.com>
* @link http://www.pradosoft.com/
* @copyright Copyright © 2006 PradoSoft
* @license http://www.pradosoft.com/license/
*/
class BlogPage extends TPage
{
public function onPreInit($param)
{
parent::onPreInit($param);
$this->Theme=$this->Application->Parameters['ThemeName'];
}
public function getDataAccess()
{
return $this->getApplication()->getModule('data');
}
public function gotoDefaultPage()
{
$this->Response->redirect($this->Service->constructUrl($this->Service->DefaultPage));
}
public function gotoPage($pagePath,$getParameters=null)
{
$this->Response->redirect($this->Service->constructUrl($pagePath,$getParameters));
}
public function reportError($errorCode)
{
$this->gotoPage('ErrorReport',array('id'=>$errorCode));
}
}
?>
|