Подскажите пожалуйста, что добавить в участке кода, чтобы выводились популярные статьи за неделю?
$inDB->where("con.showlatest = 1"); if ($cfg['is_pag']){ $total = $model->getArticlesCount(); } $inDB->orderBy('con.hits', 'DESC'); $inDB->limitPage(1, $cfg['newscount']); $content_list = $model->getArticlesList(); if(!$content_list) { return false; } $smarty = $inCore->initSmarty('modules', 'mod_lcslider.tpl'); $smarty->assign('articles', $content_list); if ($cfg['is_pag']) { $smarty->assign('pagebar_module', cmsPage::getPagebar($total, 1, $cfg['newscount'], 'javascript:conPage(%page%, '.$module_id.')')); } $smarty->assign('is_ajax', false); $smarty->assign('module_id', $module_id); $smarty->assign('cfg', $cfg); $smarty->display('mod_lcslider.tpl'); return true;