Elgg  Version 5.1
month.php
Go to the documentation of this file.
1 <?php
7 $vars['class'] = elgg_extract_class($vars, 'elgg-input-month');
8 
10  'type' => 'month'
11 ];
12 
13 $vars = array_merge($defaults, $vars);
14 
15 echo elgg_view('input/text', $vars);
$defaults
Definition: month.php:9
$vars['class']
Elgg month input Displays a month input field.
Definition: month.php:7
elgg_extract_class(array $array, $existing=[], $extract_key= 'class')
Extract class names from an array, optionally merging into a preexisting set.
Definition: elgglib.php:276
elgg_view(string $view, array $vars=[], string $viewtype= '')
Return a parsed view.
Definition: views.php:177