TinyPortal

Development => Block Codes => Topic started by: NIBOGO on March 10, 2010, 02:41:22 AM

Title: [Block] Recent Social Groups
Post by: NIBOGO on March 10, 2010, 02:41:22 AM
This is a block to show the recent groups in the SMF Social Groups Mod (http://www.smfpacks.com/index.php?action=page;sa=sg):

Create a new php block and add this content:

SMF 2.0:

global $smcFunc, $scripturl;

echo'Recent Groups:<br />';

$dbresult = $smcFunc['db_query']('', '
   SELECT id_group, group_name, image
   FROM {db_prefix}social_groups
   ORDER BY id_group DESC
   LIMIT 5'); 
while ($row = $smcFunc['db_fetch_assoc']($dbresult))
{
   echo'<a href="'.$scripturl.'?action=sgroups;sa=view;id='.$row['id_group'].'"><img src="'.$row['image'].'" alt="'.$row['group_name'].'" /></a>';
}
$smcFunc['db_free_result']($dbresult);


SMF 1.1.X:

global $db_prefix, $scripturl;

echo 'Recent Groups:<br />';

$dbresult = db_query('
   SELECT ID_GROUP, groupName, image
   FROM {$db_prefix}social_groups
   ORDER BY ID_GROUP DESC
   LIMIT 5', __FILE__, __LINE__);
while ($row = mysql_fetch_assoc($dbresult))
{
   echo'<a href="'.$scripturl.'?action=sgroups;sa=view;id='.$row['ID_GROUP'].'"><img src="'.$row['image'].'" alt="'.$row['groupName'].'" /></a>';
}
mysql_free_result($dbresult);


Best Regards
Title: Re: [Block] Recent Social Groups
Post by: Freddy on March 10, 2010, 01:31:02 PM
Nice one Nibogo  O0
Title: Re: [Block] Recent Social Groups
Post by: NIBOGO on March 12, 2010, 07:41:53 PM
SMF 1.1.X version added
Title: Re: [Block] Recent Social Groups
Post by: samo_zin123 on May 03, 2010, 02:44:46 PM
is there afree version of that mode ?