23 lines
428 B
PHP
23 lines
428 B
PHP
<?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');
|
|
}
|
|
|
|
function importAction()
|
|
{
|
|
}
|
|
|
|
}
|
|
|