Default.class.php
330 Bytes
<?php
class Controller_default extends Controller_abstract {
/**
* 初始化的方法 ,主要用于动作执行之前
*
*/
function init() {
}
/**
* 默认的动作 (index页面)
*
* @return unknown
*/
function indexAction() {
//return "Hello World" ;
$this->_view['date'] = '^_^ Hello World' ;
}
}