blob: 61f7492d46e7f021c067bbfe36035c3d37733ef2 (
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.php 1509 2006-11-25 20:51:43Z xue $
*/
/**
* 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->setTheme($this->getApplication()->Parameters['ThemeName']);
}
public function getDataAccess()
{
return $this->getApplication()->getModule('data');
}
public function gotoDefaultPage()
{
$this->gotoPage($this->getService()->DefaultPage);
}
public function gotoPage($pagePath,$getParameters=null)
{
$this->getResponse()->redirect($this->getService()->constructUrl($pagePath,$getParameters,false));
}
public function reportError($errorCode)
{
$this->gotoPage('ErrorReport',array('id'=>$errorCode));
}
}
?>
|