SimplePortal

Customization => Blocks and Modifications => Mod Requests => Topic started by: vas on August 27, 2009, 02:11:18 PM

Title: Recent Topics in Space Economized layout
Post by: vas on August 27, 2009, 02:11:18 PM
I want to display 10 Recent Topics in the top block which will make it to one line. Same should wrap when displayed in Right or Left Block.

First podium for Massa in 2009     F1Star     August 19, 2009, 04:21:24 AM

Red Colored is the Topic. Navy colored is the author name. Green colored is the time of posting.

I tried a block from some other portal which displays correctly in thiers but used in Simple Portal shows ony recent posts instead of Recent Topics. Help Please.

The code I tried is
Code: [Select]
global $scripturl;

echo '
                        <table border="0" width="100%" cellspacing="1" cellpadding="4" class="bordercolor">
                               <tr><td colspan="3" class="titlebg">Recent topics</td></tr> ';
       $what=ssi_recentTopics('8', NULL, 'array');


        foreach ($what as $topic)
        {
                echo '
                                <tr>
                                        <td class="windowbg" valign="middle">
                                                ', $topic['link'];

                // Is this topic new? (assuming they are logged in!)
                if (!$topic['new'] && $context['user']['is_logged'])
                        echo '
                                                <a href="', $scripturl, '?topic=', $topic['topic'], '.from', $topic['new_from'], '#new"><img src="', $settings['images_url'], '/', $context['user']['language'], '/new.gif" alt="', $txt[302], '" border="0" /></a>';

                echo '
                                        </td>
                                        <td class="windowbg2" valign="middle" width="20%">
                                                ', $topic['poster']['link'], '
                                        </td>
                                        <td class="windowbg2" valign="middle" width="35%">';
                if ($settings['images_url'] != $settings['theme_url'] . '/images' || file_exists($settings['theme_dir'] . '/images/icons/last_post.gif'))
                        echo '
                                        <a href="', $topic['href'], '"><img src="', $settings['images_url'], '/icons/last_post.gif" alt="', $txt[111], '" title="', $txt[111], '" border="0" style="float: right;" /></a>';
                echo '
                                                <span class="smalltext">
                                                        ', $topic['time'], '
                                                </span>
                                        </td>
                                </tr>';
        }

        echo '
                        </table>';

Please Help Thanks. I was also wondering where exactly the codes are for Recent Blocks in Simple Portal. I searched for the code and I am not sure where it is located.
SimplePortal 2.3.8 © 2008-2024, SimplePortal