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