11 lines
No EOL
193 B
PHP
11 lines
No EOL
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');
|
|
}
|
|
|
|
} |