* @license GNU General Public License version 2 or later; see LICENSE.txt */ defined('_JEXEC') or die; use Joomla\CMS\HTML\HTMLHelper; use Joomla\CMS\Language\Text; use Joomla\CMS\Plugin\PluginHelper; use Joomla\CMS\String\PunycodeHelper; ?> item->profile->getFieldset('profile'); ?>
value) : echo '
' . $profile->label . '
'; $profile->text = htmlspecialchars($profile->value, ENT_COMPAT, 'UTF-8'); switch ($profile->id) : case 'profile_website': $v_http = substr($profile->value, 0, 4); if ($v_http === 'http') : echo '
' . PunycodeHelper::urlToUTF8($profile->text) . '
'; else : echo '
' . PunycodeHelper::urlToUTF8($profile->text) . '
'; endif; break; case 'profile_dob': echo '
' . HTMLHelper::_('date', $profile->text, Text::_('DATE_FORMAT_LC4'), false) . '
'; break; default: echo '
' . $profile->text . '
'; break; endswitch; endif; endforeach; ?>