Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- /**
- * Article presenter
- */
- class ArticlePresenter extends Nette\Application\UI\Presenter
- {
- private $articleRepository;
- public function inject(Todo\ArticleRepository $articleRepository)
- {
- $this->articleRepository = $articleRepository;
- }
- public function renderDefault()
- {
- $this->template->article = $this->articleRepository->ff();
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment