Вход Регистрация
Файл: modules/mod_bestcontent/module.php
Строк: 56
<?php
/******************************************************************************/
//                                                                            //
//                             InstantCMS v1.10                               //
//                        http://www.instantcms.ru/                           //
//                                                                            //
//                   written by InstantCMS Team, 2007-2012                    //
//                produced by InstantSoft, (www.instantsoft.ru)               //
//                                                                            //
//                        LICENSED BY GNU/GPL v2                              //
//                                                                            //
/******************************************************************************/

function mod_bestcontent($module_id){

    
$inCore cmsCore::getInstance();
    
$inDB   cmsDatabase::getInstance();

    
$inCore->loadModel('content');
    
$model = new cms_model_content();

    
$cfg $inCore->loadModuleConfig($module_id);

    if (!isset(
$cfg['shownum'])){ $cfg['shownum'] = 5; }
    if (!isset(
$cfg['subs'])) { $cfg['subs'] = 1; }
    if (!isset(
$cfg['cat_id'])) { $cfg['cat_id'] = 1; }

    
$inDB->where("con.canrate = 1");

    if(
$cfg['cat_id']){

        if (!
$cfg['subs']){
    
            
//выбираем из категории
            
$model->whereCatIs($cfg['cat_id']);
    
        } else {
    
            
//выбираем из категории и подкатегорий
            
$rootcat $inDB->getNsCategory('cms_category'$cfg['cat_id']);
            if(!
$rootcat) { return false; }
            
$model->whereThisAndNestedCats($rootcat['NSLeft'], $rootcat['NSRight']);
    
        }

    }

    
$inDB->orderBy('con.rating''DESC');
    
$inDB->limitPage(1$cfg['shownum']);

    
$content_list $model->getArticlesList();

    
$smarty $inCore->initSmarty('modules''mod_bestcontent.tpl');            
    
$smarty->assign('articles'$content_list);
    
$smarty->assign('cfg'$cfg);            
    
$smarty->display('mod_bestcontent.tpl');

    return 
true;

}
?>
Онлайн: 1
Реклама