1

embedRelation 的原型引用了一个“选项”数组(作为 $formArguments/$formargs 传递)。

是否可以传递选项数组:

embedRelation("Model","ModelForm",$options_arr);

options_arr 包含要为关系设置的表单验证器/小部件/等?

$formargs['something']['publish_date'] = new sfWidgetFormInputText();

或者是否可以以这样的方式限制为关系显示的表单字段?

$formargs['something']['use_fields'] = array('publish_date');

从 sfFormDoctrine.class.php ...

* Embed a Doctrine_Collection relationship in to a form
*
*     [php]
*     $userForm = new UserForm($user);
*     $userForm->embedRelation('Groups AS groups');
*
* @param  string $relationName  The name of the relation and an optional alias
* @param  string $formClass     The name of the form class to use
* @param  array  $formArguments Arguments to pass to the constructor (related object will be shifted onto the front)
* @param string  $innerDecorator A HTML decorator for each embedded form
* @param string  $decorator      A HTML decorator for the main embedded form
*
* @throws InvalidArgumentException If the relationship is not a collection
*/
public function embedRelation($relationName, $formClass = null, $formArgs = array(), $innerDecorator = null, $decorator = null)

...

我最接近 $formArgs array() 的规范来自 sfFormPropel.class.php (我使用的是学说 1.2):

* `title`: The title of the collection form once embedded. Defaults to the relation name.
* `embedded_form_class`: The class name of the forms to embed. Uses the model name by default (a form based on a collection of Book objects embeds BookForm objects).
* `collection_form_class`: Class of the collection form to return. Defaults to sfFormPropelCollection.
* `hide_on_new`: If true, the relation form does not appear for new objects. Defaults to false.
* `add_empty`: Whether to allow the user to add new objects to the collection. Defaults to true.
* `add_delete`: Whether to add a delete widget for each object. Defaults to true.
* `remove_fields`: The list of fields to remove from the embedded object forms
* `item_pattern`: The pattern used to name each embedded form. Defaults to '%index%'.

If `add_empty` is set to `true`, the following additional options are available:

* `empty_label`: The label of the empty form. Defaults to 'new' + the relation name.
* `add_link`: The text of the JavaScript link that displays the empty form. Defaults to `Ann new`
* `max_additions`: The max number of additions accepted on the client side. Defaults to 0 (no limit)

If `add_delete` is set to `true`, the following additional options are available:

* `delete_name`: Name of the delete widget. Defaults to 'delete'.
* `delete_widget`: Optional delete widget object. If left null, uses a `sfWidgetFormDelete` instance, which is a checkbox widget with a Javascript confirmation.
* `alert_text`: The text of the Javascript alert to show.
* `hide_parent`: Whether to hide the deleted form when clicking the checkbox. Defaults to true.
* `parent_level`: The number of times parentNode must be called to reach the parent to hide. As a widget doesn't know if it's merged or embedded, this setting allows the JavaScript code used to hide the parent to find it. Recommended values: 6 for embedded form (default), 7 for merged form.

任何见解将不胜感激。

4

2 回答 2

1

我认为,如果您将 sayarray('toto' => 'pwet')作为表单参数,您将能够使用$this->getOption('toto');从那里检索表单中的“pwet”,一切皆有可能(设置小部件和验证器)

于 2010-08-12T22:58:26.990 回答
0

你为什么不走另一条路:

$o = $this->isNew() ? new Model() : $this->getObject()->getModel();
$model_form = new ModelForm($o);

//now configure widgets and validators
$model_form->setWidget('publish_date', new sfWidgetFormInputText());
$model_form->useFields(array('publish_date'));

$this->embedForm('Model', $model_form);
于 2011-05-05T08:52:02.220 回答