Guest User

Untitled

a guest
Nov 10th, 2012
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.38 KB | None | 0 0
  1. <?php
  2.  
  3. /**
  4.  * Article presenter
  5.  */
  6.  
  7. class ArticlePresenter extends Nette\Application\UI\Presenter
  8. {
  9.  
  10.     private $articleRepository;
  11.  
  12.  
  13.  
  14.     public function inject(Todo\ArticleRepository $articleRepository)
  15.     {
  16.         $this->articleRepository = $articleRepository;
  17.     }
  18.  
  19.         public function renderDefault()
  20.     {
  21.         $this->template->article = $this->articleRepository->ff();
  22.     }
  23. }
Advertisement
Add Comment
Please, Sign In to add comment