. * * @category Widget * @package StatusNet * @author Shashi Gowda * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ */ if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); } /** * People tags a user has been tagged with * * @category Widget * @package StatusNet * @author Shashi Gowda * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ */ class PeopletagsForUserSection extends PeopletagSection { var $profile=null; function __construct($out, Profile $profile) { parent::__construct($out); $this->profile = $profile; } function getPeopletags() { $limit = PEOPLETAGS_PER_SECTION+1; $offset = 0; $auth_user = common_current_user(); $ptags = $this->profile->getOtherTags($auth_user, $offset, $limit); return $ptags; } function title() { $name = $this->profile->getBestName(); if ($this->profile->id == common_current_user()->id) { $name = 'you'; } // TRANS: Title for page that displays which people tags a user has been tagged with. // TRANS: %s is a profile name. return sprintf(_('People tags for %s'), $name); } function link() { return common_local_url('peopletagsforuser', array('nickname' => $this->profile->nickname)); } function moreUrl() { return $this->link(); } function divId() { return 'peopletag_subscriptions'; } }