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: 674
  • 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]

Blocks speak! Do you have an interest in getting more blocks - or even making your own? The Blocks Board is for you!

Author Topic: Avatar en bloque temas recientes  (Read 5101 times)

0 Members and 2 Guests are viewing this topic.

Offline RaulVK

  • Semi Newbie
  • *
  • Posts: 35
  • SMF Version: 2 RC3
  • SP Version: 2.3.2
Avatar en bloque temas recientes
« on: July 31, 2011, 11:18:42 PM »
Hola tengo el siguiente bloque de temas recientes:

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')
{
echo '
<table class="sp_fullwidth">';

foreach ($items as $key => $item)
echo '
<tr>
<td style="width: 40px;">
</td>
<td>
<a href="', $item['href'], '">', $item['subject'], '</a> ', $item['new'] ? '' : ' <a href="' . $scripturl . '?topic=' . $item['topic'] . '.msg' . $item['new_from'] . ';topicseen#new" rel="nofollow"><img src="' . $settings['lang_images_url'] . '/new.gif" alt="' . $txt['new'] . '" border="0" /></a>', '<br /> <span style="font-size: 0.8em;">', $txt['by'], ' ', $item['poster']['link'],' &nbsp;|&nbsp;', $item['time'], '</span><br />', empty($item['is_last']) ? '<hr />' : '
        </td>
</tr>';

echo '
</table>';
}
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>';
}
}

Justo dentro de esta parte          
Code: [Select]
<td style="width: 40px;">
</td>
del modo compact, quiero añadir el avatar de los usuarios, para que aparezca al lado de cada mensaje.

Necesito vuestra ayuda, porque hay que hacer llamada a la base de datos y añadir alguna cosa mas. Y todavía ando muy pez en esto.  ;) Gracias

Offline 130860

  • Super Handsome Language Coordinator
  • Board Moderators
  • *
  • Posts: 1769
  • Gender: Male
  • You and I are not the same class of pirate!
  • SMF Version: 2 RC3
  • SP Version: 2.3.2
Re: Avatar en bloque temas recientes
« Reply #1 on: August 01, 2011, 11:45:43 AM »
ese bloque depende de el archivo SSI.php, si queires que aparezcan los avatares, tendrás que modificar ese archivo, adjuntalo aquí.

Offline RaulVK

  • Semi Newbie
  • *
  • Posts: 35
  • SMF Version: 2 RC3
  • SP Version: 2.3.2
Re: Avatar en bloque temas recientes
« Reply #2 on: August 01, 2011, 03:35:24 PM »
Adjuntado!  ;)

Offline 130860

  • Super Handsome Language Coordinator
  • Board Moderators
  • *
  • Posts: 1769
  • Gender: Male
  • You and I are not the same class of pirate!
  • SMF Version: 2 RC3
  • SP Version: 2.3.2
Re: Avatar en bloque temas recientes
« Reply #3 on: August 01, 2011, 09:59:50 PM »
OK, con el archivo que adjunto ya puedes usar $item['poster']['avatar']  en tu archivo PortalBlocks.php para obtener el avatar del usuario.

Offline RaulVK

  • Semi Newbie
  • *
  • Posts: 35
  • SMF Version: 2 RC3
  • SP Version: 2.3.2
Re: Avatar en bloque temas recientes
« Reply #4 on: August 02, 2011, 06:45:54 AM »
MMMM... no me funciona.

En el SSI.php he cambiado el:
Code: [Select]
'avatar' => $usuario['avatar']['image'];por
Code: [Select]
'avatar' => $usuario['avatar']['image'],por que me daba error en el script.



Luego al Portalblocks, le añadí el:
Code: [Select]
<td style="width: 40px;">
',$item['poster']['avatar'],'
</td>

pero sigue sin mostrarse el avatar.

A ver si le puedes echa un vistacillo por favor ;)



EDITO

Para mas información da este error en el log:
Code: [Select]
8: Undefined index: avatarJustamente es la linea de $item['poster']['avatar']


« Last Edit: August 02, 2011, 10:58:23 AM by RaulVK »

Offline 130860

  • Super Handsome Language Coordinator
  • Board Moderators
  • *
  • Posts: 1769
  • Gender: Male
  • You and I are not the same class of pirate!
  • SMF Version: 2 RC3
  • SP Version: 2.3.2
Re: Avatar en bloque temas recientes
« Reply #5 on: August 02, 2011, 12:26:51 PM »
antes de esto:

<td style="width: 40px;">
         </td>

agrega esto:

if($context['user']['is_admin']){
echo '<pre>';print_r($item);echo '<pre>';
}


para que veas que contiene $item  y que es lo que puedes usar, ahi debería de a aparecer el array avatar

Offline RaulVK

  • Semi Newbie
  • *
  • Posts: 35
  • SMF Version: 2 RC3
  • SP Version: 2.3.2
Re: Avatar en bloque temas recientes
« Reply #6 on: August 02, 2011, 02:06:05 PM »
Lo he probado y sigue sin funcionar, no aparece el array avatar. Lo que me muestra el bloque es lo que hay por default:

Code: [Select]
Array
(
    [id] => 2318
    [board] => Array
        (
            [id] => 14
            [name] => .....
            [href] => .....
            [link] => .....
        )

    [topic] => 658
    [poster] => Array
        (
            [id] => 3
            [name] => ......
            [href] => .....
            [link] => .....
        )

    [subject] => ......
    [short_subject] => .......
    [preview] => .......
    [body] => .........
    [time] => Hoy a las 17:44
    [timestamp] => 1312299845
    [href] => .......
    [link] => Re:.....
    [new] =>
    [is_new] => 1
    [new_from] => 2318
    [is_last] => 1
)

El array del avatar debería mostrarse encima del [ID] como me lo pusiste en el SSI, pero no aparece.

Offline 130860

  • Super Handsome Language Coordinator
  • Board Moderators
  • *
  • Posts: 1769
  • Gender: Male
  • You and I are not the same class of pirate!
  • SMF Version: 2 RC3
  • SP Version: 2.3.2
Re: Avatar en bloque temas recientes
« Reply #7 on: August 05, 2011, 12:14:39 PM »
OK, un typo en el archivo SSI.php  busca esto:

            'avatar' => $usuario['avatar']['image'];

y reempalzalo con esto:

            'avatar' => $usuario['avatar']['image'],

Offline RaulVK

  • Semi Newbie
  • *
  • Posts: 35
  • SMF Version: 2 RC3
  • SP Version: 2.3.2
Re: Avatar en bloque temas recientes
« Reply #8 on: August 06, 2011, 04:22:38 AM »
Ya funciona, fue fallo mio al explicarme en el post principal, estaba utilizando el bloque de mensajes recientes, no de temas recientes, lo siento y muchiiiisimas gracias por tu ayuda.  :)


Ahora la pregunta es ¿Como redimensiono de tamaño los avatares?
« Last Edit: August 06, 2011, 04:38:19 AM by RaulVK »

Offline 130860

  • Super Handsome Language Coordinator
  • Board Moderators
  • *
  • Posts: 1769
  • Gender: Male
  • You and I are not the same class of pirate!
  • SMF Version: 2 RC3
  • SP Version: 2.3.2
Re: Avatar en bloque temas recientes
« Reply #9 on: August 08, 2011, 10:17:34 AM »
vas a tener que hacerlo desde el SSI.php ya que el bloque está llamando directamente a la imagen ya creada   $usuario['avatar']['image']

o puedes usar   $usuario['avatar']['href']  me parece que contiene la url de la imagen,  con esta url puedes crear tu imagen agregandole el tamaño que tu quieras:

<img src="'. $usuario['avatar']['href'].'" width="30px" />

Offline RaulVK

  • Semi Newbie
  • *
  • Posts: 35
  • SMF Version: 2 RC3
  • SP Version: 2.3.2
Re: Avatar en bloque temas recientes
« Reply #10 on: August 08, 2011, 12:02:16 PM »
Lo he probado y no detecta la url del avatar con el href. Va a haber que crear algo mas en el ssi.php y no se como hacerlo.

Offline 130860

  • Super Handsome Language Coordinator
  • Board Moderators
  • *
  • Posts: 1769
  • Gender: Male
  • You and I are not the same class of pirate!
  • SMF Version: 2 RC3
  • SP Version: 2.3.2
Re: Avatar en bloque temas recientes
« Reply #11 on: August 08, 2011, 03:04:18 PM »
en esta parte de tu archivo SSI.php

Code: [Select]
'poster' => array(
'avatar' => $usuario['avatar']['image'];
'id' => $row['id_member'],
'name' => $row['poster_name'],
'href' => empty($row['id_member']) ? '' : $scripturl . '?action=profile;u=' . $row['id_member'],
'link' => empty($row['id_member']) ? $row['poster_name'] : '<a href="' . $scripturl . '?action=profile;u=' . $row['id_member'] . '">' . $row['poster_name'] . '</a>'
),


vas a agregar el href:

Code: [Select]
'poster' => array(
'avatar' => $usuario['avatar']['image'],
'avatar_href' => $usuario['avatar']['href'],
'id' => $row['id_member'],
'name' => $row['poster_name'],
'href' => empty($row['id_member']) ? '' : $scripturl . '?action=profile;u=' . $row['id_member'],
'link' => empty($row['id_member']) ? $row['poster_name'] : '<a href="' . $scripturl . '?action=profile;u=' . $row['id_member'] . '">' . $row['poster_name'] . '</a>'
),



y ahora ya puedes usar   ',$item['poster']['avatar_href'],'  en tu portalblocks.php

Offline RaulVK

  • Semi Newbie
  • *
  • Posts: 35
  • SMF Version: 2 RC3
  • SP Version: 2.3.2
Re: Avatar en bloque temas recientes
« Reply #12 on: August 08, 2011, 08:14:59 PM »
Muchas gracias, ahora si a quedado todo genial. ;)