summaryrefslogblamecommitdiffstats
path: root/application/modules/user/controllers/ConfigController.php
blob: 2b5f09572e163446aee1d4f696f1770345af2d1e (plain) (tree)
1
2
3
4
5
6
7
8
9




                                                          


                                                              
 








                                                                    



 
<?php

class User_ConfigController extends Zend_Controller_Action
{

	public function init()
	{
		if (Zend_Auth::getInstance()->hasIdentity()) {

		} else {
			$this->_helper->redirector('login', 'auth');
		}
	}

	public function indexAction()
	{
		// action body
	}


}