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

23 lines
428 B
PHP
Raw Permalink 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');
$this->_helper->layout->setLayout('administry');
2009-03-06 03:20:46 +00:00
}
function importAction()
{
}
}