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