summaryrefslogtreecommitdiffstats
path: root/app/class/framework.class.php (follow)
AgeCommit message (Collapse)AuthorFilesLines
2016-05-26Add copyright notice to Scrott class filesMalf Furious1-0/+14
2016-05-22Define Scrott version number constant throughout appMalf Furious1-0/+3
2016-03-26Fix bug in Framework::getCurrentUser() functionMalf Furious1-1/+8
If, by some means, the GUID for a logged in user is not valid, that session should be terminated ("$this->setCurrentUser();") This might happen if the database gets flushed, or if an account gets removed while it is in use...
2016-01-31Implement PHP session semantics in Framework classMalf Furious1-0/+41
Added PHP session handling to core framework. Functions now exist to set the current user, get the current user, and get the IP address used to login (to compare with furure requests on the same session to combat session hijacking).
2016-01-01+ Added class file for setting tableMalf Furious1-1/+1
2015-12-17+ Added function to framework class for getting (or creating) the app's ↵Malf Furious1-0/+32
singleton db connection object. If no connection is established, logic uses system-level configuration to decide how to connect before returning
2015-12-06* Bug fix in framework class - redirectTo function -- http_redirect function ↵M1-1/+1
I was using is part of an extension for PHP and therefore, non-standard
2015-12-05+ Added framework function for getting current app pathM1-0/+8
* Changed sysconf view to use new function ($mod->ar()/sysconf -> $mod->ap)
2015-11-22* Implemented framework ar (app root) functionM1-1/+1
2015-11-21+ Defined function to check if scrott.conf.php file existsM1-0/+9
2015-11-21* Framework def file is now condifionally including system-level app ↵M1-0/+4
configuration
2015-11-21+ Committing initial framework class definitionM1-0/+26