summaryrefslogtreecommitdiffstats
path: root/examples/app/controller/obj.control.php (unfollow)
AgeCommit message (Collapse)AuthorFilesLines
2017-01-15Reorganize examples/ directoryMalf Furious1-49/+0
2016-10-22Deprecate application codeMalf Furious1-0/+0
Setup to perform an iteration of development focused on a simpler implementation and eliminating redundancy in design.
2016-06-12Update Obj controllerMalf Furious1-8/+5
This commit makes the Obj controller compatable with changes introduced in the previous commit.
2016-06-10Assert access control before rendering an object viewMalf Furious1-0/+3
If the current user does not have access permission to the requested object, throw an exception and do not proceed.
2016-06-08Create blank view for groupsMalf Furious1-2/+3
Finish initializing the Obj MVC by writing an empty view/action for groups.
2016-06-08Add new MVC, 'Obj'Malf Furious1-8/+15
This MVC will be used to browse scrott datastructures.
2016-05-26Add copyright notice to Scrott controller filesMalf Furious1-0/+14
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-4/+5
2016-03-05Add Deauth controllerMalf Furious1-0/+26
Model added in previous commit.