a tiny mvc framework for php using php-activerecord
at master 12 lines 313 B view raw
1<?php 2/* 3 application controller from which all other controllers will extend. use 4 this for site-wide functions like authentication, before_filters, etc. 5*/ 6 7class ApplicationController extends HalfMoon\ApplicationController { 8 /* sessions are off by default to allow caching */ 9 static $session = "off"; 10} 11 12?>