在TYPO3 6.1.7上使用扩展构建器构建的extbase扩展中,我没有通过Typoscript设置任何storagePid。
但是我在插件中设置了“Record Storage Page”:
我希望现在只能从此页面获取记录。 但事实并非如此,它只返回该表中的所有项目。
如何让扩展程序识别插件中的设置? 或者(如果它应该开箱即用)我如何找出它没有的原因?
答案 0 :(得分:15)
当我的扩展程序的前端插件(TYPO3 7.6.4)拒绝使用插件的“页面”字段(“记录存储页面”)时,我做了很多研究,所以我想分享我的发现:
我的分机名称是'tx_dhsnews',我的插件名称是'infobox'
setRespectStoragePage必须设置为true(默认值):$ query-> setRespectStoragePage(TRUE)
在typoscript-setup中,特定于插件的storagePid plugin.tx_dhsnews_infobox.persistence.storagePid 根本不存在!不是空值的事件!否则“页面”字段将不受尊重!
这就是全部。 Extensions Builder刚刚创建了一个typoscript-setup,其中storagePid将特定插件“infobox”设置为空。这导致插件不尊重'pages'字段。
在扩展级别设置storagePid没有问题(例如'tx_dhsnews..persistence.storagePid'),该值将与'pages'(“Record Storage Page”)中给出的值合并,但是一旦插件脚本中存在特定于插件的tx_ [extension] _ [plugin] .persistence.storagePid,它就会否决其他所有内容!
希望这会有助于节省一些时间+神经
答案 1 :(得分:7)
将以下代码添加到存储库
namespace <Vendor>\<Extkey>\Domain\Repository;
class ExampleRepository extends \TYPO3\CMS\Extbase\Persistence\Repository {
// Example for repository wide settings
public function initializeObject() {
/** @var $defaultQuerySettings \TYPO3\CMS\Extbase\Persistence\Generic\Typo3QuerySettings */
$defaultQuerySettings = $this->objectManager->get('TYPO3\\CMS\\Extbase\\Persistence\\Generic\\Typo3QuerySettings');
// add the pid constraint
$defaultQuerySettings->setRespectStoragePage(TRUE);
}
// Example for a function setup changing query settings
public function findSomething() {
$query = $this->createQuery();
// add the pid constraint
$query->getQuerySettings()->setRespectStoragePage(TRUE);
// the same functions as shown in initializeObject can be applied.
return $query->execute();
}
}
您可以在此页面找到更多信息 http://forge.typo3.org/projects/typo3v4-mvc/wiki/Default_Orderings_and_Query_Settings_in_Repository
答案 2 :(得分:1)
我实际上修改了我的MVC控制器以实现记录过滤,具体取决于实际页面(storagePid == page.id)..看起来像这样:
use TYPO3\CMS\Extbase\Mvc\Controller\ActionController;
class MyMVCController extends ActionController {
protected function initializeAction() {
parent::initializeAction();
//fallback to current pid if no storagePid is defined
$configuration = $this->configurationManager->getConfiguration(\TYPO3\CMS\Extbase\Configuration\ConfigurationManagerInterface::CONFIGURATION_TYPE_FRAMEWORK);
if (empty($configuration['persistence']['storagePid'])) {
$currentPid['persistence']['storagePid'] = GeneralUtility::_GP('id');
$this->configurationManager->setConfiguration(array_merge($configuration, $currentPid));
}
[..]
我使用http://wiki.t3easy.de/的解决方案并修改了storagePid的值,因为我开发了一个后端模块。 他的tscript例子对我没有用.. 另外一个article by Thomas Deuling对于这个主题很有意思。
但我仍然没有把整个连接放到我的脑海里..想回到symfony xD
编辑:对于repo查询的修改,本文看起来也很有趣: https://forge.typo3.org/projects/typo3v4-mvc/wiki/Default_Orderings_and_Query_Settings_in_Repository