Elgg  Version 2.3
tag.php
Go to the documentation of this file.
1 <?php
11 $vars['class'] = elgg_extract_class($vars, 'elgg-input-tag');
12 
13 $defaults = array(
14  'value' => '',
15  'disabled' => false,
16  'autocapitalize' => 'off',
17  'type' => 'text'
18 );
19 
20 $vars = array_merge($defaults, $vars);
21 
$defaults
Definition: tag.php:13
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']
Elgg tag input.
Definition: tag.php:11