* @link http://www.tassos.gr * @copyright Copyright © 2019 Tassos Marinos All Rights Reserved * @license GNU GPLv3 or later */ defined('_JEXEC') or die; if (!$telephone = htmlentities($field->value, ENT_COMPAT, 'UTF-8')) { return; } // Remove underscores $telephone = str_replace('_', '', $telephone); $click_to_call = (bool) $fieldParams->get('click_to_call', true); $buffer = $telephone; // Output if ($click_to_call) { // Remove hyphens $telephoneCode = str_replace('-', '', $telephone); $buffer = '' . $telephone . ''; } echo $buffer;