Extended profile - linkify related URLs added by the user

This commit is contained in:
Zach Copley 2011-03-16 01:23:47 -07:00
parent bb087a9650
commit 17afe06805

View File

@ -180,7 +180,19 @@ class ExtendedProfileWidget extends Form
protected function showWebsite($name, $field)
{
$this->out->elementStart('div', array('class' => 'website-display'));
$this->out->text($field['value']);
$url = $field['value'];
$this->out->element(
"a",
array(
'href' => $url,
'class' => 'extended-profile-link',
'target' => "_blank"
),
$url
);
if (!empty($field['rel'])) {
$this->out->text(' (' . $field['rel'] . ')');
}