]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - lib/groupminilist.php
Bug tracker link updated.
[quix0rs-gnu-social.git] / lib / groupminilist.php
index ae2d237f1de65b9c523d3ca00a5a98fc374ee2f2..ca7f8775c60dd0d2895868091be29e237d2c963e 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 /**
- * Laconica, the distributed open-source microblogging tool
+ * StatusNet, the distributed open-source microblogging tool
  *
  * Widget to show a mini-list of groups
  *
  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
  *
  * @category  Public
- * @package   Laconica
- * @author    Evan Prodromou <evan@controlyourself.ca>
- * @copyright 2008-2009 Control Yourself, Inc.
+ * @package   StatusNet
+ * @author    Evan Prodromou <evan@status.net>
+ * @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', 27);
+define('GROUPS_PER_MINILIST', 8);
 
 /**
  * Widget to show a list of groups, good for sidebar
  *
  * @category Public
- * @package  Laconica
- * @author   Evan Prodromou <evan@controlyourself.ca>
+ * @package  StatusNet
+ * @author   Evan Prodromou <evan@status.net>
  * @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,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');
     }