上周我开始使用TYPO3,现在我必须为Dashboard插件制作扩展(小部件)(在FE中,用户可以从特定小部件列表中选择并将它们放在此Dashboard上)。
小部件应该能够显示最新的5条新闻,并且(通过下拉列表)只能显示特定类别的最新5条新闻。
对于我们正在使用EXT的新闻:新闻。
这就是我现在被困住的地方。
在我的自定义扩展程序中,如何从新闻扩展程序中访问应得的数据(标题,类别和正文)以将其传递到我的模板中?
答案 0 :(得分:2)
这很容易做,因为您可以完全重用NewsDemand
对象进行过滤。一个例子如下:
$newsRepository = $this->objectManager->get(NewsRepository::class);
$demand = $this->objectManager->get(NewsDemand::class);
$demand->setStoragePage('123');
$demand->setLimit(3);
$demand->setCategories(['12', '34']);
$demand->setCategoryConjunction('or');
$items = $newsRepository->findDemanded($demand);
$this->view->assign('items', $items);
查看处理需求对象所有可能性的NewsRepository
。