Skip to content

Instantly share code, notes, and snippets.

@wodCZ
Last active August 31, 2016 13:30
Show Gist options
  • Save wodCZ/96148fa9b3fd58f285a2b2ffb435efc0 to your computer and use it in GitHub Desktop.
Save wodCZ/96148fa9b3fd58f285a2b2ffb435efc0 to your computer and use it in GitHub Desktop.
example article component and usage
<?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