Last active
August 31, 2016 13:30
-
-
Save wodCZ/96148fa9b3fd58f285a2b2ffb435efc0 to your computer and use it in GitHub Desktop.
example article component and usage
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// presenter | |
class ArticlePresenter extends Presenter { | |
/** @var \App\Components\IArticleControl @inject */ | |
public $articleControlFactory; | |
/** @var \App\Model\Articles @inject */ | |
public $articles; | |
private $currentArticle; | |
public function actionShow($path, $id, $alias) { | |
if(!($this->currentArticle = $this->articles->get($id))){ | |
throw new BadRequestException(404); | |
} | |
} | |
protected function createComponentArticle() { | |
return $this->articleControl->create($this->currentAticle); | |
} | |
} | |
// komponenta | |
class ArticleControl extends Control { | |
private $article; | |
public function __construct($article) | |
{ | |
$this->article = $article; | |
} | |
public function render() | |
{ | |
$template = $this->template; | |
$template->setFile(__DIR__ . '/article.latte'); | |
$template->article = $this->article; | |
$template->render(); | |
} | |
} | |
interface IArticleControl | |
{ | |
/** @return ArticleControl */ | |
function create($article); | |
} | |
// sablona | |
{control article} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment