tpl_mainpage = BLOC_PATH . 'best5.tpl'; // メイン } } $objSubPage = new LC_Best5Page(); $objSubView = new SC_SiteView(); $objSiteInfo = $objView->objSiteInfo; // 基本情報を渡す $objSiteInfo = new SC_SiteInfo(); $objSubPage->arrInfo = $objSiteInfo->data; //おすすめ商品表示 $objSubPage->arrBestProducts = lfGetRanking(); $objSubView->assignobj($objSubPage); $objSubView->display($objSubPage->tpl_mainpage); //----------------------------------------------------------------------------------------------------------------------------------- //おすすめ商品検索 function lfGetRanking(){ $objQuery = new SC_Query(); $col = "A.*, name, price02_min, price01_min, main_list_image "; $from = "dtb_best_products AS A INNER JOIN vw_products_allclass AS allcls using(product_id)"; $where = "status = 1"; $order = "rank"; $objQuery->setorder($order); $arrBestProducts = $objQuery->select($col, $from, $where); return $arrBestProducts; } ?>