Хак позволяет выводить похожие новости на сайте в две колонки с картинкой (превью новости) и описанием.
Установка:
1. Открыть файл engine/modules/show.full.php и найти:
SELECT id, title, date, category, alt_name, flag FROM
Заменить на:
SELECT id, title, date, category, alt_name, short_story, flag FROM
2. Найти:
while ( $related = $db->get_row() ) {
Добавить выше:
$iz=1;
$buffer = "<table width="100%">";
3. Найти:
$buffer .= "<li>[url=">]</li>";
Заменить на:
preg_match('|]*>|is', $related['short_story'], $pts);
$thumba_parts = pathinfo($pts[2]);
if($pts[2]){
$pictitle = stripslashes( $related['title'] );
$pic = $thumba_parts['dirname'].'/'.$thumba_parts['basename'];
$wide = str_replace('thumbs/', "", $pic);
if(file_exists($wide)) $preview = "<a href="$wide">[img=|$pictitle]$pic[/img][/url]";
else $preview = "[img=|$pictitle]$pic[/img]";
}
else $preview = "<img style="border: medium none;" src="{THEME}/images/nothumb.gif" width="70px" height="70px" />";
$related['short_story'] = preg_replace("/[attachment=[[:digit:]]*]/si","",stripslashes($related['short_story']));
$related['short_story'] = preg_replace("/<!--*-->/si","",$related['short_story']);
$related['short_story'] = strip_tags($related['short_story']);
if( strlen( $related['short_story'] ) > 106 ) $related['short_story'] = substr( $related['short_story'], 0,260 ) . " ...";
$iz++;
if($iz%2==0) {
$z_s = "<tr>";
$z_e = "";
} else {
$z_s = "";
$z_e = "</tr>";
}
$buffer .= $z_s.'<td><table width="95%" border="0" cellpadding="5" cellspacing="2" style="border-bottom: 1px dotted #8D8D8D;">
<tr>
<td width="100" height="100" align="center" valign="middle">'.$preview.'</td>
<td width="91%" valign="top" style="padding-left: 7px; padding-bottom: 7px;">
<strong>[url=.$full_link.]'.stripslashes( $related['title']).'[/url]</strong>
'.stripslashes($related['short_story']).'</td>
</tr>
</table></td>'.$z_e;
4. Найти:
$tpl->set( '{related-news}', $buffer );
Добавить выше:
$buffer .="</table>";
P.S Изменения видны только после очистки кеша.
Настройка: 0,260 заменить на нужное количество символов в описании.
Автор: MSW (0-web.ru)
Версия DLE: 9.х