sterzycom/panel/app/fields/tel/tel.php

11 lines
193 B
PHP
Raw Normal View History

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