13 lines
248 B
PHP
13 lines
248 B
PHP
|
<?php
|
||
|
|
||
|
class CommunityController extends Zend_Controller_Action
|
||
|
{
|
||
|
function indexAction()
|
||
|
{
|
||
|
//$this->_redirect('/metadata');
|
||
|
}
|
||
|
function preDispatch()
|
||
|
{
|
||
|
$this->view->config = Zend_Registry::get('config');
|
||
|
}
|
||
|
}
|