blob: 58c8b092843d44f6d4c771cdba452dabf87fec10 (
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 elgg_format_attributes($vars); ?> />
|