summaryrefslogtreecommitdiffstats
path: root/app/view/common/setting.modal.view.php (follow)
AgeCommit message (Collapse)AuthorFilesLines
2016-03-27Add collapsable panel for editing each user's settings to admin setting tabMalf Furious1-0/+62
Also, added relevant initialization code to common model
2016-03-27Fix maxlengths for fields on user objectsMalf Furious1-5/+5
Usernames, aliai, and email addresses are capped at 50 chars in the backend
2016-03-27Fix <label>s and <input>s that use unnecessary DOM IDsMalf Furious1-14/+14
I dont need to give these elements IDs, so I'm not going to
2016-03-27Add view for setting modal, all users admin tabMalf Furious1-1/+53
2016-03-27Alter representation of form boolean valuesMalf Furious1-2/+2
Changed how Form() objects model true and false for boolean fields. Was "true" and "false", is now "1" and "0", respectivly. This is to address how Mysql handles these values as they are pushed to the db.
2016-03-27Populate admin setting fields on page loadMalf Furious1-4/+4
Added logic to set initial state of fields on the setting modal's admin tab
2016-03-27Add view for Setting modal, admin tabMalf Furious1-1/+39
2016-03-27Add User settings tab for Setting modalMalf Furious1-5/+82
This commit adds the basic structure to the Setting modal in Common MVC. The meat of this commit is the content for the webform for the modal's form for user account settings. The next commit should implement form submission handling.
2016-03-27Add settings modal to Common MVCMalf Furious1-0/+24
This modal dialog will be used to change app and object settings from any page in the app. The link to open it is added to the user button menu.