diff options
Diffstat (limited to 'views/default/forms')
| -rw-r--r-- | views/default/forms/admin/site/regenerate_secret.php | 24 | ||||
| -rw-r--r-- | views/default/forms/plugins/settings/save.php | 6 | ||||
| -rw-r--r-- | views/default/forms/profile/edit.php | 13 | 
3 files changed, 40 insertions, 3 deletions
diff --git a/views/default/forms/admin/site/regenerate_secret.php b/views/default/forms/admin/site/regenerate_secret.php new file mode 100644 index 000000000..af269b801 --- /dev/null +++ b/views/default/forms/admin/site/regenerate_secret.php @@ -0,0 +1,24 @@ +<?php + +$strength = $vars['strength']; + +?> +<p><?php echo elgg_echo('admin:site:secret:intro'); ?></p> + +<table class="elgg-table"> +	<tr> +		<th><?php echo elgg_echo('site_secret:current_strength'); ?></th> +		<td class="elgg-strength-<?php echo $strength; ?>"> +			<h4><?php echo elgg_echo("site_secret:strength:$strength"); ?></h4> +			<div><?php echo elgg_echo("site_secret:strength_msg:$strength"); ?></div> +		</td> +	</tr> +</table> + +<div class="elgg-foot"> +	<?php echo elgg_view('input/submit', array( +			'value' => elgg_echo('admin:site:secret:regenerate'), +			'class' => 'elgg-requires-confirmation elgg-button elgg-button-submit', +		)); ?> +	<p class="elgg-text-help mts"><?php echo elgg_echo('admin:site:secret:regenerate:help'); ?></p> +</div> diff --git a/views/default/forms/plugins/settings/save.php b/views/default/forms/plugins/settings/save.php index dc7b2fef7..116529905 100644 --- a/views/default/forms/plugins/settings/save.php +++ b/views/default/forms/plugins/settings/save.php @@ -17,11 +17,11 @@ if ($type != 'user') {  	$type = '';  } -if (elgg_view_exists("{$type}settings/$plugin_id/edit")) { +if (elgg_view_exists("plugins/$plugin_id/{$type}settings")) { +	echo elgg_view("plugins/$plugin_id/{$type}settings", $vars); +} elseif (elgg_view_exists("{$type}settings/$plugin_id/edit")) {  	elgg_deprecated_notice("{$type}settings/$plugin_id/edit was deprecated in favor of plugins/$plugin_id/{$type}settings", 1.8);  	echo elgg_view("{$type}settings/$plugin_id/edit", $vars); -} else { -	echo elgg_view("plugins/$plugin_id/{$type}settings", $vars);  }  echo '<div class="elgg-foot">'; diff --git a/views/default/forms/profile/edit.php b/views/default/forms/profile/edit.php index 9538b779e..cb0a37ca4 100644 --- a/views/default/forms/profile/edit.php +++ b/views/default/forms/profile/edit.php @@ -13,6 +13,8 @@  </div>  <?php +$sticky_values = elgg_get_sticky_values('profile:edit'); +  $profile_fields = elgg_get_config('profile_fields');  if (is_array($profile_fields) && count($profile_fields) > 0) {  	foreach ($profile_fields as $shortname => $valtype) { @@ -40,6 +42,14 @@ if (is_array($profile_fields) && count($profile_fields) > 0) {  			$access_id = ACCESS_DEFAULT;  		} +		// sticky form values take precedence over saved ones +		if (isset($sticky_values[$shortname])) { +			$value = $sticky_values[$shortname]; +		} +		if (isset($sticky_values['accesslevel'][$shortname])) { +			$access_id = $sticky_values['accesslevel'][$shortname]; +		} +  ?>  <div>  	<label><?php echo elgg_echo("profile:{$shortname}") ?></label> @@ -59,6 +69,9 @@ if (is_array($profile_fields) && count($profile_fields) > 0) {  <?php  	}  } + +elgg_clear_sticky_form('profile:edit'); +  ?>  <div class="elgg-foot">  <?php  | 
