summaryrefslogtreecommitdiffstats
path: root/app/controller/dashboard.control.php
diff options
context:
space:
mode:
authorMalf Furious <m@lfurio.us>2016-03-10 20:35:32 -0500
committerMalf Furious <m@lfurio.us>2016-03-27 20:16:32 -0400
commitc93ae572abf32262137cce69f1c020e9a5b46d9f (patch)
treee5c0f1218fd1b1367d98dd18942183ba6152fd13 /app/controller/dashboard.control.php
parenta543d599d211d897e1ed22dcde8794b9cf8072fd (diff)
downloadscrott-c93ae572abf32262137cce69f1c020e9a5b46d9f.tar.gz
scrott-c93ae572abf32262137cce69f1c020e9a5b46d9f.zip
Add function CommonModel::common_handleFormSubmissions()
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.
Diffstat (limited to 'app/controller/dashboard.control.php')
-rw-r--r--app/controller/dashboard.control.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/app/controller/dashboard.control.php b/app/controller/dashboard.control.php
index 4ee4b38..9a279ca 100644
--- a/app/controller/dashboard.control.php
+++ b/app/controller/dashboard.control.php
@@ -14,6 +14,7 @@ class Dashboard extends Controller
function handle($argv)
{
$mod = new DashboardModel();
+ $mod->common_handleFormSubmissions($_REQUEST['input']);
$this->action_default($mod);
}