Elgg  Version 2.3
save.php
Go to the documentation of this file.
1 <?php
9 elgg_make_sticky_form('usersettings');
10 
11 // callbacks should return false to indicate that the sticky form should not be cleared
12 if (elgg_trigger_plugin_hook('usersettings:save', 'user', null, true)) {
13  elgg_clear_sticky_form('usersettings');
14 }
15 
elgg forward
Meant to mimic the php forward() function by simply redirecting the user to another page...
Definition: elgglib.js:425
const REFERER
Definition: elgglib.php:2123
elgg_make_sticky_form($form_name)
Save form submission data (all GET and POST vars) into a session cache.
Definition: input.php:103
elgg_trigger_plugin_hook($hook, $type, $params=null, $returnvalue=null)
Definition: elgglib.php:826
elgg_clear_sticky_form($form_name)
Remove form submission data from the session.
Definition: input.php:119