• DONATE to NULLED!
    Форуму и его команде можно помочь, мотивировать модераторов разделов.
    Помогите модератору этого раздела killoff лично.

Помощь Использование TopNews

Статус
В этой теме нельзя размещать новые ответы.

unixrx

Создатель
Регистрация
29 Сен 2007
Сообщения
27
Реакции
2
Разобрался как допилить topnews под свои нужды.
И понял, что было бы не плохо использовать разные выборки topnews для вывода в разных местах.
Поясню на простом примере что имею ввиду. К примеру, нужно 3 блока:
1) Популярное в категории 1
2) Популярное в категории 2
3) Популярное в категории 3

Как в строке $db->query сделать нужный запрос я знаю.
Но вот встал вопрос, как сделать не 1, а 3 независимых запроса и вывести в 3 блока.
Есть у кого идеи как допилить? Соответственно и тегов будет тогда несколько {topnews1} {topnews2} {topnews3}

DLE 9.5 Как в нем выгялдит topnews (правда уже с небольшой моей правкой $db->query) в спойлере.

Код:
if( ! defined( 'DATALIFEENGINE' ) ) {
    die( "Hacking attempt!" );
}
 
$tpl->result['topnews'] = dle_cache( "topnews", $config['skin'], true );
 
if( $tpl->result['topnews'] === false ) {
   
    $this_month = date( 'Y-m-d H:i:s', $_TIME );
 
    $tpl->load_template( 'topnews.tpl' );
 
    if( strpos( $tpl->copy_template, "[xfvalue_" ) !== false OR strpos( $tpl->copy_template, "[xfgiven_" ) !== false ) { $xfound = true; $xfields = xfieldsload();}
    else $xfound = false;
   
    $db->query( "SELECT id, date, short_story, xfields, title, category, alt_name, flag FROM " . PREFIX . "_post WHERE approve=1 AND category=28 ORDER BY news_read DESC, LIMIT 0,20" );
   
    while ( $row = $db->get_row() ) {
       
        $row['date'] = strtotime( $row['date'] );
 
        if( ! $row['category'] ) {
            $my_cat = "---";
            $my_cat_link = "---";
        } else {
           
            $my_cat = array ();
            $my_cat_link = array ();
            $cat_list = explode( ',', $row['category'] );
       
            if( count( $cat_list ) == 1 ) {
               
                $my_cat[] = $cat_info[$cat_list[0]]['name'];
               
                $my_cat_link = get_categories( $cat_list[0] );
           
            } else {
               
                foreach ( $cat_list as $element ) {
                    if( $element ) {
                        $my_cat[] = $cat_info[$element]['name'];
                        if( $config['allow_alt_url'] == "yes" ) $my_cat_link[] = "<a href=\"" . $config['http_home_url'] . get_url( $element ) . "/\">{$cat_info[$element]['name']}</a>";
                        else $my_cat_link[] = "<a href=\"$PHP_SELF?do=cat&category={$cat_info[$element]['alt_name']}\">{$cat_info[$element]['name']}</a>";
                    }
                }
               
                $my_cat_link = implode( ', ', $my_cat_link );
            }
           
            $my_cat = implode( ', ', $my_cat );
        }
 
        $row['category'] = intval( $row['category'] );
       
        if( $config['allow_alt_url'] == "yes" ) {
           
            if( $row['flag'] and $config['seo_type'] ) {
               
                if( $row['category'] and $config['seo_type'] == 2 ) {
                   
                    $full_link = $config['http_home_url'] . get_url( $row['category'] ) . "/" . $row['id'] . "-" . $row['alt_name'] . ".html";
               
                } else {
                   
                    $full_link = $config['http_home_url'] . $row['id'] . "-" . $row['alt_name'] . ".html";
               
                }
           
            } else {
               
                $full_link = $config['http_home_url'] . date( 'Y/m/d/', $row['date'] ) . $row['alt_name'] . ".html";
            }
       
        } else {
           
            $full_link = $config['http_home_url'] . "index.php?newsid=" . $row['id'];
       
        }
 
        $tpl->set( '{category}', $my_cat );
        $tpl->set( '{link-category}', $my_cat_link );
       
        if( dle_strlen( $row['title'], $config['charset'] ) > 55 ) $title = dle_substr( $row['title'], 0, 55, $config['charset'] ) . " ...";
        else $title = $row['title'];
 
        $tpl->set( '{title}', strip_tags( stripslashes( $title ) ) );
        $tpl->set( '{link}', $full_link );
 
        $row['short_story'] = stripslashes( $row['short_story'] );
 
        if( $user_group[$member_id['user_group']]['allow_hide'] ) $row['short_story'] = str_ireplace( "[hide]", "", str_ireplace( "[/hide]", "", $row['short_story']) );
        else $row['short_story'] = preg_replace ( "#\[hide\](.+?)\[/hide\]#ims", "<div class=\"quote\">" . $lang['news_regus'] . "</div>", $row['short_story'] );
 
        if (stripos ( $tpl->copy_template, "{image-" ) !== false) {
 
            $images = array();
            preg_match_all('/(img|src)=("|\')[^"\'>]+/i', $row['short_story'], $media);
            $data=preg_replace('/(img|src)("|\'|="|=\')(.*)/i',"$3",$media[0]);
 
            foreach($data as $url) {
                $info = pathinfo($url);
                if (isset($info['extension'])) {
                    $info['extension'] = strtolower($info['extension']);
                    if (($info['extension'] == 'jpg') || ($info['extension'] == 'jpeg') || ($info['extension'] == 'gif') || ($info['extension'] == 'png')) array_push($images, $url);
                }
            }
 
            if ( count($images) ) {
                $i=0;
                foreach($images as $url) {
                    $i++;
                    $tpl->copy_template = str_replace( '{image-'.$i.'}', $url, $tpl->copy_template );
                    $tpl->copy_template = str_replace( '[image-'.$i.']', "", $tpl->copy_template );
                    $tpl->copy_template = str_replace( '[/image-'.$i.']', "", $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 );
 
        }
 
        if ( preg_match( "#\\{text limit=['\"](.+?)['\"]\\}#i", $tpl->copy_template, $matches ) ) {
            $count= intval($matches[1]);
 
            $row['short_story'] = str_replace( "</p><p>", " ", $row['short_story'] );
            $row['short_story'] = strip_tags( $row['short_story'], "<br>" );
            $row['short_story'] = trim(str_replace( "<br>", " ", str_replace( "<br />", " ", str_replace( "\n", " ", str_replace( "\r", "", $row['short_story'] ) ) ) ));
 
            if( $count AND dle_strlen( $row['short_story'], $config['charset'] ) > $count ) {
                   
                $row['short_story'] = dle_substr( $row['short_story'], 0, $count, $config['charset'] );
                   
                if( ($temp_dmax = dle_strrpos( $row['short_story'], ' ', $config['charset'] )) ) $row['short_story'] = dle_substr( $row['short_story'], 0, $temp_dmax, $config['charset'] );
               
            }
 
            $tpl->set( $matches[0], $row['short_story'] );
 
        } else $tpl->set( '{text}', $row['short_story'] );
 
        // Обработка дополнительных полей
        if( $xfound ) {
            $xfieldsdata = xfieldsdataload( $row['xfields'] );
           
            foreach ( $xfields as $value ) {
                $preg_safe_name = preg_quote( $value[0], "'" );
 
                if ( $value[6] AND !empty( $xfieldsdata[$value[0]] ) ) {
                    $temp_array = explode( ",", $xfieldsdata[$value[0]] );
                    $value3 = array();
 
                    foreach ($temp_array as $value2) {
 
                        $value2 = trim($value2);
                        $value2 = str_replace("&#039;", "'", $value2);
 
                        if( $config['allow_alt_url'] == "yes" ) $value3[] = "<a href=\"" . $config['http_home_url'] . "xfsearch/" . urlencode( $value2 ) . "/\">" . $value2 . "</a>";
                        else $value3[] = "<a href=\"$PHP_SELF?do=xfsearch&amp;xf=" . urlencode( $value2 ) . "\">" . $value2 . "</a>";
                    }
 
                    $xfieldsdata[$value[0]] = implode(", ", $value3);
 
                    unset($temp_array);
                    unset($value2);
                    unset($value3);
 
                }
       
                if( empty( $xfieldsdata[$value[0]] ) ) {
                    $tpl->copy_template = preg_replace( "'\\[xfgiven_{$preg_safe_name}\\](.*?)\\[/xfgiven_{$preg_safe_name}\\]'is", "", $tpl->copy_template );
                    $tpl->copy_template = str_replace( "[xfnotgiven_{$preg_safe_name}]", "", $tpl->copy_template );
                    $tpl->copy_template = str_replace( "[/xfnotgiven_{$preg_safe_name}]", "", $tpl->copy_template );
                } else {
                    $tpl->copy_template = preg_replace( "'\\[xfnotgiven_{$preg_safe_name}\\](.*?)\\[/xfnotgiven_{$preg_safe_name}\\]'is", "", $tpl->copy_template );
                    $tpl->copy_template = str_replace( "[xfgiven_{$preg_safe_name}]", "", $tpl->copy_template );
                    $tpl->copy_template = str_replace( "[/xfgiven_{$preg_safe_name}]", "", $tpl->copy_template );
                }
               
                $tpl->copy_template = str_replace( "[xfvalue_{$preg_safe_name}]", stripslashes( $xfieldsdata[$value[0]] ), $tpl->copy_template );
            }
        }
        // Обработка дополнительных полей
 
 
        $tpl->compile( 'topnews' );
    }
 
    $tpl->clear();   
    $db->free();
 
    create_cache( "topnews", $tpl->result['topnews'], $config['skin'], true );
}
?>
 
Block.Pro от ПафНутиЙ тебе в помощь, и двиг править не надо, главное сделать в шаблоны правильные инклуды блоков.
 
Спасибо. Сейчас начал рыть дальше и действительно нашел пафнутия шикарный скрипт. Допилю уже сам.
 
Статус
В этой теме нельзя размещать новые ответы.
Назад
Сверху