/** * Render telephone tag * * @access public * * @param IFormModel $model model * @param string $property model property * @param array $options attributes array * * @return string */ public function telField(IFormModel $model, $property, array $options = []) { $element = $this->getField($model, $property); $options['id'] = $element['id']; return Html::telField($element['name'], $element['value'], $options); }