Elgg  Version 1.9
change_password.php
Go to the documentation of this file.
1 <?php
9 if (elgg_is_logged_in()) {
10  forward();
11 }
12 
15 
17 
18 // don't check code here to avoid automated attacks
19 if (!$user instanceof ElggUser) {
20  register_error(elgg_echo('user:resetpassword:unknown_user'));
21  forward();
22 }
23 
24 $title = elgg_echo('changepassword');
25 
26 $params = array(
27  'guid' => $user_guid,
28  'code' => $code,
29 );
30 $content = elgg_view_form('user/changepassword', array('class' => 'elgg-form-account'), $params);
31 
32 if (elgg_get_config('walled_garden')) {
33  elgg_load_css('elgg.walled_garden');
34  $body = elgg_view_layout('walled_garden', array('content' => $content));
35  echo elgg_view_page($title, $body, 'walled_garden');
36 } else {
37  $body = elgg_view_layout('one_column', array(
38  'title' => $title,
39  'content' => $content,
40  ));
42 }
43 
elgg_get_config($name, $site_guid=0)
Get an Elgg configuration value.
elgg_is_logged_in()
Returns whether or not the user is currently logged in.
Definition: sessions.php:56
get_input($variable, $default=null, $filter_result=true)
Get some input from variables passed submitted through GET or POST.
Definition: input.php:27
elgg forward
Meant to mimic the php forward() function by simply redirecting the user to another page...
Definition: elgglib.js:419
elgg_load_css($name)
Load a CSS file for this page.
Definition: elgglib.php:256
elgg_echo($message_key, $args=array(), $language="")
Given a message key, returns an appropriately translated full-text string.
Definition: languages.php:21
elgg echo
Translates a string.
Definition: languages.js:43
if(!$user instanceof ElggUser) $title
elgg_view_layout($layout_name, $vars=array())
Displays a layout with optional parameters.
Definition: views.php:617
elgg register_error
Wrapper function for system_messages.
Definition: elgglib.js:383
elgg_view_page($title, $body, $page_shell= 'default', $vars=array())
Assembles and outputs a full page.
Definition: views.php:437
elgg_view_form($action, $form_vars=array(), $body_vars=array())
Definition: views.php:1280
if(elgg_is_logged_in()) $user_guid
get_entity($guid)
Loads and returns an entity object from a guid.
Definition: entities.php:604
$content