aboutsummaryrefslogtreecommitdiff
path: root/views/installation/input/access.php
blob: c3d4713bc55bc5f84dd2f94fa69ddef0335b37c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<?php
/**
 * Elgg access level input
 * Displays a dropdown input field
 *
 * @uses $vars['value'] The current value, if any
 * @uses $vars['name'] The name of the input field
 *
 */

$class = "elgg-input-access";

if ((!isset($vars['options'])) || (!is_array($vars['options']))) {
	$vars['options'] = array();
	$vars['options'] = get_write_access_array();
}

if (is_array($vars['options']) && sizeof($vars['options']) > 0) {

	?>

	<select name="<?php echo $vars['name']; ?>" class="<?php echo $class; ?>">
	<?php

		foreach($vars['options'] as $key => $option) {
			if ($key != $vars['value']) {
				echo "<option value=\"{$key}\">{$option}</option>";
			} else {
				echo "<option value=\"{$key}\" selected=\"selected\">{$option}</option>";
			}
		}

	?>
	</select>

	<?php

}