Deprecated: str_replace(): Passing null to parameter #3 ($subject) of type array|string is deprecated in /var/www/mybb-es.com/html/inc/class_language.php on line 201
[ProPortal] Mostrar temas de x Foro
Páginas (2): 1 2   
Leandro M.   24 Sep, 2012, 11:32 am
#1
Hola que tal, quisiera mostrar los ultimos temas solo de algunos foros en el portal, uso pro portal, por si necesitan aca dejo el php de block_latestthreads.php

Código PHP:
<?php
/***************************************************************
* ProPortal
* Copyright © 2010 ProMyBB, All Rights Reserved
*
* Website: http://www.promybb.com/
* License: http://creativecommons.org/licenses/by-nc-sa/3.0/
***************************************************************/

if (!defined("IN_PORTAL")) {
die(
"<div style=\"border:1px solid #CC0000; padding:3px; margin:0; font-family:Tahoma; width:250px; font-size:12px;\"><strong>Error:</strong> This file cannot be viewed directly!</div>");
}

// Get forums user cannot view
$unviewable = get_unviewable_forums();
if(
$unviewable)
{
$unviewwhere = " AND fid NOT IN ($unviewable)";
}

$threadlimit = 10;
$query = $db->query("
SELECT t.*, t.subject AS threadsubject, u.username, u.usergroup, u.displaygroup, i.*, i.name AS iconname,
t.dateline AS threaddate, t.lastpost AS threadlastpost
FROM "
.TABLE_PREFIX."threads t
LEFT JOIN "
.TABLE_PREFIX."icons i ON (i.iid=t.icon)
LEFT JOIN "
.TABLE_PREFIX."users u ON (t.lastposter=u.username)
WHERE t.visible = '1'
$unviewwhere
GROUP BY t.tid
ORDER BY threaddate DESC
LIMIT 0,
$threadlimit
"
);

while(
$threads = $db->fetch_array($query))
{

if(
$threads['icon'] > 0)
{
$icon = "<img src=\"{$threads['path']}\" alt=\"{$threads['iconname']}\" title=\"{$threads['iconname']}\" />";
}
else
{
$icon = "&nbsp;";
}

if(
strlen($threads['threadsubject']) > "40")
{
$threadsthreadsubject = my_substr($threads['threadsubject'],0,40)."...";
}
else
{
$threadsthreadsubject = $threads['threadsubject'];
}

if(
strlen($threads['forumname']) > "20")
{
$threadsforumname = my_substr($threads['forumname'],0,20)."...";
}
else
{
$threadsforumname = $threads['forumname'];
}

$threadlink = get_thread_link($threads['tid']);
$forumlink = get_forum_link($threads['fid']);
$replies = my_number_format($threads['replies']);
$views = my_number_format($threads['views']);
$lastpostdate = my_date($mybb->settings['dateformat'], $threads['threadlastpost']);
$lastposttime = my_date($mybb->settings['timeformat'], $threads['threadlastpost']);
$lastposter = format_name($threads['username'], $threads['usergroup'], $threads['displaygroup']);
$lastposter = build_profile_link($lastposter, $threads['lastposteruid']);

$last_thread .= "<tr>
<td class=\"trow1\" align=\"center\" height=\"24\">
$icon</td>
<td class=\"trow2\"><a href=\"
$threadlink\" title=\"$threads[threadsubject]\">$threadsthreadsubject</a></td>
<td class=\"trow1\" align=\"center\">
$replies</td>
<td class=\"trow2\" align=\"center\">
$views</td>
<td class=\"trow1\"><span class=\"smalltext\">
$lastpostdate $lastposttime<br />by $lastposter</span></td>
</tr>"
;

}
if(!
$last_thread){ $last_thread = "<tr><td class=\"trow1\" colspan=\"5\">{$lang->no_thread}</td></tr>"; }
echo
"<table border=\"0\" cellspacing=\"".$theme['borderwidth']."\" cellpadding=\"".$theme['tablespace']."\" class=\"tborder\">
<tr>
<td class=\"thead\" colspan=\"6\"><div class=\"expcolimage\"><img src=\"
{$theme['imgdir']}/{$expcolimage}\" id=\"block_{$result_blocks['id']}_img\" class=\"expander\" alt=\"{$expaltext}\" title=\"{$expaltext}\" /></div><strong>{$lang->latest_threads}</strong></td>
</tr>
<tr>
<td class=\"tcat\" width=\"5%\" height=\"24\">&nbsp;</td>
<td class=\"tcat\" width=\"50%\"><span class=\"smalltext\"><strong>
{$lang->latest_threads_thread}</strong></span></td>
<td class=\"tcat\" width=\"10%\" align=\"center\"><span class=\"smalltext\"><strong>
{$lang->latest_threads_replies}</strong></span></td>
<td class=\"tcat\" width=\"10%\" align=\"center\"><span class=\"smalltext\"><strong>
{$lang->latest_threads_views}</strong></span></td>
<td class=\"tcat\" width=\"25%\" align=\"center\"><span class=\"smalltext\"><strong>
{$lang->latest_threads_lastpost}</strong></span></td>
</tr>
<tbody style=\"
{$expdisplay}\" id=\"block_{$result_blocks['id']}_e\">
{$last_thread}
</tbody>
</table>"
;
?>

Gracias de antemano!
Omar G.   24 Sep, 2012, 12:41 pm
#2
Cambia:
Código PHP:
<?php 
WHERE t
.visible = '1'

Por:
Código PHP:
<?php 
WHERE t
.visible = '1' AND t.fid NOT IN ('1', '2', '3', 'etc')

Quizas igual deberias mostrar temas que no fueron movidos:
Código PHP:
<?php 
WHERE t
.visible = '1' AND t.closed NOT LIKE 'moved|%' AND t.fid NOT IN ('1', '2', '3', 'etc')
HSSWebs   24 Sep, 2012, 12:43 pm
#3
(24 Sep, 2012, 12:41 pm)Omar G. escribió: Cambia:
Código PHP:
<?php 
WHERE t
.visible = '1'

Por:
Código PHP:
<?php 
WHERE t
.visible = '1' AND t.fid NOT IN ('1', '2', '3', 'etc')

Quizas igual deberias mostrar temas que no fueron movidos:
Código PHP:
<?php 
WHERE t
.visible = '1' AND t.closed NOT LIKE 'moved|%' AND t.fid NOT IN ('1', '2', '3', 'etc')

Solo como duda ya que no lo sé.. los ID de los foros no deberían pasarse por un explode?
Es que estaba viendo los anuncios en el portal que trae MyBB & lo hace así.
Leandro M.   24 Sep, 2012, 4:30 pm
#4
(24 Sep, 2012, 12:41 pm)Omar G. escribió: Cambia:
Código PHP:
<?php 
WHERE t
.visible = '1'

Por:
Código PHP:
<?php 
WHERE t
.visible = '1' AND t.fid NOT IN ('1', '2', '3', 'etc')

Donde dice "('1', '2', '3', 'etc')" son los ID de los foros que quiero que muestre?
HSSWebs   24 Sep, 2012, 4:33 pm
#5
(24 Sep, 2012, 4:30 pm)Leandro M. escribió:
(24 Sep, 2012, 12:41 pm)Omar G. escribió: Cambia:
Código PHP:
<?php 
WHERE t
.visible = '1'
Por:
Código PHP:
<?php 
WHERE t
.visible = '1' AND t.fid NOT IN ('1', '2', '3', 'etc')

Donde dice "('1', '2', '3', 'etc')" son los ID de los foros que quiero que muestre?
Si esos son..
Leandro M.   24 Sep, 2012, 4:43 pm
#6
Lo modifique y me quedo asi
Código PHP:
<?php
/***************************************************************
* ProPortal
* Copyright © 2010 ProMyBB, All Rights Reserved
*
* Website: http://www.promybb.com/
* License: http://creativecommons.org/licenses/by-nc-sa/3.0/
***************************************************************/

if (!defined("IN_PORTAL")) {
die(
"<div style=\"border:1px solid #CC0000; padding:3px; margin:0; font-family:Tahoma; width:250px; font-size:12px;\"><strong>Error:</strong> This file cannot be viewed directly!</div>");
}

// Get forums user cannot view
$unviewable = get_unviewable_forums();
if(
$unviewable)
{
$unviewwhere = " AND fid NOT IN ($unviewable)";
}

$threadlimit = 10;
$query = $db->query("
SELECT t.*, t.subject AS threadsubject, u.username, u.usergroup, u.displaygroup, i.*, i.name AS iconname,
t.dateline AS threaddate, t.lastpost AS threadlastpost
FROM "
.TABLE_PREFIX."threads t
LEFT JOIN "
.TABLE_PREFIX."icons i ON (i.iid=t.icon)
LEFT JOIN "
.TABLE_PREFIX."users u ON (t.lastposter=u.username)
WHERE t.visible = '1' AND t.fid NOT IN ('9')
$unviewwhere
GROUP BY t.tid
ORDER BY threaddate DESC
LIMIT 0,
$threadlimit
"
);

while(
$threads = $db->fetch_array($query))
{

if(
$threads['icon'] > 0)
{
$icon = "<img src=\"{$threads['path']}\" alt=\"{$threads['iconname']}\" title=\"{$threads['iconname']}\" />";
}
else
{
$icon = "&nbsp;";
}

if(
strlen($threads['threadsubject']) > "40")
{
$threadsthreadsubject = my_substr($threads['threadsubject'],0,40)."...";
}
else
{
$threadsthreadsubject = $threads['threadsubject'];
}

if(
strlen($threads['forumname']) > "20")
{
$threadsforumname = my_substr($threads['forumname'],0,20)."...";
}
else
{
$threadsforumname = $threads['forumname'];
}

$threadlink = get_thread_link($threads['tid']);
$forumlink = get_forum_link($threads['fid']);
$replies = my_number_format($threads['replies']);
$views = my_number_format($threads['views']);
$lastpostdate = my_date($mybb->settings['dateformat'], $threads['threadlastpost']);
$lastposttime = my_date($mybb->settings['timeformat'], $threads['threadlastpost']);
$lastposter = format_name($threads['username'], $threads['usergroup'], $threads['displaygroup']);
$lastposter = build_profile_link($lastposter, $threads['lastposteruid']);

$last_thread .= "<tr>
<td class=\"trow1\" align=\"center\" height=\"24\">
$icon</td>
<td class=\"trow2\"><a href=\"
$threadlink\" title=\"$threads[threadsubject]\">$threadsthreadsubject</a></td>
<td class=\"trow1\" align=\"center\">
$replies</td>
<td class=\"trow2\" align=\"center\">
$views</td>
<td class=\"trow1\"><span class=\"smalltext\">
$lastpostdate $lastposttime<br />by $lastposter</span></td>
</tr>"
;

}
if(!
$last_thread){ $last_thread = "<tr><td class=\"trow1\" colspan=\"5\">{$lang->no_thread}</td></tr>"; }
echo
"<table border=\"0\" cellspacing=\"".$theme['borderwidth']."\" cellpadding=\"".$theme['tablespace']."\" class=\"tborder\">
<tr>
<td class=\"thead\" colspan=\"6\"><div class=\"expcolimage\"><img src=\"
{$theme['imgdir']}/{$expcolimage}\" id=\"block_{$result_blocks['id']}_img\" class=\"expander\" alt=\"{$expaltext}\" title=\"{$expaltext}\" /></div><strong>{$lang->latest_threads}</strong></td>
</tr>
<tr>
<td class=\"tcat\" width=\"5%\" height=\"24\">&nbsp;</td>
<td class=\"tcat\" width=\"50%\"><span class=\"smalltext\"><strong>
{$lang->latest_threads_thread}</strong></span></td>
<td class=\"tcat\" width=\"10%\" align=\"center\"><span class=\"smalltext\"><strong>
{$lang->latest_threads_replies}</strong></span></td>
<td class=\"tcat\" width=\"10%\" align=\"center\"><span class=\"smalltext\"><strong>
{$lang->latest_threads_views}</strong></span></td>
<td class=\"tcat\" width=\"25%\" align=\"center\"><span class=\"smalltext\"><strong>
{$lang->latest_threads_lastpost}</strong></span></td>
</tr>
<tbody style=\"
{$expdisplay}\" id=\"block_{$result_blocks['id']}_e\">
{$last_thread}
</tbody>
</table>"
;
?>
pero me sigue mostrando los ultimos temas de todos los foros.
Omar G.   24 Sep, 2012, 5:44 pm
#7
Y foro del tema no es 9.
Código PHP:
<?php 
t
.fid NOT IN ('9')

Y foro del tema es 9.
Código PHP:
<?php 
t
.fid IN ('9')

Me confundi.
Leandro M.   24 Sep, 2012, 6:05 pm
#8
Gracias Omar, me funciono! pueden cerrar
Omar G.   24 Sep, 2012, 7:33 pm
#9
Reabierto a petición.
Leandro M.   25 Sep, 2012, 9:50 am
#10
Gracias Omar, me estaba olvidando de preguntar como hacer que muestre los prefijos de tema?
Páginas (2): 1 2   
  
Powered By MyBB, © 2002-2024 MyBB Group.
Made with by Curves UI.