aboutsummaryrefslogtreecommitdiff
path: root/views/default/input/url.php
blob: 60d8820e7140afa38327315327678ce4827ae91c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<?php

$defaults = array(
	'placeholder' => elgg_echo('placeholder:url'),
);

$overrides = array(
	'type' => 'url',
);

$args = array_merge($vars, $overrides);

echo elgg_view('html/input', $args);