function showFullName()
 {
     parent::showFullName();
     if ($this->profile->isAdmin($this->group)) {
         $this->out->text(' ');
         // for separating the classes.
         // TRANS: Indicator in group members list that this user is a group administrator.
         $this->out->element('span', 'role', _m('GROUPADMIN', 'Admin'));
     }
 }
 function showFullName()
 {
     parent::showFullName();
     if ($this->profile->id == $this->peopletag->tagger) {
         $this->out->text(' ');
         // TRANS: Addition in tag subscribers list for creator of a tag.
         $this->out->element('span', 'role', _('Creator'));
     }
 }
 function showFullName()
 {
     parent::showFullName();
     if ($this->profile->isAdmin($this->group)) {
         $this->out->text(' ');
         $this->out->element('span', 'role', _('Admin'));
     }
 }