]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Move table-based profile section layout from topposter to base class
authorEvan Prodromou <evan@controlyourself.ca>
Thu, 22 Jan 2009 21:41:52 +0000 (21:41 +0000)
committerEvan Prodromou <evan@controlyourself.ca>
Thu, 22 Jan 2009 21:41:52 +0000 (21:41 +0000)
lib/profilesection.php
lib/topposterssection.php

index 91a3dfa34dfcc095032bbeeb1b4d62b18289996a..3642ae164a4fd946cb4bdfba615b58af612ab695 100644 (file)
@@ -76,7 +76,9 @@ class ProfileSection extends Section
 
     function showProfile($profile)
     {
-        $this->out->elementStart('li', 'vcard');
+        $this->out->elementStart('tr');
+        $this->out->elementStart('td');
+        $this->out->elementStart('span', 'vcard');
         $this->out->elementStart('a', array('title' => ($profile->fullname) ?
                                        $profile->fullname :
                                        $profile->nickname,
@@ -92,10 +94,13 @@ class ProfileSection extends Section
                                     $profile->fullname :
                                     $profile->nickname));
         $this->out->element('span', 'fn nickname', $profile->nickname);
+        $this->out->elementEnd('span');
         $this->out->elementEnd('a');
+        $this->out->elementEnd('td');
         if ($profile->value) {
-            $this->out->element('span', 'value', $profile->value);
+            $this->out->element('td', 'value', $profile->value);
         }
-        $this->out->elementEnd('li');
+
+        $this->out->elementEnd('tr');
     }
 }
index 78697309369fc9a9c50a9658032365ebf3f8bd45..4bd59ac7971cfba0384a70c3e00f5c61c6166143 100644 (file)
@@ -69,36 +69,6 @@ class TopPostersSection extends ProfileSection
         return $profile;
     }
 
-    function showProfile($profile)
-    {
-        $this->out->elementStart('tr');
-        $this->out->elementStart('td');
-        $this->out->elementStart('span', 'vcard');
-        $this->out->elementStart('a', array('title' => ($profile->fullname) ?
-                                       $profile->fullname :
-                                       $profile->nickname,
-                                       'href' => $profile->profileurl,
-                                       'rel' => 'contact member',
-                                       'class' => 'url'));
-        $avatar = $profile->getAvatar(AVATAR_MINI_SIZE);
-        $this->out->element('img', array('src' => (($avatar) ? common_avatar_display_url($avatar) :  common_default_avatar(AVATAR_MINI_SIZE)),
-                                    'width' => AVATAR_MINI_SIZE,
-                                    'height' => AVATAR_MINI_SIZE,
-                                    'class' => 'avatar photo',
-                                    'alt' =>  ($profile->fullname) ?
-                                    $profile->fullname :
-                                    $profile->nickname));
-        $this->out->element('span', 'fn nickname', $profile->nickname);
-        $this->out->elementEnd('span');
-        $this->out->elementEnd('a');
-        $this->out->elementEnd('td');
-        if ($profile->value) {
-            $this->out->element('td', 'value', $profile->value);
-        }
-
-        $this->out->elementEnd('tr');
-    }
-
     function title()
     {
         return _('Top posters');