blob: 641dd524401a61b593f823709a291ca85ed6dfa2 (
plain)
1
2
3
4
5
6
7
8
9
10
|
<?php
$defaults = array(
'placeholder' => elgg_echo('placeholder:time'),
);
$vars = array_merge($defaults, $vars);
?>
<input type="time" <?php echo html5_get_html_attributes($vars); ?> />
|