예제 #1
0
파일: preferences.php 프로젝트: Hildy/cerb5
 function showRssAction()
 {
     $tpl = DevblocksPlatform::getTemplateService();
     $tpl_path = $this->_TPL_PATH;
     $tpl->assign('path', $tpl_path);
     $active_worker = CerberusApplication::getActiveWorker();
     $feeds = DAO_ViewRss::getByWorker($active_worker->id);
     $tpl->assign('feeds', $feeds);
     $tpl->display('file:' . $tpl_path . 'preferences/modules/rss.tpl');
 }