Lines Matching full:action
17 require_once(DOKU_PLUGIN.'action.php');
22 * All DokuWiki plugins to extend the action function
76 global $action;
89 if (isset($_REQUEST['action']) || isset($_REQUEST['fn']) // already in db code
97 // There are two methods of determing the action
98 // 1. Using an icon with name='fn[action][param(s)]' and params separated by |
99 // 2. Using a form with hidden fields of action, table and record
108 $action = key($fn);
109 $param = is_array($fn[$action]) ? key($fn[$action]) : null;
115 // Pick up the action
116 if (isset($_REQUEST["action"])) {
117 $action=$_REQUEST["action"];
126 if ($action != 'home' ) {