diff options
author | Filipp Lepalaan <filipp@mac.com> | 2011-09-27 14:47:01 +0300 |
---|---|---|
committer | Filipp Lepalaan <filipp@mac.com> | 2011-09-27 14:47:01 +0300 |
commit | 4c83a63533d8616e01d2ac473f98f4a2dc6bb1be (patch) | |
tree | d5b2e12c214543aba7030605ec01d8e8ece325e7 /MainApp.php | |
parent | e37db3cdbfb1ec57b5126be06325a75ccdc82efe (diff) | |
download | main-4c83a63533d8616e01d2ac473f98f4a2dc6bb1be.tar.gz main-4c83a63533d8616e01d2ac473f98f4a2dc6bb1be.tar.bz2 main-4c83a63533d8616e01d2ac473f98f4a2dc6bb1be.zip |
Diffstat (limited to 'MainApp.php')
-rw-r--r-- | MainApp.php | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/MainApp.php b/MainApp.php index ea148bb..73d3dc6 100644 --- a/MainApp.php +++ b/MainApp.php @@ -37,22 +37,25 @@ class MainApp // dispatch requested controller $controller = self::classname($controller); $c = new $controller; -// var_dump($c); + + // try to determine passed argument + $a = (empty($_POST) && !empty($action)) ? $param : $_POST; + // assume no method name was given, try $param // URL format is always controller/param/action if (method_exists($c, $action)) { - return $c->$action($_POST); + return $c->$action($a); } // controller/action if (method_exists($c, $param)) { - return $c->$param($_POST); + return $c->$param($a); } // ...then fall back to defaultAction if (method_exists($c, $c->defaultAction)) { $action = $c->defaultAction; - return $c->$action($_POST); + return $c->$action($a); } // don't know what to do, giving up... |