westdc-zf1/application/admin/controllers/IndexController.php

22 lines
377 B
PHP
Raw Normal View History

2009-03-06 03:20:46 +00:00
<?php
class Admin_IndexController extends Zend_Controller_Action
{
function indexAction()
{
$this->view->title = "元数据";
//echo "元数据显示";
}
function preDispatch()
{
$this->view->config = Zend_Registry::get('config');
$this->db=Zend_Registry::get('db');
}
function importAction()
{
}
}