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