summaryrefslogtreecommitdiffstats
path: root/app/controller/dashboard.control.php (follow)
AgeCommit message (Collapse)AuthorFilesLines
2016-05-22Add class constructor to Common modelMalf Furious1-2/+0
There are two functions that need called in the common model whenever a page is rendered. Rather than requiring all of the base MVC controllers to call them, I am placing them in a constructor for this model class. This constructor should fire automatically (since base mvc models inherit this class), unless base classes define their own constructors. I don't antisipate this happening, however in that case, they would just need to call parent::__construct().
2016-05-01Update form handler for common/setting-modal, user tabMalf Furious1-1/+1
Now supports file upload to replace the user's head image
2016-03-27Call common default action handler from dashboard controllerMalf Furious1-0/+1
2016-03-27Add function CommonModel::common_handleFormSubmissions()Malf Furious1-0/+1
This helper func to all implementing MVC controllers is used to check for submission of any web-form defined within a common MVC view file. If detected, the appropriate handler function is called.
2016-03-27Add Dashboard controllerMalf Furious1-0/+27