summaryrefslogblamecommitdiffstats
path: root/application/controllers/PersonController.php
blob: a0b2faf5e39ff8d901a143a55d15e13a934cb6be (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11




                                                     
                                 
     



                                                                                



                                 
                






                             
<?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
    }


}