Elgg  Version 1.9
account.php
Go to the documentation of this file.
1 <?php
10 if (elgg_get_config('https_login')) {
11  $action_url = str_replace("http:", "https:", $action_url);
12 }
13 $action_url .= 'action/usersettings/save';
14 
15 echo elgg_view_form('usersettings/save', array(
16  'class' => 'elgg-form-alt',
17  'action' => $action_url,
18 ));
elgg_get_config($name, $site_guid=0)
Get an Elgg configuration value.
elgg echo
Translates a string.
Definition: languages.js:43
elgg_get_site_url($site_guid=0)
Get the URL for the current (or specified) site.
elgg_view_form($action, $form_vars=array(), $body_vars=array())
Definition: views.php:1280
$action_url
Definition: account.php:9