<?php
/*
=====================================================
DataLife Engine - by SoftNews Media Group
-----------------------------------------------------
https://dle-news.ru/
-----------------------------------------------------
Copyright (c) 2004-2025 SoftNews Media Group
=====================================================
This code is protected by copyright
=====================================================
File: show.custom.php
=====================================================
*/
if( !defined('DATALIFEENGINE') ) {
header( "HTTP/1.1 403 Forbidden" );
header ( 'Location: ../../' );
die( "Hacking attempt!" );
}
$global_custom_news_count = 0;
$i = 0;
if( isset( $cstart ) ) $i = $cstart;
$news_found = false;
if( $use_banners AND $config['allow_banner'] AND is_array( $banners ) AND count( $banners ) AND isset( $ban_short ) ) {
$news_c = 1;
$banners_topz = $banners_cenz = $banners_downz = '';
if ( isset($ban_short['top']) AND is_array($ban_short['top']) AND count($ban_short['top']) ) {
for($indx = 0, $max = sizeof( $ban_short['top'] ), $banners_topz = ''; $indx < $max; $indx ++) {
if( isset($ban_short['top'][$indx]['zakr']) AND $ban_short['top'][$indx]['zakr'] ) {
$banners_topz .= $ban_short['top'][$indx]['text'];
unset( $ban_short['top'][$indx] );
}
}
}
if ( isset($ban_short['cen']) AND is_array($ban_short['cen']) AND count($ban_short['cen']) ) {
for($indx = 0, $max = sizeof( $ban_short['cen'] ), $banners_cenz = ''; $indx < $max; $indx ++) {
if( isset($ban_short['cen'][$indx]['zakr']) AND $ban_short['cen'][$indx]['zakr'] ) {
$banners_cenz .= $ban_short['cen'][$indx]['text'];
unset( $ban_short['cen'][$indx] );
}
}
}
if ( isset($ban_short['down']) AND is_array($ban_short['down']) AND count($ban_short['down']) ) {
for($indx = 0, $max = sizeof( $ban_short['down'] ), $banners_downz = ''; $indx < $max; $indx ++) {
if( isset($ban_short['down'][$indx]['zakr']) AND $ban_short['down'][$indx]['zakr'] ) {
$banners_downz .= $ban_short['down'][$indx]['text'];
unset( $ban_short['down'][$indx] );
}
}
}
$middle = floor( $custom_limit / 2 ) + 1;
if($middle < 2 ) $middle = 2;
$middle_s = round( $middle / 2 );
if($middle_s < 2 ) $middle_s = 2;
if($middle_s == $middle ) {
if( (is_array($ban_short['cen']) AND count($ban_short['cen'])) OR $banners_cenz ) $middle_s = 0;
}
$middle_e = floor( $middle + (($custom_limit - $middle) / 2) + 1 );
if($middle AND $middle_e == $middle ) {
if( (is_array($ban_short['cen']) AND count($ban_short['cen'])) OR $banners_cenz ) $middle_e = 0;
}
if($middle_s AND $middle_e == $middle_s ) {
if( (is_array($ban_short['top']) AND count($ban_short['top'])) OR $banners_topz ) $middle_e = 0;
}
}
while ( $row = $db->get_row( $sql_result ) ) {
$news_found = true;
$custom_news = true;
$attachments[] = $row['id'];
$row['date'] = strtotime( $row['date'] );
if( isset($showed_news_ids) AND is_array($showed_news_ids)) {
$showed_news_ids[] = $row['id'];
}
if( $row['editdate'] AND $row['editdate'] > $_DOCUMENT_DATE ) $_DOCUMENT_DATE = $row['editdate'];
elseif( $row['date'] > $_DOCUMENT_DATE ) $_DOCUMENT_DATE = $row['date'];
if( $config['allow_banner'] AND isset($banners) AND is_array($banners) AND count( $banners ) ) {
foreach ( $banners as $name => $value ) {
$tpl->copy_template = str_replace( "{banner_" . $name . "}", $value, $tpl->copy_template );
if ( $value ) {
$tpl->copy_template = str_replace ( "[banner_" . $name . "]", "", $tpl->copy_template );
$tpl->copy_template = str_replace ( "[/banner_" . $name . "]", "", $tpl->copy_template );
}
}
}
$tpl->set_block( "'{banner_(.*?)}'si", "" );
$tpl->set_block ( "'\\[banner_(.*?)\\](.*?)\\[/banner_(.*?)\\]'si", "" );
if( isset( $middle ) ) {
if( $news_c == $middle_s ) {
$tpl->copy_template = bannermass( $banners_topz, $ban_short['top'] ).$tpl->copy_template;
} else if( $news_c == $middle ) {
$tpl->copy_template = bannermass( $banners_cenz, $ban_short['cen'] ).$tpl->copy_template;
} else if( $news_c == $middle_e ) {
$tpl->copy_template = bannermass( $banners_downz, $ban_short['down'] ).$tpl->copy_template;
}
$news_c ++;
}
$i ++;
$allow_comments_in_cat = true;
if( !$row['category'] ) {
$my_cat = "---";
$my_cat_link = "---";
$tpl->set( '[not-has-category]', "" );
$tpl->set( '[/not-has-category]', "" );
$tpl->set_block( "'\\[has-category\\](.*?)\\[/has-category\\]'si", "" );
} else {
$my_cat = array ();
$my_cat_link = array ();
$cat_list = $row['cats'] = explode( ',', $row['category'] );
$tpl->set( '[has-category]', "" );
$tpl->set( '[/has-category]', "" );
$tpl->set_block( "'\\[not-has-category\\](.*?)\\[/not-has-category\\]'si", "" );
if( count( $cat_list ) == 1 ) {
if( $cat_info[$cat_list[0]]['id'] ) {
$my_cat[] = $cat_info[$cat_list[0]]['name'];
$my_cat_link = get_categories( $cat_list[0], $config['category_separator']);
if ( $cat_info[$cat_list[0]]['disable_comments'] ) $allow_comments_in_cat = false;
} else $my_cat_link = "---";
} else {
foreach ( $cat_list as $element ) {
if( $element AND $cat_info[$element]['id']) {
$my_cat[] = $cat_info[$element]['name'];
$my_cat_link[] = "<a href=\"" . DLEUrl::BuildUrl('category', ['category' => get_url($element)]) . "\">{$cat_info[$element]['name']}</a>";
if ($cat_info[$element]['disable_comments']) $allow_comments_in_cat = false;
}
}
if( count( $my_cat_link ) ) {
$my_cat_link = implode( $config['category_separator'], $my_cat_link );
} else $my_cat_link = "---";
}
if( count( $my_cat ) ) {
$my_cat = implode( $config['category_separator'], $my_cat );
} else $my_cat = "---";
}
$url_cat = $category_id;
if (stripos ( $tpl->copy_template, "[category=" ) !== false) {
$tpl->copy_template = preg_replace_callback ( "#\\[(category)=(.+?)\\](.*?)\\[/category\\]#is", "check_category", $tpl->copy_template );
}
if (stripos ( $tpl->copy_template, "[not-category=" ) !== false) {
$tpl->copy_template = preg_replace_callback ( "#\\[(not-category)=(.+?)\\](.*?)\\[/not-category\\]#is", "check_category", $tpl->copy_template );
}
$category_id = $row['category'];
if( strpos( $tpl->copy_template, "[catlist=" ) !== false ) {
$tpl->copy_template = preg_replace_callback ( "#\\[(catlist)=(.+?)\\](.*?)\\[/catlist\\]#is", "check_category", $tpl->copy_template );
}
if( strpos( $tpl->copy_template, "[not-catlist=" ) !== false ) {
$tpl->copy_template = preg_replace_callback ( "#\\[(not-catlist)=(.+?)\\](.*?)\\[/not-catlist\\]#is", "check_category", $tpl->copy_template );
}
$temp_rating = $config['rating_type'];
$config['rating_type'] = if_category_rating( $row['category'] );
if ( $config['rating_type'] === false ) {
$config['rating_type'] = $temp_rating;
}
$category_id = $url_cat;
$full_link = DLEUrl::BuildUrl('showfull', ['category' => get_url($row['category']), 'year' => date('Y', $row['date']), 'month' => date('m', $row['date']), 'day' => date('d', $row['date']), 'news_name' => $row['alt_name'], 'newsid' => $row['id']]);
if ( $row['category'] ) {
$tpl->set('{category-url}', DLEUrl::BuildUrl('category', ['category' => get_url($row['category'])]));
} else $tpl->set( '{category-url}', "#" );
$row['category'] = intval( $row['category'] );
if( !$allow_comments_in_cat ) $row['comm_num'] = 0;
$news_find = array ('{comments-num}' => number_format($row['comm_num'], 0, ',', ' '), '{views}' => number_format($row['news_read'], 0, ',', ' '), '{category}' => $my_cat, '{link-category}' => $my_cat_link, '{news-id}' => $row['id'], '{rssdate}' => date( "r", $row['date'] ), '{rssauthor}' => $row['autor'], '{approve}' => '' );
$tpl->set( '', $news_find );
$compare_date = compare_days_date($row['date'], $short_news_cache);
if( !$compare_date ) {
$tpl->set( '{date}', $lang['time_heute'] . langdate( ", H:i", $row['date'], $short_news_cache ) );
} elseif( $compare_date == 1 ) {
$tpl->set( '{date}', $lang['time_gestern'] . langdate( ", H:i", $row['date'], $short_news_cache ) );
} else {
$tpl->set( '{date}', langdate( $config['timestamp_active'], $row['date'], $short_news_cache ) );
}
$news_date = $row['date'];
$tpl->copy_template = preg_replace_callback ( "#\{date=(.+?)\}#i", "formdate", $tpl->copy_template );
if (strpos($tpl->copy_template, "[new]") !== false OR strpos($tpl->copy_template, "[not-new]") !== false ) {
if( $config['post_new'] AND compare_days_date($row['date'], $short_news_cache, true) < $config['post_new'] ) {
$tpl->set('[new]', "");
$tpl->set('[/new]', "");
$tpl->set_block("'\\[not-new\\](.*?)\\[/not-new\\]'si", "");
} else {
$tpl->set('[not-new]', "");
$tpl->set('[/not-new]', "");
$tpl->set_block("'\\[new\\](.*?)\\[/new\\]'si", "");
}
}
if (strpos($tpl->copy_template, "[updated]") !== false or strpos($tpl->copy_template, "[not-updated]") !== false) {
if ($config['post_updated'] AND $row['editdate'] AND $row['view_edit'] AND compare_days_date($row['date'], $short_news_cache, true) > $config['post_new'] AND compare_days_date($row['editdate'], $short_news_cache, true) < $config['post_updated'] ) {
$tpl->set('[updated]', "");
$tpl->set('[/updated]', "");
$tpl->set_block("'\\[not-updated\\](.*?)\\[/not-updated\\]'si", "");
} else {
$tpl->set('[not-updated]', "");
$tpl->set('[/not-updated]', "");
$tpl->set_block("'\\[updated\\](.*?)\\[/updated\\]'si", "");
}
}
$global_custom_news_count ++;
if (strpos ( $tpl->copy_template, "[newscount=" ) !== false) {
$tpl->copy_template = preg_replace_callback ( "#\\[newscount=(.+?)\\](.*?)\\[/newscount\\]#is",
function ($matches) use ($global_custom_news_count) {
$block = $matches[2];
$counts = explode( ',', trim($matches[1]) );
if( !in_array($global_custom_news_count, $counts) ) return "";
return $block;
}, $tpl->copy_template );
}
if (strpos ( $tpl->copy_template, "[not-newscount=" ) !== false) {
$tpl->copy_template = preg_replace_callback ( "#\\[not-newscount=(.+?)\\](.*?)\\[/not-newscount\\]#is",
function ($matches) use ($global_custom_news_count) {
$block = $matches[2];
$counts = explode( ',', trim($matches[1]) );
if( in_array($global_custom_news_count, $counts) ) return "";
return $block;
}, $tpl->copy_template );
}
$tpl->set_block( "'\\[not-news\\](.*?)\\[/not-news\\]'si", "" );
if ( $row['fixed'] ) {
$tpl->set( '[fixed]', "" );
$tpl->set( '[/fixed]', "" );
$tpl->set_block( "'\\[not-fixed\\](.*?)\\[/not-fixed\\]'si", "" );
} else {
$tpl->set( '[not-fixed]', "" );
$tpl->set( '[/not-fixed]', "" );
$tpl->set_block( "'\\[fixed\\](.*?)\\[/fixed\\]'si", "" );
}
if ( $row['comm_num'] ) {
$tpl->set( '[comments]', "" );
$tpl->set( '[/comments]', "" );
$tpl->set_block( "'\\[not-comments\\](.*?)\\[/not-comments\\]'si", "" );
} else {
$tpl->set( '[not-comments]', "" );
$tpl->set( '[/not-comments]', "" );
$tpl->set_block( "'\\[comments\\](.*?)\\[/comments\\]'si", "" );
}
if ( $row['votes'] ) {
$tpl->set( '[poll]', "" );
$tpl->set( '[/poll]', "" );
$tpl->set_block( "'\\[not-poll\\](.*?)\\[/not-poll\\]'si", "" );
} else {
$tpl->set( '[not-poll]', "" );
$tpl->set( '[/not-poll]', "" );
$tpl->set_block( "'\\[poll\\](.*?)\\[/poll\\]'si", "" );
}
if( strpos( $tpl->copy_template, "{poll}" ) !== false) {
if( $row['votes'] ) {
include (DLEPlugins::Check(ENGINE_DIR . '/modules/poll.php'));
$tpl->set( '{poll}', $tpl->result['poll'] );
} else {
$tpl->set( '{poll}', '' );
}
}
if( $row['view_edit'] and $row['editdate'] ) {
$compare_date = compare_days_date($row['editdate'], $short_news_cache);
if( !$compare_date ) {
$tpl->set( '{edit-date}', $lang['time_heute'] . langdate( ", H:i", $row['editdate'], $short_news_cache ) );
} elseif( $compare_date == 1 ) {
$tpl->set( '{edit-date}', $lang['time_gestern'] . langdate( ", H:i", $row['editdate'], $short_news_cache ) );
} else {
$tpl->set( '{edit-date}', langdate( $config['timestamp_active'], $row['editdate'], $short_news_cache ) );
}
$news_date = $row['editdate'];
$tpl->copy_template = preg_replace_callback("#\{edit-date=(.+?)\}#i", "formdate", $tpl->copy_template);
$tpl->set( '{editor}', $row['editor'] );
$tpl->set( '{edit-reason}', $row['reason'] );
if( $row['reason'] ) {
$tpl->set( '[edit-reason]', "" );
$tpl->set( '[/edit-reason]', "" );
} else
$tpl->set_block( "'\\[edit-reason\\](.*?)\\[/edit-reason\\]'si", "" );
$tpl->set( '[edit-date]', "" );
$tpl->set( '[/edit-date]', "" );
} else {
$tpl->set( '{edit-date}', "" );
$tpl->set( '{editor}', "" );
$tpl->set( '{edit-reason}', "" );
$tpl->set_block( "'\\[edit-date\\](.*?)\\[/edit-date\\]'si", "" );
$tpl->set_block( "'\\[edit-reason\\](.*?)\\[/edit-reason\\]'si", "" );
}
if( $config['allow_tags'] and $row['tags'] ) {
$tpl->set( '[tags]', "" );
$tpl->set( '[/tags]', "" );
$tags = array ();
$row['tags'] = explode( ",", $row['tags'] );
foreach ( $row['tags'] as $value ) {
$value = trim( $value );
$url_tag = str_replace(array("'", """, "&", "/"), array("'", '"', "&", "⁄"), $value);
$tags[] = "<a href=\"" . DLEUrl::BuildUrl('tags', ['tag' => rawurlencode(dle_strtolower($url_tag))]) . "\">" . $value . "</a>";
}
$tpl->set( '{tags}', implode( $config['tags_separator'], $tags ) );
} else {
$tpl->set_block( "'\\[tags\\](.*?)\\[/tags\\]'si", "" );
$tpl->set( '{tags}', "" );
}
if( isset($cat_info[$row['category']]['icon']) AND $cat_info[$row['category']]['icon'] ) {
$tpl->set( '{category-icon}', $cat_info[$row['category']]['icon'] );
$tpl->set( '[category-icon]', "" );
$tpl->set( '[/category-icon]', "" );
$tpl->set_block( "'\\[not-category-icon\\](.*?)\\[/not-category-icon\\]'si", "" );
} else {
$tpl->set( '{category-icon}', "{THEME}/dleimages/no_icon.gif" );
$tpl->set( '[not-category-icon]', "" );
$tpl->set( '[/not-category-icon]', "" );
$tpl->set_block( "'\\[category-icon\\](.*?)\\[/category-icon\\]'si", "" );
}
if ( $config['rating_type'] == "1" ) {
$tpl->set( '[rating-type-2]', "" );
$tpl->set( '[/rating-type-2]', "" );
$tpl->set_block( "'\\[rating-type-1\\](.*?)\\[/rating-type-1\\]'si", "" );
$tpl->set_block( "'\\[rating-type-3\\](.*?)\\[/rating-type-3\\]'si", "" );
$tpl->set_block( "'\\[rating-type-4\\](.*?)\\[/rating-type-4\\]'si", "" );
} elseif ( $config['rating_type'] == "2" ) {
$tpl->set( '[rating-type-3]', "" );
$tpl->set( '[/rating-type-3]', "" );
$tpl->set_block( "'\\[rating-type-1\\](.*?)\\[/rating-type-1\\]'si", "" );
$tpl->set_block( "'\\[rating-type-2\\](.*?)\\[/rating-type-2\\]'si", "" );
$tpl->set_block( "'\\[rating-type-4\\](.*?)\\[/rating-type-4\\]'si", "" );
} elseif ( $config['rating_type'] == "3" ) {
$tpl->set( '[rating-type-4]', "" );
$tpl->set( '[/rating-type-4]', "" );
$tpl->set_block( "'\\[rating-type-1\\](.*?)\\[/rating-type-1\\]'si", "" );
$tpl->set_block( "'\\[rating-type-2\\](.*?)\\[/rating-type-2\\]'si", "" );
$tpl->set_block( "'\\[rating-type-3\\](.*?)\\[/rating-type-3\\]'si", "" );
} else {
$tpl->set( '[rating-type-1]', "" );
$tpl->set( '[/rating-type-1]', "" );
$tpl->set_block( "'\\[rating-type-4\\](.*?)\\[/rating-type-4\\]'si", "" );
$tpl->set_block( "'\\[rating-type-3\\](.*?)\\[/rating-type-3\\]'si", "" );
$tpl->set_block( "'\\[rating-type-2\\](.*?)\\[/rating-type-2\\]'si", "" );
}
if( $row['allow_rate'] ) {
if( $config['short_rating'] AND $user_group[$member_id['user_group']]['allow_rating'] ) {
$tpl->set( '{rating}', ShowRating( $row['id'], $row['rating'], $row['vote_num'], 1 ) );
if ( $config['rating_type'] ) {
$tpl->set( '[rating-plus]', "<a href=\"#\" onclick=\"doRate('plus', '{$row['id']}'); return false;\" >" );
$tpl->set( '[/rating-plus]', '</a>' );
if ( $config['rating_type'] == "2" OR $config['rating_type'] == "3") {
$tpl->set( '[rating-minus]', "<a href=\"#\" onclick=\"doRate('minus', '{$row['id']}'); return false;\" >" );
$tpl->set( '[/rating-minus]', '</a>' );
} else {
$tpl->set_block( "'\\[rating-minus\\](.*?)\\[/rating-minus\\]'si", "" );
}
} else {
$tpl->set_block( "'\\[rating-plus\\](.*?)\\[/rating-plus\\]'si", "" );
$tpl->set_block( "'\\[rating-minus\\](.*?)\\[/rating-minus\\]'si", "" );
}
} else {
$tpl->set( '{rating}', ShowRating( $row['id'], $row['rating'], $row['vote_num'], 0 ) );
$tpl->set_block( "'\\[rating-plus\\](.*?)\\[/rating-plus\\]'si", "" );
$tpl->set_block( "'\\[rating-minus\\](.*?)\\[/rating-minus\\]'si", "" );
}
if( $row['vote_num'] ) $ratingscore = str_replace( ',', '.', round( ($row['rating'] / $row['vote_num']), 1 ) );
else $ratingscore = 0;
$tpl->set( '{ratingscore}', $ratingscore );
$dislikes = ($row['vote_num'] - $row['rating'])/2;
$likes = $row['vote_num'] - $dislikes;
$tpl->set( '{likes}', "<span data-likes-id=\"" . $row['id'] . "\">".$likes."</span>" );
$tpl->set( '{dislikes}', "<span data-dislikes-id=\"" . $row['id'] . "\">".$dislikes."</span>" );
$tpl->set( '{vote-num}', "<span data-vote-num-id=\"" . $row['id'] . "\">".$row['vote_num']."</span>" );
$tpl->set( '[rating]', "" );
$tpl->set( '[/rating]', "" );
} else {
$tpl->set( '{rating}', "" );
$tpl->set( '{ratingscore}', "" );
$tpl->set( '{vote-num}', "" );
$tpl->set( '{likes}', "" );
$tpl->set( '{dislikes}', "" );
$tpl->set_block( "'\\[rating\\](.*?)\\[/rating\\]'si", "" );
$tpl->set_block( "'\\[rating-plus\\](.*?)\\[/rating-plus\\]'si", "" );
$tpl->set_block( "'\\[rating-minus\\](.*?)\\[/rating-minus\\]'si", "" );
}
$config['rating_type'] = $temp_rating;
$go_page = DLEUrl::BuildUrl('user', ['user' => rawurlencode($row['autor'])]);
$tpl->set('[day-news]', "<a href=\"" . DLEUrl::BuildUrl('date.day', ['year' => date('Y', $row['date']), 'month' => date('m', $row['date']), 'day' => date('d', $row['date'])]) . "\">");
$tpl->set( '[/day-news]', "</a>" );
$tpl->set( '[profile]', "<a href=\"" . $go_page . "\">" );
$tpl->set( '[/profile]', "</a>" );
$tpl->set_block( "'\\[not-news\\](.*?)\\[/not-news\\]'si", "" );
$tpl->set( '{login}', $row['autor'] );
$tpl->set( '{author}', "<a onclick=\"ShowProfile('" . urlencode( $row['autor'] ) . "', '" . $go_page . "', '" . $user_group[$member_id['user_group']]['admin_editusers'] . "'); return false;\" href=\"" . $go_page . "\">" . $row['autor'] . "</a>" );
$_SESSION['referrer'] = htmlspecialchars($_SERVER['REQUEST_URI'], ENT_QUOTES, 'UTF-8');
if( $is_logged AND (($member_id['name'] == $row['autor'] AND $user_group[$member_id['user_group']]['allow_edit']) OR $user_group[$member_id['user_group']]['allow_all_edit']) ) {
if( $member_id['name'] == $row['autor'] AND $user_group[$member_id['user_group']]['allow_edit'] AND $user_group[$member_id['user_group']]['moderation'] ) {
$allow_only_this_delete = true;
} else { $allow_only_this_delete = false; }
$tpl->set( '[edit]', "<a onclick=\"return dropdownmenu(this, event, MenuNewsBuild('" . $row['id'] . "', 'short', " . $allow_only_this_delete . "), '170px')\" href=\"#\">" );
$tpl->set( '[/edit]', "</a>" );
$allow_comments_ajax = true;
} else $tpl->set_block( "'\\[edit\\](.*?)\\[/edit\\]'si", "" );
if( $is_logged AND $user_group[$member_id['user_group']]['moderation'] AND (($member_id['name'] == $row['autor'] AND $user_group[$member_id['user_group']]['allow_edit']) OR $user_group[$member_id['user_group']]['allow_all_edit']) ) {
$tpl->set('[del]', "<a onclick=\"dle_news_delete ('" . $row['id'] . "'); return false;\" href=\"#\">");
$tpl->set('[/del]', "</a>");
} else {
$tpl->set_block("'\\[del\\](.*?)\\[/del\\]'si", "");
}
if( $row['full_story'] < 13 AND $config['hide_full_link'] ){
$tpl->set_block("'\\[full-link\\](.*?)\\[/full-link\\]'si", "");
} else {
$tpl->set( '[full-link]', "<a href=\"" . $full_link . "\">" );
$tpl->set( '[/full-link]', "</a>" );
}
$tpl->set( '{full-link}', $full_link );
if( $row['allow_comm'] OR (!$row['allow_comm'] AND $row['comm_num']) ) {
$tpl->set( '[com-link]', "<a href=\"" . $full_link . "#comment\">" );
$tpl->set( '[/com-link]', "</a>" );
} else $tpl->set_block( "'\\[com-link\\](.*?)\\[/com-link\\]'si", "" );
if( $is_logged ) {
$tpl->set( '{favorites}', "{-favorites-{$row['id']}}" );
$tpl->set( '[add-favorites]', "[add-favorites-{$row['id']}]" );
$tpl->set( '[/add-favorites]', "[/add-favorites-{$row['id']}]" );
$tpl->set( '[del-favorites]', "[del-favorites-{$row['id']}]" );
$tpl->set( '[/del-favorites]', "[/del-favorites-{$row['id']}]" );
} else {
$tpl->set( '{favorites}', "" );
$tpl->set_block( "'\\[add-favorites\\](.*?)\\[/add-favorites\\]'si", "" );
$tpl->set_block( "'\\[del-favorites\\](.*?)\\[/del-favorites\\]'si", "" );
}
if ($user_group[$member_id['user_group']]['allow_complaint_news']) {
$tpl->set('[complaint]', "<a href=\"javascript:AddComplaint('" . $row['id'] . "', 'news')\">");
$tpl->set('[/complaint]', "</a>");
} else {
$tpl->set_block("'\\[complaint\\](.*?)\\[/complaint\\]'si", "");
}
$row['xfields'] = stripslashes( $row['xfields'] );
$xfields_in_news = array();
DLEXFields::Compile($row, $tpl, $xfields_in_news);
$row['title'] = stripslashes( $row['title'] );
$tpl->set( '{title}', str_replace("&amp;", "&", htmlspecialchars( $row['title'], ENT_QUOTES, 'UTF-8' ) ) );
if ( preg_match( "#\\{title limit=['\"](.+?)['\"]\\}#i", $tpl->copy_template, $matches ) ) {
$tpl->set( $matches[0], clear_content($row['title'], $matches[1]) );
}
if ( isset($smartphone_detected) AND $smartphone_detected) {
if (!$config['allow_smart_format']) {
$row['short_story'] = strip_tags( $row['short_story'], '<p><div><br><a>' );
} else {
if ( !$config['allow_smart_images'] ) {
$row['short_story'] = preg_replace( "#<!--TBegin(.+?)<!--TEnd-->#is", "", $row['short_story'] );
$row['short_story'] = preg_replace( "#<!--MBegin(.+?)<!--MEnd-->#is", "", $row['short_story'] );
$row['short_story'] = preg_replace( "#<img(.+?)>#is", "", $row['short_story'] );
}
if ( !$config['allow_smart_video'] ) {
$row['short_story'] = preg_replace( "#<!--dle_video_begin(.+?)<!--dle_video_end-->#is", "", $row['short_story'] );
$row['short_story'] = preg_replace( "#<!--dle_audio_begin(.+?)<!--dle_audio_end-->#is", "", $row['short_story'] );
$row['short_story'] = preg_replace( "#<!--dle_media_begin(.+?)<!--dle_media_end-->#is", "", $row['short_story'] );
}
}
}
$row['short_story'] = stripslashes( $row['short_story'] );
if (stripos ( $tpl->copy_template, "image-" ) !== false) {
$images = array();
preg_match_all('/(img|src)=("|\')[^"\'>]+/i', $row['short_story'].$row['xfields'], $media);
$data=preg_replace('/(img|src)("|\'|="|=\')(.*)/i',"$3",$media[0]);
$img_arr = array('jpg', 'jpeg', 'gif', 'png', 'bmp', 'webp', 'avif', 'svg');
foreach($data as $url) {
$info = pathinfo($url);
if (isset($info['extension'])) {
if ($info['filename'] == "spoiler-plus" OR $info['filename'] == "spoiler-minus" OR strpos($info['dirname'], 'public/emoticons') !== false) continue;
$info['extension'] = strtolower($info['extension']);
if ( in_array($info['extension'], $img_arr) ) array_push($images, $url);
}
}
if ( count($images) ) {
$i_count=0;
foreach($images as $url) {
$i_count++;
$tpl->copy_template = str_replace( '{image-'.$i_count.'}', $url, $tpl->copy_template );
$tpl->copy_template = str_replace( '[image-'.$i_count.']', "", $tpl->copy_template );
$tpl->copy_template = str_replace( '[/image-'.$i_count.']', "", $tpl->copy_template );
$tpl->copy_template = preg_replace( "#\[not-image-{$i_count}\](.+?)\[/not-image-{$i_count}\]#is", "", $tpl->copy_template );
}
}
$tpl->copy_template = preg_replace( "#\[image-(.+?)\](.+?)\[/image-(.+?)\]#is", "", $tpl->copy_template );
$tpl->copy_template = preg_replace( "#\\{image-(.+?)\\}#i", "{THEME}/dleimages/no_image.jpg", $tpl->copy_template );
$tpl->copy_template = preg_replace( "#\[not-image-(.+?)\]#i", "", $tpl->copy_template );
$tpl->copy_template = preg_replace( "#\[/not-image-(.+?)\]#i", "", $tpl->copy_template );
}
if ($config['image_lazy']) $row['short_story'] = preg_replace_callback ( "#<(img|iframe)(.+?)>#i", "enable_lazyload", $row['short_story'] );
$tpl->set( '{short-story}', $row['short_story'] );
if ( preg_match( "#\\{short-story limit=['\"](.+?)['\"]\\}#i", $tpl->copy_template, $matches ) ) {
$tpl->set( $matches[0], clear_content($row['short_story'], $matches[1]) );
}
if( $config['user_in_news'] ) {
include (DLEPlugins::Check(ENGINE_DIR . '/modules/profile_innews.php'));
}
$tpl->compile( 'content', true, false );
if(count($xfields_in_news) ) {
if (stripos ( $tpl->result['content'], "[xf" ) !== false ) {
foreach ( $xfields_in_news as $key => $value) {
$tpl->result['content'] = str_replace ( $key, $value, $tpl->result['content'] );
}
}
}
}
if( !$news_found) {
if( preg_match( "'\\[not-news\\](.*?)\\[/not-news\\]'si", $tpl->copy_template, $match ) ) {
$tpl->result['content'] = $match[1];
}
}
if (stripos ( $tpl->result['content'], "[hide" ) !== false ) {
$tpl->result['content'] = preg_replace_callback ( "#\[hide(.*?)\](.+?)\[/hide\]#is",
function ($matches) use ($member_id, $user_group, $lang) {
$matches[1] = str_replace(array("=", " "), "", $matches[1]);
$matches[2] = $matches[2];
if( $matches[1] ) {
$groups = explode( ',', $matches[1] );
if( in_array( $member_id['user_group'], $groups ) OR $member_id['user_group'] == "1") {
return $matches[2];
} else return "<div class=\"quote dlehidden\">" . $lang['news_regus'] . "</div>";
} else {
if( $user_group[$member_id['user_group']]['allow_hide'] ) return $matches[2]; else return "<div class=\"quote dlehidden\">" . $lang['news_regus'] . "</div>";
}
}, $tpl->result['content'] );
}
$tpl->result['content'] = str_ireplace( "{PAGEBREAK}", '', $tpl->result['content'] );
if ($config['allow_links'] AND function_exists('replace_links') AND isset($replace_links['news'])){
$tpl->result['content'] = replace_links($tpl->result['content'], $replace_links['news']);
}
if ( $config['allow_banner'] AND isset($banner_in_news) AND is_array($banner_in_news) AND count($banner_in_news) ){
foreach ( $banner_in_news as $name) {
$tpl->result['content'] = str_replace( "{banner_" . $name . "}", $banners[$name], $tpl->result['content'] );
if( $banners[$name] ) {
$tpl->result['content'] = str_replace ( "[banner_" . $name . "]", "", $tpl->result['content'] );
$tpl->result['content'] = str_replace ( "[/banner_" . $name . "]", "", $tpl->result['content'] );
}
}
$tpl->result['content'] = preg_replace( "'\\[banner_(.*?)\\](.*?)\\[/banner_(.*?)\\]'si", '', $tpl->result['content'] );
}
$tpl->clear();
$db->free( $sql_result );
if ( $build_navigation AND $sql_count) {
$count_all = $db->super_query( $sql_count );
if($news_found AND !$count_all['count']) {
$db->query("ANALYZE TABLE `" . PREFIX . "_post`, `" . PREFIX . "_post_extras`");
$count_all = $db->super_query( $sql_count );
}
$count_all = $count_all['count'] - $custom_all;
}
if( $build_navigation AND $count_all AND $news_found) {
$tpl->load_template( 'navigation.tpl' );
//----------------------------------
// Previous link
//----------------------------------
$no_prev = false;
$no_next = false;
if (isset ( $_GET['cstart'] )) $cstart = intval ( $_GET['cstart'] ); else $cstart = 1;
if( isset( $cstart ) and $cstart != "" and $cstart > 1 ) {
$prev = $cstart - 1;
if ($prev == 1) $prev_page = $navigation_first_page;
else $prev_page = str_replace('{cstart}', $prev, $url_page);
$tpl->set_block("'\[prev-link\](.*?)\[/prev-link\]'si", "<a href=\"" . $prev_page . "\">\\1</a>");
} else {
$tpl->set_block( "'\[prev-link\](.*?)\[/prev-link\]'si", "<span>\\1</span>" );
$no_prev = TRUE;
}
//----------------------------------
// Pages
//----------------------------------
if( $custom_limit ) {
$pages = "";
if( $count_all > $custom_limit ) {
$enpages_count = @ceil( $count_all / $custom_limit );
if ($tpl->smartphone) {
$max_pages = 5;
} else {
$max_pages = 10;
}
if( $enpages_count <= $max_pages ) {
for($j = 1; $j <= $enpages_count; $j ++) {
if( $j != $cstart ) {
if ($j == 1) $pages .= "<a href=\"" . $navigation_first_page . "\">$j</a> ";
else $pages .= "<a href=\"" . str_replace('{cstart}', $j, $url_page) . "\">$j</a> ";
} else {
$pages .= "<span>$j</span> ";
}
}
} else {
$nav_prefix = "<span class=\"nav_ext\">{$lang['nav_trennen']}</span> ";
if ($tpl->smartphone) {
$start = 1;
$end = 3;
if ($cstart > 0) {
if ($cstart > 2) {
$start = $cstart - 1;
$end = $start + 2;
if ($end >= $enpages_count) {
$start = $enpages_count - 2;
$end = $enpages_count - 1;
}
}
}
} else {
$start = 1;
$end = 10;
if ($cstart > 0) {
if ($cstart > 6) {
$start = $cstart - 4;
$end = $start + 8;
if ($end >= $enpages_count - 1) {
$start = $enpages_count - 9;
$end = $enpages_count - 1;
}
}
}
}
if( $end >= $enpages_count-1 ) $nav_prefix = ""; else $nav_prefix = "<span class=\"nav_ext\">{$lang['nav_trennen']}</span> ";
if( $start >= 2 ) {
if( $start >= 3 ) $before_prefix = "<span class=\"nav_ext\">{$lang['nav_trennen']}</span> "; else $before_prefix = "";
$pages .= "<a href=\"" . $navigation_first_page . "\">1</a> " . $before_prefix;
}
for($j = $start; $j <= $end; $j ++) {
if( $j != $cstart ) {
if ($j == 1) $pages .= "<a href=\"" . $navigation_first_page . "\">$j</a> ";
else $pages .= "<a href=\"" . str_replace('{cstart}', $j, $url_page) . "\">$j</a> ";
} else {
$pages .= "<span>$j</span> ";
}
}
if( $cstart != $enpages_count ) {
$pages .= $nav_prefix . "<a href=\"" . str_replace('{cstart}', $enpages_count, $url_page) . "\">{$enpages_count}</a>";
} else $pages .= "<span>{$enpages_count}</span> ";
}
}
$tpl->set( '{pages}', $pages );
}
//----------------------------------
// Next link
//----------------------------------
if( $custom_limit AND $custom_limit < $count_all AND $cstart < $enpages_count ) {
$next_page = $cstart + 1;
$next = str_replace('{cstart}', $next_page, $url_page);
$tpl->set_block("'\[next-link\](.*?)\[/next-link\]'si", "<a href=\"" . $next . "\">\\1</a>");
} else {
$tpl->set_block( "'\[next-link\](.*?)\[/next-link\]'si", "<span>\\1</span>" );
$no_next = TRUE;
}
if( !$no_prev OR !$no_next ) {
$tpl->compile( 'navigation' );
switch ( $config['news_navigation'] ) {
case "2" :
$tpl->result['content'] = '{newsnavigation}'.$tpl->result['content'];
break;
case "3" :
$tpl->result['content'] = '{newsnavigation}'.$tpl->result['content'].'{newsnavigation}';
break;
default :
$tpl->result['content'] .= '{newsnavigation}';
break;
}
if ( !defined('CUSTOMNAVIGATION') ) {
define('CUSTOMNAVIGATION', true);
$custom_navigation = $tpl->result['navigation'];
}
} else $tpl->result['navigation'] = "";
$tpl->clear();
} else $tpl->result['navigation'] = "";