我在我的 Form 课上:
public function configure()
{
$emb = $this->getEmbeddedForms();
foreach($emb as $key => $form)
{
unset($form['backup']);
}
}
但这不起作用 - 不是未设置。在 $emb 我有:
oneForm
twoForm
在 oneForm 和 twoForm 我有小部件备份。我想用 getEmbeddedForms 取消设置。我无法在 oneForm.class 和 twoForm.class 中取消设置。