Elgg  Version 1.11
edit.php
Go to the documentation of this file.
1 <?php
6 $id = get_input('id');
7 $label = get_input('label');
8 
9 if (!elgg_get_config("admin_defined_profile_$id")) {
10  register_error(elgg_echo('profile:editdefault:fail'));
12 }
13 
14 if (elgg_save_config("admin_defined_profile_$id", $label)) {
15  system_message(elgg_echo('profile:editdefault:success'));
16 } else {
17  register_error(elgg_echo('profile:editdefault:fail'));
18 }
19 
elgg_get_config($name, $site_guid=0)
Get an Elgg configuration value.
$id
Edit a custom profile field.
Definition: edit.php:6
get_input($variable, $default=null, $filter_result=true)
Get some input from variables passed submitted through GET or POST.
Definition: input.php:27
elgg_save_config($name, $value, $site_guid=0)
Save a configuration setting.
$label
Definition: edit.php:7
elgg forward
Meant to mimic the php forward() function by simply redirecting the user to another page...
Definition: elgglib.js:419
elgg_echo($message_key, $args=array(), $language="")
Given a message key, returns an appropriately translated full-text string.
Definition: languages.php:21
const REFERER
Definition: elgglib.php:1995
elgg system_message
Wrapper function for system_messages.
Definition: elgglib.js:374
elgg register_error
Wrapper function for system_messages.
Definition: elgglib.js:383