tra('Back'), 'documentation' => 'PluginBack', 'description' => tra('Display a link that goes back one page in the browser history'), 'prefs' => [ 'wikiplugin_back' ], 'iconname' => 'back', 'tags' => [ 'basic' ], 'introduced' => 3, 'params' => [], ]; } function wikiplugin_back($data, $params) { global $tikilib; // Remove first if exists... // if (substr($data, 0, 2) == "\r\n") $data = substr($data, 2); extract($params, EXTR_SKIP); $begin = ""; $content = tra('Back'); $end = ""; return "~np~" . $begin . $content . $end . "~/np~"; }