File size: 961B
<?php
/**
* SocialEngine
*
* @category Application_Core
* @package Fields
* @copyright Copyright 2006-2017 Webligo Developments
* @license http://www.socialengine.com/license/
* @version $Id: FieldGoodreads.php 9747 2017-11-10 02:08:08Z john $
* @author Donna
*/
/**
* @category Application_Core
* @package Fields
* @copyright Copyright 2006-2017 Webligo Developments
* @license http://www.socialengine.com/license/
* @author Donna
*/
class Fields_View_Helper_FieldGoodreads extends Fields_View_Helper_FieldAbstract
{
public function fieldGoodreads($subject, $field, $value)
{
$regex = '/^((http(s|):\/\/|)(www\.|)|)goodreads\.com\//i';
$username = preg_replace($regex, '', trim($value->value));
$goodrUrl = 'https://www.goodreads.com/' . $username;
return $this->view->htmlLink($goodrUrl, $value->value, array(
'target' => '_blank',
'ref' => 'nofollow',
));
}
}