11 lines
193 B
PHP
11 lines
193 B
PHP
|
<?php
|
||
|
|
||
|
class TelField extends TextField {
|
||
|
|
||
|
public function __construct() {
|
||
|
$this->type = 'tel';
|
||
|
$this->icon = 'phone';
|
||
|
$this->label = l::get('fields.tel.label', 'Phone');
|
||
|
}
|
||
|
|
||
|
}
|