Example #1
0
File: rss.php Project: ygres/sblog
 function index()
 {
     $this->smarty->setCacheID("RSS|MAINPAGE");
     if (!$this->smarty->isCached(TPL_PATH . "/rss/rssMain.tpl", "RSS|MAINPAGE")) {
         $sqlData = rss::getLastPosts();
         $items = array_slice($sqlData->fetchAll(), 0, 10);
         $this->smarty->assign("items", $items);
     }
     echo $this->smarty->fetch(TPL_PATH . "/rss/rssMain.tpl", "RSS|MAINPAGE");
 }