summaryrefslogtreecommitdiffstats
path: root/application/modules/user/controllers/GroupController.php
blob: 52136af4d0293b7376790c2ec818e4a9042979c1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?php

class User_GroupController extends Zend_Controller_Action
{

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

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

	public function indexAction()
	{
		// action body
	}


}