summaryrefslogtreecommitdiffstats
path: root/application/controllers/PersonController.php
blob: 986117a6810027e5325ff40e3e078bd3a09bf77c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<?php

class PersonController extends Zend_Controller_Action
{                          

    public function preDispatch()
    {
        
		if (!Zend_Auth::getInstance()->hasIdentity()) {			
			// TODO: quick hack fixxen
			$this->_redirect('/Auth/login');
		}
    }

    public function indexAction()
    {
        echo 'case2';
        // action body
    }

    


}