本文整理汇总了PHP中WellCommerce\Component\Form\Elements\FormInterface::getChildren方法的典型用法代码示例。如果您正苦于以下问题:PHP FormInterface::getChildren方法的具体用法?PHP FormInterface::getChildren怎么用?PHP FormInterface::getChildren使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类WellCommerce\Component\Form\Elements\FormInterface
的用法示例。
在下文中一共展示了FormInterface::getChildren方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: mapDataToForm
/**
* Maps request data to form
*
* @param FormInterface $form
*/
public function mapDataToForm(FormInterface $form)
{
$this->mapRequestDataToElementCollection($this->data, $form->getChildren());
}
示例2: getBoxTypeSelect
/**
* @param FormInterface $form
*
* @return Select
*/
protected function getBoxTypeSelect(FormInterface $form) : Select
{
return $form->getChildren()->get('required_data')->getChildren()->get('boxType');
}
示例3: getCalculatorTypeElement
/**
* Returns calculator select element
*
* @param FormInterface $form
*
* @return \WellCommerce\Component\Form\Elements\Optioned\Select
*/
private function getCalculatorTypeElement(FormInterface $form)
{
return $form->getChildren()->get('costs_data')->getChildren()->get('calculator');
}
示例4: mapFormToData
/**
* Maps all submitted values to model data representation
*
* @param FormInterface $form
*/
public function mapFormToData(FormInterface $form)
{
$this->mapElementCollectionToModelData($form->getChildren());
}
示例5: mapErrorsToForm
/**
* Maps errors messages to all form elements
*
* @param ConstraintViolationListInterface $errors
* @param FormInterface $form
*/
public function mapErrorsToForm(ConstraintViolationListInterface $errors, FormInterface $form)
{
$messages = $this->extractMessages($errors);
$this->mapMessagesToElementCollection($messages, $form->getChildren());
}