Elgg  Version 2.3
url.php
Go to the documentation of this file.
1 <?php
12 $vars['class'] = elgg_extract_class($vars, 'elgg-input-url');
13 
14 $defaults = array(
15  'value' => '',
16  'disabled' => false,
17  'autocapitalize' => 'off',
18  'autocorrect' => 'off',
19  'type' => 'url'
20 );
21 
22 $vars = array_merge($defaults, $vars);
23 
$defaults
Definition: url.php:14
elgg_extract_class(array $array, $existing=[])
Extract class names from an array with key "class", optionally merging into a preexisting set...
Definition: elgglib.php:1396
elgg_format_element($tag_name, array $attributes=array(), $text= '', array $options=array())
Format an HTML element.
Definition: output.php:208
elgg echo
Translates a string.
Definition: languages.js:48
$vars['class']
Definition: url.php:12