. * * @category Action * @package StatusNet * @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('GNUSOCIAL')) { exit(1); } class SelftagsWidget extends PeopletagsWidget { function url($tag) { // link to self tag page return common_local_url('selftag', array('tag' => $tag)); } function label() { // TRANS: Label in self tags widget. return _m('LABEL','Tags'); } }