Changeset 1185129
- Timestamp:
- 06/21/2015 07:06:22 PM (11 years ago)
- Location:
- steam-group-widget/trunk
- Files:
-
- 2 edited
-
README.md (modified) (2 diffs)
-
steam-group-widget.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
steam-group-widget/trunk/README.md
r1123901 r1185129 4 4 Tags: steam, community, group, widget 5 5 Requires at least: 3.0.1 6 Tested up to: 4. 1.17 Stable tag: 1.0 6 Tested up to: 4.2.2 7 Stable tag: 1.0.1 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 25 25 == Changelog == 26 26 27 = 1.0.1 = 28 * Change table design 29 27 30 = 1.0 = 28 31 * Initial release -
steam-group-widget/trunk/steam-group-widget.php
r1123901 r1185129 54 54 <table> 55 55 <tr> 56 <td rowspan="5" width="30%"><img src="'.$xml->groupDetails->avatarFull.'" width="100%"> </td> 57 <td><strong>Group Name:</strong> '.$xml->groupDetails->groupName.'</td> 56 <th colspan="2"><img src="'.$xml->groupDetails->avatarFull.'" width="100%"></th> 58 57 </tr> 59 58 <tr> 60 <td><strong>Member count:</strong> '.$xml->groupDetails->memberCount.'</td> 59 <td>Group Name</td> 60 <td>'.$xml->groupDetails->groupName.'</td> 61 61 </tr> 62 62 <tr> 63 <td><strong>In Game:</strong> '.$xml->groupDetails->membersInGame.'</td> 63 <td>Member Count</td> 64 <td>'.$xml->groupDetails->memberCount.'</td> 64 65 </tr> 65 66 <tr> 66 <td><strong>Online:</strong> '.$xml->groupDetails->membersOnline.'</td> 67 <td>In Game</td> 68 <td>'.$xml->groupDetails->membersInGame.'</td> 67 69 </tr> 68 70 <tr> 69 <td><a href="' . $groupURL . '">Show this group</a></td> 71 <td>Online</td> 72 <td>'.$xml->groupDetails->membersOnline.'</td> 73 </tr> 74 <tr> 75 <td colspan="2"><a href="' . $groupURL . '">Show this group</a></td> 70 76 </tr> 71 77 </table>';
Note: See TracChangeset
for help on using the changeset viewer.