aboutsummaryrefslogtreecommitdiff
path: root/engine/handlers/action_handler.php
diff options
context:
space:
mode:
authorbrettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544>2010-09-15 20:23:57 +0000
committerbrettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544>2010-09-15 20:23:57 +0000
commite501124c1449ec95d2e743bf116b361608b8b574 (patch)
treeacebe76e4cd9851d30379bfe87191943531aa510 /engine/handlers/action_handler.php
parentf809e76743a6ccab2badf69633bb6132c1358f2e (diff)
downloadelgg-e501124c1449ec95d2e743bf116b361608b8b574.tar.gz
elgg-e501124c1449ec95d2e743bf116b361608b8b574.tar.bz2
Refs #2450: Documented handler files.
git-svn-id: http://code.elgg.org/elgg/trunk@6942 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'engine/handlers/action_handler.php')
-rw-r--r--engine/handlers/action_handler.php18
1 files changed, 9 insertions, 9 deletions
diff --git a/engine/handlers/action_handler.php b/engine/handlers/action_handler.php
index f99e1efdc..8a1f1276b 100644
--- a/engine/handlers/action_handler.php
+++ b/engine/handlers/action_handler.php
@@ -1,17 +1,17 @@
<?php
-
/**
- * Elgg action handler
+ * Action handler.
+ *
+ * This file dispatches actions. It is called via a URL rewrite in .htaccess
+ * from http://site/action/. Anything after 'action/' is considered the action
+ * and will be passed to {@link action()}.
*
- * @package Elgg
- * @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
+ * @package Elgg.Core
+ * @subpackage Actions
+ * @link http://docs.elgg.org/Tutorials/Actions
*/
-/**
- * Load Elgg framework
- */
require_once("../start.php");
+
$action = get_input("action");
action($action); \ No newline at end of file