X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=lib%2Fgroupminilist.php;h=ca7f8775c60dd0d2895868091be29e237d2c963e;hb=1ee79dc3791162f7ef9b92befaef597328266ce1;hp=dff81eff536f07e345b38681a115a45f555c9493;hpb=bbb830e14c718c687f0636710a1827c90b11f4cc;p=quix0rs-gnu-social.git diff --git a/lib/groupminilist.php b/lib/groupminilist.php index dff81eff53..ca7f8775c6 100644 --- a/lib/groupminilist.php +++ b/lib/groupminilist.php @@ -33,7 +33,7 @@ if (!defined('STATUSNET') && !defined('LACONICA')) { require_once INSTALLDIR.'/lib/grouplist.php'; -define('GROUPS_PER_MINILIST', 27); +define('GROUPS_PER_MINILIST', 8); /** * Widget to show a list of groups, good for sidebar @@ -44,7 +44,6 @@ define('GROUPS_PER_MINILIST', 27); * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ */ - class GroupMiniList extends GroupList { function show() @@ -68,13 +67,11 @@ class GroupMiniList extends GroupList function showGroup() { - $this->out->elementStart('li', 'vcard'); - $this->out->elementStart('a', array('title' => ($this->group->fullname) ? - $this->group->fullname : - $this->group->nickname, + $this->out->elementStart('li', 'h-card'); + $this->out->elementStart('a', array('title' => $this->group->getBestName(), 'href' => $this->group->homeUrl(), 'rel' => 'contact group', - 'class' => 'url')); + 'class' => 'p-name u-url org')); $logo = ($this->group->mini_logo) ? $this->group->mini_logo : User_group::defaultLogo(AVATAR_MINI_SIZE); @@ -83,10 +80,7 @@ class GroupMiniList extends GroupList 'width' => AVATAR_MINI_SIZE, 'height' => AVATAR_MINI_SIZE, 'class' => 'avatar photo', - 'alt' => ($this->group->fullname) ? - $this->group->fullname : - $this->group->nickname)); - $this->out->element('span', 'fn org nickname', $this->group->nickname); + 'alt' => $this->group->getBestName())); $this->out->elementEnd('a'); $this->out->elementEnd('li'); }