X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=lib%2Fgroupminilist.php;h=ca7f8775c60dd0d2895868091be29e237d2c963e;hb=7220b3ddd4a32b947e851c946cb6ad6146bebf7d;hp=fe38d03403aa3090100731a4f79fa8b16782ccd4;hpb=a2a2dd88b5a580715a1b8256a5d8b7743675711c;p=quix0rs-gnu-social.git diff --git a/lib/groupminilist.php b/lib/groupminilist.php index fe38d03403..ca7f8775c6 100644 --- a/lib/groupminilist.php +++ b/lib/groupminilist.php @@ -1,6 +1,6 @@ . * * @category Public - * @package Laconica - * @author Evan Prodromou - * @copyright 2008-2009 Control Yourself, Inc. + * @package StatusNet + * @author Evan Prodromou + * @copyright 2008-2009 StatusNet, Inc. * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 - * @link http://laconi.ca/ + * @link http://status.net/ */ -if (!defined('LACONICA')) { +if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); } require_once INSTALLDIR.'/lib/grouplist.php'; -define('GROUPS_PER_MINILIST', 80); +define('GROUPS_PER_MINILIST', 8); /** * Widget to show a list of groups, good for sidebar * * @category Public - * @package Laconica - * @author Evan Prodromou + * @package StatusNet + * @author Evan Prodromou * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 - * @link http://laconi.ca/ + * @link http://status.net/ */ - class GroupMiniList extends GroupList { function show() @@ -68,24 +67,20 @@ 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')); - $logo = ($this->group->stream_logo) ? - $this->group->stream_logo : User_group::defaultLogo(AVATAR_STREAM_SIZE); + 'class' => 'p-name u-url org')); + + $logo = ($this->group->mini_logo) ? + $this->group->mini_logo : User_group::defaultLogo(AVATAR_MINI_SIZE); $this->out->element('img', array('src' => $logo, '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'); }