22 lines
377 B
PHP
22 lines
377 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');
|
||
|
}
|
||
|
|
||
|
function importAction()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|