aboutsummaryrefslogtreecommitdiff
path: root/views/default/input/pulldown.php
blob: 8a30838d4d68fe0524bdb0fdaeac4e7053b92517 (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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<?php

/**
 * Elgg pulldown input
 * Displays a pulldown input field
 *
 * @package Elgg
 * @subpackage Core
 * @author Curverider Ltd
 * @link http://elgg.org/
 *
 * @uses $vars['options'] An array of strings representing the options for the pulldown field
 * @uses $vars['options_values'] An associative array of "value" => "option" where "value" is an internal name and "option" is
 * 								 the value displayed on the button. Replaces $vars['options'] when defined.
 */

$defaults = array(
	'class' => 'input-pulldown',
);

$vars = array_merge($defaults, $vars);

$options_values = $vars['options_values'];
unset($vars['options_values']);

$options = $vars['options'];
unset($options);

$value = $vars['value'];
unset($vars['value']);
?>

<select <?php echo html5_get_html_attributes($vars); ?>>
<?php 
if ($options_values) {
	foreach($options_values as $opt_val => $opt_text) {
		echo elgg_view('input/option', array(
			'value' => $opt_val,
			'text' => $opt_text,
			'selected' => ($opt_val == $value),
		));
	}
} else {
	foreach($options as $option) {
		echo elgg_view('input/option', array(
			'text' => $option,
			'selected' => ($option == $value),
		));
	}
}
?>
</select>