|
1 | 1 | <?php
|
2 | 2 | /**
|
3 | 3 | * @link http://github.com/zendframework/zend-form for the canonical source repository
|
4 |
| - * @copyright Copyright (c) 2005-2016 Zend Technologies USA Inc. (http://www.zend.com) |
| 4 | + * @copyright Copyright (c) 2005-2019 Zend Technologies USA Inc. (http://www.zend.com) |
5 | 5 | * @license http://framework.zend.com/license/new-bsd New BSD License
|
6 | 6 | */
|
7 | 7 |
|
@@ -91,10 +91,14 @@ class FormElementManagerV3Polyfill extends AbstractPluginManager
|
91 | 91 | 'Radio' => Element\Radio::class,
|
92 | 92 | 'range' => Element\Range::class,
|
93 | 93 | 'Range' => Element\Range::class,
|
| 94 | + 'search' => Element\Search::class, |
| 95 | + 'Search' => Element\Search::class, |
94 | 96 | 'select' => Element\Select::class,
|
95 | 97 | 'Select' => Element\Select::class,
|
96 | 98 | 'submit' => Element\Submit::class,
|
97 | 99 | 'Submit' => Element\Submit::class,
|
| 100 | + 'tel' => Element\Tel::class, |
| 101 | + 'Tel' => Element\Tel::class, |
98 | 102 | 'text' => Element\Text::class,
|
99 | 103 | 'Text' => Element\Text::class,
|
100 | 104 | 'textarea' => Element\Textarea::class,
|
@@ -138,8 +142,10 @@ class FormElementManagerV3Polyfill extends AbstractPluginManager
|
138 | 142 | Element\Password::class => ElementFactory::class,
|
139 | 143 | Element\Radio::class => ElementFactory::class,
|
140 | 144 | Element\Range::class => ElementFactory::class,
|
| 145 | + Element\Search::class => ElementFactory::class, |
141 | 146 | Element\Select::class => ElementFactory::class,
|
142 | 147 | Element\Submit::class => ElementFactory::class,
|
| 148 | + Element\Tel::class => ElementFactory::class, |
143 | 149 | Element\Text::class => ElementFactory::class,
|
144 | 150 | Element\Textarea::class => ElementFactory::class,
|
145 | 151 | Element\Time::class => ElementFactory::class,
|
@@ -173,8 +179,10 @@ class FormElementManagerV3Polyfill extends AbstractPluginManager
|
173 | 179 | 'zendformelementpassword' => ElementFactory::class,
|
174 | 180 | 'zendformelementradio' => ElementFactory::class,
|
175 | 181 | 'zendformelementrange' => ElementFactory::class,
|
| 182 | + 'zendformelementsearch' => ElementFactory::class, |
176 | 183 | 'zendformelementselect' => ElementFactory::class,
|
177 | 184 | 'zendformelementsubmit' => ElementFactory::class,
|
| 185 | + 'zendformelementtel' => ElementFactory::class, |
178 | 186 | 'zendformelementtext' => ElementFactory::class,
|
179 | 187 | 'zendformelementtextarea' => ElementFactory::class,
|
180 | 188 | 'zendformelementtime' => ElementFactory::class,
|
|
0 commit comments