gpt4 book ai didi

TYPO3 extbase & IRRE : add existing records with 'foreign_selector'

转载 作者:行者123 更新时间:2023-12-01 23:10:17 25 4
gpt4 key购买 nike

我使用 extbase 扩展构建器“启动”了一个扩展,其中包含一些 1:1 和 1:n 关系。它会自动将字段类型设置为“内联”,并在后端显示一个漂亮的 IRRE UI。

但默认情况下,无法选择现有记录,只能创建新记录。

enter image description here

我找到了各种关于如何使用“foreign_selector”实现此目的的解释,但都非常粗略。该功能本身应该可以工作,请参阅 https://forge.typo3.org/issues/43239

有人可以引导我完成此过程或指出 TER 中的一个工作示例吗?一旦我开始工作,我就可以从示例中创建一个分步教程。

PS extension_builder 生成的字段的 TCA 配置:

'myfield' => array(
'exclude' => 1,
'label' => 'LLL:EXT:myextension/Resources/Private/Language/locallang_db.xlf:tx_myextension_domain_model_myitem.myfield',
'config' => array(
'type' => 'inline',
'foreign_table' => 'tx_myextension_domain_model_myfield',
'foreign_field' => 'myitem',
'maxitems' => 9999,
'appearance' => array(
'collapseAll' => 0,
'levelLinksPosition' => 'top',
'showSynchronizationLink' => 1,
'showPossibleLocalizationRecords' => 1,
'showAllLocalizationLink' => 1
),
),
),

最佳答案

主要问题是 1:n 类型的 IRRE 关系是这样工作的:子记录保存其父记录的 uid。所以你的表 tx_myext_domain_model_city 保存着你的(虚构的)tx_myext_domain_model_address 的 UID。

因此,使用默认配置,您将无法多次选择一个城市,因为它只能有一个父级。

因此,您需要为此字段使用关系表。此表需要包含地址(uid_address)和城市(uid_city)的uid字段:

CREATE TABLE tx_irreforeignselectordemo_address_city_mm (

uid int(11) NOT NULL auto_increment,
pid int(11) DEFAULT '0' NOT NULL,
uid_address int(11) unsigned DEFAULT '0' NOT NULL,
uid_city int(11) unsigned DEFAULT '0' NOT NULL,
sorting int(11) unsigned DEFAULT '0' NOT NULL,

PRIMARY KEY (uid),
KEY parent (pid)
);

并且需要对这些字段进行 TCA 配置(而表本身可以隐藏):

return array(
'ctrl' => array(
'title' => 'Relation table',
'hideTable' => TRUE,
'sortby' => 'sorting',
),
'columns' => array(
'uid_address' => Array(
'label' => 'Address',
'config' => Array(
'type' => 'select',
'foreign_table' => 'tx_irreforeignselectordemo_domain_model_address',
'size' => 1,
'minitems' => 0,
'maxitems' => 1,
),
),
'uid_city' => Array(
'label' => 'City',
'config' => Array(
'type' => 'select',
'foreign_table' => 'tx_irreforeignselectordemo_domain_model_city',
'foreign_table_where' => ' AND sys_language_uid IN (0,-1)',
'size' => 1,
'minitems' => 0,
'maxitems' => 1,
),
),
),
'types' => array(
'0' => array('showitem' => 'uid_address,uid_city')
),
'palettes' => array()
);

然后您可以配置地址的 TCA 以使其成为 IRRE 字段:

'type' => 'inline',
'foreign_table' => 'tx_yourext_address_city_mm',
'foreign_field' => 'uid_address',
'foreign_label' => 'uid_city',
'foreign_selector' => 'uid_city',
'foreign_unique' => 'uid_city',
'foreign_sortby' => 'sorting',

注意 foreign_unique 告诉 TYPO3 一个城市只能选择一次。

您需要从另一方(来自您所在城市的 TCA)定义关系:

    'addresses' => array(
'exclude' => 1,
'label' => 'Addresses',
'config' => array(
'type' => 'inline',
'foreign_table' => 'tx_irreforeignselectordemo_address_city_mm',
'foreign_field' => 'uid_city',
'foreign_label' => 'uid_address',
),
),

配置完成后,您就可以在后端使用它了。

由于这是非标准的 MM 关系,Extbase 默认无法处理。但是我们可以将其与 TYPO3 6 中引入的 sys_file_reference 表进行比较。因此,我们为 CityRelation 构建了一个具有“地址”和“城市”属性的 Extbase 模型,并将该模型映射到我们的 mm 表:

config.tx_extbase.persistence.classes {
Visol\Irreforeignselectordemo\Domain\Model\CityRelation {
mapping {
tableName = tx_irreforeignselectordemo_address_city_mm
columns {
uid_address.mapOnProperty = address
uid_city.mapOnProperty = city
}
}
}
}

现在在我们的地址模型中,我们将城市(或多个城市 - 您允许多个选择)定义为 CityRelation 类型的 ObjectStorage:

/**
* Cities
*
* @var \TYPO3\CMS\Extbase\Persistence\ObjectStorage<\Visol\Irreforeignselectordemo\Domain\Model\CityRelation>
*/
protected $cities = NULL;

我们现在有一个属性“城市”,其中包含对所有选定城市的引用。您可以遍历它们并使用它们:

<f:for each="{address.cities}" as="cityRelation">
<li>{cityRelation.city.name}</li>
</f:for>

由于我找不到针对此的一体化演示并且对该主题感兴趣,因此我创建了一个演示扩展来执行我刚才描述的操作 - 基于核心和两个处理该主题的扩展: https://github.com/lorenzulrich/irreforeignselectordemo

无论如何,解决方案是 m:n 方法(因为 1:n 由于上述原因不起作用)所以我决定使用“城市”而不是“城市”。虽然这对于选择城市可能没有意义(如您的帖子所建议的那样),但对于其他机会可能有意义。随意将“城市”替换为“城市”,并将内联配置中的 maxItems 设置为 1 - 然后您就有了 1:n。

关于TYPO3 extbase & IRRE : add existing records with 'foreign_selector' ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26733567/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com