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