collapse

* Simple Portal Archived Forum

This is an Archive Forum.

The content in this forum may be out-of-date or have been superseded by newer information, and links in forum pages to other sites may not work.
This forum contains archives for future reference.

Visit our thread at Simple Machines Forum for current support.

SMF 2.1 users: EhPortal is a ported version of Simple Portal specifically designed for the SMF 2.1 branch.
Please visit web-develop.ca to download EhPortal and for its support.

* User Info

 
 
Welcome, Guest. Please login or register.

* Who's Online

  • Dot Guests: 994
  • Dot Hidden: 0
  • Dot Users: 0

There aren't any users online.

* Shoutbox

Refresh History
  • Shoutbox is not for support!
  • {OCS}MasterSeal: Yup, Still adore SP
    April 21, 2019, 07:08:06 PM
  • {OCS}MasterSeal: STILL love SP :)
    November 24, 2018, 05:05:50 AM
  • ♦ Ninja ZX-10RR ♦: <3 aegersz
    September 13, 2018, 03:36:09 PM
  • aegersz: I STILL <3 LOVE SimplePortal
    September 13, 2018, 07:11:39 AM
  • aegersz: o LOVE you guys - Simple Portal rocks !
    May 09, 2018, 05:18:59 AM
  • Chen Zhen: our apologies for the site being down.. please read server issues topic
    March 22, 2018, 05:32:38 AM
  • {OCS}MasterSeal: LOL PLEASE forget I just posted that. I found the answer in my own dang post back in 2015. lol sorry!
    July 04, 2017, 10:47:55 PM
  • {OCS}MasterSeal: I know this SB isnt' for support, but I just have a general question. Who would I contact to find out where SP stores its block info? Is it DB driven or files? I searched the site but came up with nothing. probably my fault any insight is appreciated.
    July 04, 2017, 10:43:36 PM
  • ♦ Ninja ZX-10RR ♦: Excuse me but what does Simpleportal have to deal with that?
    February 05, 2017, 08:21:14 PM
  • WhiteEagle: of course IMHO that site appears to be dead :(
    February 04, 2017, 01:08:05 PM
  • WhiteEagle: If I can get that, then I'll use it for that site...
    February 04, 2017, 01:07:35 PM
  • WhiteEagle: decided to not use SMF for any projects, unless I can get a copy of the premium version of the fanfiction archive plugin
    February 04, 2017, 01:06:54 PM
  • expertdecisions: cloudflare
    January 28, 2017, 08:01:47 AM
  • aegersz: SM release 2.0.13 !
    January 12, 2017, 06:00:13 AM
  • raffo: Tks Emanuele, even if I didn't understand the fix :D
    November 07, 2016, 02:01:20 AM
  • emanuele: [link]
    November 01, 2016, 12:43:50 PM
  • emanuele: raffo: the English support board is a good place. ;)
    November 01, 2016, 12:43:38 PM
  • raffo: Where can I find the fix for the shoutbox?
    November 01, 2016, 05:06:09 AM
  • {OCS}MasterSeal: To the SP team, I make a point to come here and thank you as much as possible for your work.  so again, THANK YOU!
    October 28, 2016, 10:38:05 AM
  • emanuele: That's indeed funny, the limit is present only in the patch and not the full install.
    October 22, 2016, 06:14:58 PM

* Recent Posts

Adding Forums Button to Nav bar by jirapon
[August 01, 2019, 09:07:12 AM]


Re: Board Icons by ♦ Ninja ZX-10RR ♦
[July 30, 2019, 04:03:41 PM]


MOVED: Czech translation???? by ♦ Ninja ZX-10RR ♦
[July 30, 2019, 03:04:51 PM]


Board Icons by jirapon
[July 30, 2019, 07:28:44 AM]


Re: Thankyou Simpleportal, by ♦ Ninja ZX-10RR ♦
[July 29, 2019, 09:41:29 AM]

Welcome to SimplePortal.net! You can download SimplePortal from the Downloads Area!

Author Topic: sp_recent block avatar add  (Read 4825 times)

0 Members and 1 Guest are viewing this topic.

Offline gebekzor

  • Semi Newbie
  • *
  • Posts: 5
  • SP Version: 2.3.3
sp_recent block avatar add
« on: August 09, 2011, 11:58:46 AM »
Hello, my question is how to add avatar to block sp_recent author of last post? As in the top posters.
This is connected with this code:

Code: [Select]
function sp_recent($parameters, $id, $return_parameters = false)
{
global $txt, $scripturl, $settings, $context, $color_profile;

$block_parameters = array(
'boards' => 'boards',
'limit' => 'int',
'type' => 'select',
'display' => 'select',
);

if ($return_parameters)
return $block_parameters;

$boards = !empty($parameters['boards']) ? explode('|', $parameters['boards']) : null;
$limit = !empty($parameters['limit']) ? (int) $parameters['limit'] : 5;
$type = 'ssi_recent' . (empty($parameters['type']) ? 'Posts' : 'Topics');
$display = empty($parameters['display']) ? 'compact' : 'full';

$items = $type($limit, null, $boards, 'array');

if (empty($items))
{
echo '
', $txt['error_sp_no_posts_found'];
return;
}
else
$items[count($items) - 1]['is_last'] = true;

$colorids = array();
foreach ($items as $item)
$colorids[] = $item['poster']['id'];

if (!empty($colorids) && sp_loadColors($colorids) !== false)
{
foreach ($items as $k => $p)
{
if (!empty($color_profile[$p['poster']['id']]['link']))
$items[$k]['poster']['link'] = $color_profile[$p['poster']['id']]['link'];
}
}


if ($display == 'compact')
{
foreach ($items as $key => $item)
echo '
<div style="padding: 0px 3px;"><span class="smalltext"><a href="', $item['href'], '">', $item['subject'], '</a></span><br /> <span class="smalltext"> ', $item['poster']['link'], $item['new'] ? '' : '<a href="' . $scripturl . '?topic=' . $item['topic'] . '.msg' . $item['new_from'] . ';topicseen#new" rel="nofollow"></a>',', ', $item['time'], '</span></div>', empty($item['is_last']) ? '<hr>' : '';

}
elseif ($display == 'full')
{
echo '
<table class="sp_fullwidth">';

foreach ($items as $item)
echo '
<tr>
<td class="sp_recent_icon sp_center">
', sp_embed_image(empty($parameters['type']) ? 'post' : 'topic'), '
</td>
<td class="sp_recent_subject">
<a href="', $item['href'], '">', $item['subject'], '</a>
', $item['new'] ? '' : '<a href="' . $scripturl . '?topic=' . $item['topic'] . '.msg' . $item['new_from'] . ';topicseen#new"><img src="' . $settings['images_url'] . '/' . $context['user']['language'] . '/new.gif" alt="' . $txt['new'] . '" border="0" /></a>', '<br />[', $item['board']['link'], ']
</td>
<td class="sp_recent_info sp_right">
', $item['poster']['link'], '<br />', $item['time'], '
</td>
</tr>';

echo '
</table>';
}
}

To look like this:


And something else, and can reduce the number of letters in the names sp_recent thread?

« Last Edit: August 09, 2011, 01:21:16 PM by gebekzor »

Offline AngelinaBelle

  • Comrade
  • *
  • Posts: 4870
  • Gender: Female
  • SMF Version: 2 RC3
  • SP Version: 2.3.2
Re: sp_recent block avatar add
« Reply #1 on: August 10, 2011, 08:13:31 AM »
This block uses ssi_recentPosts and ssi_recentTopics to get its information. These functions are found in SSI.php. They do not provide the avatar. 
 
If I wanted to make this change, here's what I would do:
1) Make new functions to replace ssi_recentPosts and ssi_recentTopics. These new functions would be similar to the current recentPosts and recentTopics, but would have to also get the avatar for each member_id, and return that information.
2) Change the block sp_recent to use the avatar information.  This is a bit of customization work, and involves some work with SQL statements.
Please to keep this website running, if you like SimplePortal, make a
one-time subscription. Thank you for your support.

Have you tried the SimplePortal documentation?

Offline Blue

  • Customizer
  • *
  • Posts: 379
  • Gender: Male
  • Block Maker? =P
Re: sp_recent block avatar add
« Reply #2 on: August 10, 2011, 05:48:31 PM »
Hum... You could try adding this to the block above after each "foreach":

Code: [Select]
global $memberContext;
loadMemberData($item['poster']['id']);
loadMemberContext($item['poster']['id']);

and to output the avatar use something like:

Code: [Select]
<img src="' . $memberContext[$item['poster']['id']]['avatar']['href'] . '" alt="" />
To reduce the number of letters you can use the php function: substr ()
« Last Edit: August 10, 2011, 05:50:45 PM by Blue »
Please to keep this website running, if you like SimplePortal, make a
one-time subscription. Thank you for your support.

Offline AngelinaBelle

  • Comrade
  • *
  • Posts: 4870
  • Gender: Female
  • SMF Version: 2 RC3
  • SP Version: 2.3.2
Re: sp_recent block avatar add
« Reply #3 on: August 10, 2011, 06:58:33 PM »
.... Or you could do it the easy way :)
This could add several queries to the page, though (depends on the # of posts in the block), and what else is going on, on the page.
« Last Edit: August 10, 2011, 07:00:51 PM by AngelinaBelle »
Please to keep this website running, if you like SimplePortal, make a
one-time subscription. Thank you for your support.

Have you tried the SimplePortal documentation?

Offline Blue

  • Customizer
  • *
  • Posts: 379
  • Gender: Male
  • Block Maker? =P
Re: sp_recent block avatar add
« Reply #4 on: August 10, 2011, 11:08:16 PM »
Yes, there is always a downside if we go the easy way but if it's a small block it's ok ;)
Please to keep this website running, if you like SimplePortal, make a
one-time subscription. Thank you for your support.

Offline gebekzor

  • Semi Newbie
  • *
  • Posts: 5
  • SP Version: 2.3.3
Re: sp_recent block avatar add
« Reply #5 on: August 11, 2011, 05:36:30 AM »
Hum... You could try adding this to the block above after each "foreach":

Code: [Select]
global $memberContext;
loadMemberData($item['poster']['id']);
loadMemberContext($item['poster']['id']);

and to output the avatar use something like:

Code: [Select]
<img src="' . $memberContext[$item['poster']['id']]['avatar']['href'] . '" alt="" />
To reduce the number of letters you can use the php function: substr ()

It works but when I write somebody other avatar stops appear


Offline AngelinaBelle

  • Comrade
  • *
  • Posts: 4870
  • Gender: Female
  • SMF Version: 2 RC3
  • SP Version: 2.3.2
Re: sp_recent block avatar add
« Reply #6 on: August 11, 2011, 09:26:39 AM »
I think this idea should work. Please show your modified code. Maybe one of us can spot the problem in an instant.
 
If not, you should be able figure it out by putting in "debug echo" statements in lots of spots, to see where it is right and where it starts to go wrong.
Please to keep this website running, if you like SimplePortal, make a
one-time subscription. Thank you for your support.

Have you tried the SimplePortal documentation?

Offline gebekzor

  • Semi Newbie
  • *
  • Posts: 5
  • SP Version: 2.3.3
Re: sp_recent block avatar add
« Reply #7 on: August 11, 2011, 09:34:28 AM »
Here is the code:
Code: [Select]
function sp_recent($parameters, $id, $return_parameters = false)
{
global $txt, $scripturl, $settings, $context, $color_profile;
global $memberContext;

$block_parameters = array(
'boards' => 'boards',
'limit' => 'int',
'type' => 'select',
'display' => 'select',
);

if ($return_parameters)
return $block_parameters;

$boards = !empty($parameters['boards']) ? explode('|', $parameters['boards']) : null;
$limit = !empty($parameters['limit']) ? (int) $parameters['limit'] : 5;
$type = 'ssi_recent' . (empty($parameters['type']) ? 'Posts' : 'Topics');
$display = empty($parameters['display']) ? 'compact' : 'full';

$items = $type($limit, null, $boards, 'array');

if (empty($items))
{
echo '
', $txt['error_sp_no_posts_found'];
return;
}
else
$items[count($items) - 1]['is_last'] = true;

$colorids = array();
foreach ($items as $item)
$colorids[] = $item['poster']['id'];

if (!empty($colorids) && sp_loadColors($colorids) !== false)
{
foreach ($items as $k => $p)
{
if (!empty($color_profile[$p['poster']['id']]['link']))
$items[$k]['poster']['link'] = $color_profile[$p['poster']['id']]['link'];
}
}


if ($display == 'compact')
{
 loadMemberData($item['poster']['id']);
 loadMemberContext($item['poster']['id']);
 
foreach ($items as $key => $item)
echo '

<div class="userav"><img src="' . $memberContext[$item['poster']['id']]['avatar']['href'] . '" alt="" height="30px" /></div>
<div style="padding: 0px 3px;"><span class="smalltext"><a href="', $item['href'], '">', $item['subject'], '</a></span><br /> <span class="smalltext"> ', $item['poster']['link'], $item['new'] ? '' : '<a href="' . $scripturl . '?topic=' . $item['topic'] . '.msg' . $item['new_from'] . ';topicseen#new" rel="nofollow"></a>',', ', $item['time'], '</span></div>', empty($item['is_last']) ? '<hr>' : '';
}
elseif ($display == 'full')
{
echo '
<table class="sp_fullwidth">';

foreach ($items as $item)
echo '
<tr>
<td class="sp_recent_icon sp_center">
', sp_embed_image(empty($parameters['type']) ? 'post' : 'topic'), '
</td>
<td class="sp_recent_subject">
<a href="', $item['href'], '">', $item['subject'], '</a>
', $item['new'] ? '' : '<a href="' . $scripturl . '?topic=' . $item['topic'] . '.msg' . $item['new_from'] . ';topicseen#new"><img src="' . $settings['images_url'] . '/' . $context['user']['language'] . '/new.gif" alt="' . $txt['new'] . '" border="0" /></a>', '<br />[', $item['board']['link'], ']
</td>
<td class="sp_recent_info sp_right">
', $item['poster']['link'], '<br />', $item['time'], '
</td>

</tr>';

echo '
</table>';
}
}

Offline AngelinaBelle

  • Comrade
  • *
  • Posts: 4870
  • Gender: Female
  • SMF Version: 2 RC3
  • SP Version: 2.3.2
Re: sp_recent block avatar add
« Reply #8 on: August 11, 2011, 09:37:29 AM »
Yes.  You have told it to only load the avatar for one id. Whatever the id is before you start the foreach loop.
You need to put this inside the foreach, so it will do it for each $item in $items.
Then, this should work.
Please to keep this website running, if you like SimplePortal, make a
one-time subscription. Thank you for your support.

Have you tried the SimplePortal documentation?

Offline gregorie

  • Just Registered
  • Posts: 1
Re: sp_recent block avatar add
« Reply #9 on: August 11, 2011, 11:56:03 AM »
I do not know that I could get ready to rewrite the code ;(

Offline AngelinaBelle

  • Comrade
  • *
  • Posts: 4870
  • Gender: Female
  • SMF Version: 2 RC3
  • SP Version: 2.3.2
Re: sp_recent block avatar add
« Reply #10 on: August 11, 2011, 01:18:32 PM »
You'll need to add curly brackets, of course:
Code: [Select]
foreach ($items as $key => $item)
  {
loadMemberData($item['poster']['id']);
loadMemberContext($item['poster']['id']);

echo '

<div class="userav"><img src="' . $memberContext[$item['poster']['id']]['avatar']['href'] . '" alt="" height="30px" /></div>
<div style="padding: 0px 3px;"><span class="smalltext"><a href="', $item['href'], '">', $item['subject'], '</a></span><br /> <span class="smalltext"> ', $item['poster']['link'], $item['new'] ? '' : '<a href="' . $scripturl . '?topic=' . $item['topic'] . '.msg' . $item['new_from'] . ';topicseen#new" rel="nofollow"></a>',', ', $item['time'], '</span></div>', empty($item['is_last']) ? '<hr>' : '';
  }
Please to keep this website running, if you like SimplePortal, make a
one-time subscription. Thank you for your support.

Have you tried the SimplePortal documentation?

Offline Blue

  • Customizer
  • *
  • Posts: 379
  • Gender: Male
  • Block Maker? =P
Re: sp_recent block avatar add
« Reply #11 on: August 11, 2011, 07:57:32 PM »
gebekzor and gregorie, have you manage to make it work? :)
« Last Edit: August 12, 2011, 01:22:24 AM by Blue »
Please to keep this website running, if you like SimplePortal, make a
one-time subscription. Thank you for your support.

Offline AngelinaBelle

  • Comrade
  • *
  • Posts: 4870
  • Gender: Female
  • SMF Version: 2 RC3
  • SP Version: 2.3.2
Re: sp_recent block avatar add
« Reply #12 on: August 11, 2011, 09:42:34 PM »
And gebekzor, of course -- the original poster.  Is this working for you?
Please to keep this website running, if you like SimplePortal, make a
one-time subscription. Thank you for your support.

Have you tried the SimplePortal documentation?

Offline Blue

  • Customizer
  • *
  • Posts: 379
  • Gender: Male
  • Block Maker? =P
Re: sp_recent block avatar add
« Reply #13 on: August 12, 2011, 01:23:14 AM »
And gebekzor, of course -- the original poster.  Is this working for you?

Sorry AngelinaBelle, I didn't notice there were two. Did you two manage to make it work? :D
Please to keep this website running, if you like SimplePortal, make a
one-time subscription. Thank you for your support.

Offline gebekzor

  • Semi Newbie
  • *
  • Posts: 5
  • SP Version: 2.3.3
Re: sp_recent block avatar add
« Reply #14 on: August 12, 2011, 04:36:26 AM »
And gebekzor, of course -- the original poster.  Is this working for you?

Sorry AngelinaBelle, I didn't notice there were two. Did you two manage to make it work? :D

Thanks, works great



But I still have one small request, could someone help me with the function substr () to block show only first 30 letters. I tried myself but good to me it did not work out.

Offline Blue

  • Customizer
  • *
  • Posts: 379
  • Gender: Male
  • Block Maker? =P
Re: sp_recent block avatar add
« Reply #15 on: August 12, 2011, 10:26:54 AM »
find:

Code: [Select]
<a href="', $item['href'], '">', $item['subject'] , '</a>
and replace with:

Code: [Select]
<a href="', $item['href'], '">', substr ($item['subject'],0,30) , '</a>
Please to keep this website running, if you like SimplePortal, make a
one-time subscription. Thank you for your support.

Offline gebekzor

  • Semi Newbie
  • *
  • Posts: 5
  • SP Version: 2.3.3
Re: sp_recent block avatar add
« Reply #16 on: August 12, 2011, 04:28:19 PM »
thanks for all lock please

Offline Blue

  • Customizer
  • *
  • Posts: 379
  • Gender: Male
  • Block Maker? =P
Re: sp_recent block avatar add
« Reply #17 on: August 12, 2011, 10:50:16 PM »
I'm glad we could help you :)
Please to keep this website running, if you like SimplePortal, make a
one-time subscription. Thank you for your support.