コード例 #1
0
 /**
  * Render control
  *
  * @return string
  * @author Jiří Knesl
  **/
 public function render()
 {
     $template = $this->createTemplate();
     $template->setFile(__DIR__ . '/BestControl.phtml');
     $template->bestArticles = $this->template->bestArticles = Article::findBests();
     return $template->render();
 }
コード例 #2
0
 function renderBests()
 {
     $this->template->bestArticles = Article::findBests();
 }
コード例 #3
0
 function getPartBestArticles()
 {
     // kromě toho načteme i výběr článků pro postranní menu
     return Article::findBests();
 }
コード例 #4
0
 function getData()
 {
     $this->template->bestArticles = Article::findBests();
 }