aboutsummaryrefslogtreecommitdiff
path: root/views/default/input/access.php
blob: ea4654be6bfca4a517dda18191a265b5e165e8b3 (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
<?php
/**
 * Elgg access level input
 * Displays a dropdown input field
 *
 * @package Elgg
 * @subpackage Core


 *
 * @uses $vars['value'] The current value, if any
 * @uses $vars['js'] Any Javascript to enter into the input tag
 * @uses $vars['internalname'] The name of the input field
 *
 */

$defaults = array(
	'class' => 'elgg-input-access',
	'disabled' => FALSE,
	'value' => get_default_access(),
	'options' => get_write_access_array(),
);

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

if (is_array($vars['options']) && sizeof($vars['options']) > 0) {
	echo elgg_view('input/dropdown', $vars);
}