summaryrefslogtreecommitdiffstats
path: root/app/model
diff options
context:
space:
mode:
Diffstat (limited to 'app/model')
-rw-r--r--app/model/common.mod.php11
1 files changed, 11 insertions, 0 deletions
diff --git a/app/model/common.mod.php b/app/model/common.mod.php
index a3e9258..9289c21 100644
--- a/app/model/common.mod.php
+++ b/app/model/common.mod.php
@@ -20,6 +20,17 @@ class CommonModel extends MasterModel
}
/*
+ * Handle form submissions from common views
+ */
+ function common_handleFormSubmissions($input)
+ {
+ switch ($input['action'])
+ {
+ case "common-setting-user": $this->saveSettingUser($input); break;
+ }
+ }
+
+ /*
* Save changes to user account settings
*/
function saveSettingUser($input)