本文整理汇总了PHP中Anomaly\Streams\Platform\Ui\Form\FormBuilder::fireFieldEvents方法的典型用法代码示例。如果您正苦于以下问题:PHP FormBuilder::fireFieldEvents方法的具体用法?PHP FormBuilder::fireFieldEvents怎么用?PHP FormBuilder::fireFieldEvents使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Anomaly\Streams\Platform\Ui\Form\FormBuilder
的用法示例。
在下文中一共展示了FormBuilder::fireFieldEvents方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: handle
/**
* Handle the command.
*
* @param Dispatcher $events
*/
public function handle(Dispatcher $events)
{
$this->builder->fire('posting', ['builder' => $this->builder]);
$this->builder->fireFieldEvents('form_posting');
$this->dispatch(new LoadFormValues($this->builder));
/**
* Multiple form builders do not get
* validated here.. in fact:
*
* @todo: Decouple validation into it's own method like multiple form builders
*/
if (!$this->builder instanceof MultipleFormBuilder) {
$this->dispatch(new ValidateForm($this->builder));
}
$this->dispatch(new RemoveSkippedFields($this->builder));
$this->dispatch(new HandleForm($this->builder));
$this->dispatch(new SetSuccessMessage($this->builder));
$this->dispatch(new SetActionResponse($this->builder));
if ($this->builder->isAjax()) {
$this->dispatch(new SetJsonResponse($this->builder));
}
$this->builder->fire('posted', ['builder' => $this->builder]);
$this->builder->fireFieldEvents('form_posted');
$events->fire(new FormWasPosted($this->builder));
}
示例2: handle
/**
* Handle the command.
*
* @param Dispatcher $events
*/
public function handle(Dispatcher $events)
{
$this->builder->fire('saving', ['builder' => $this->builder]);
$this->builder->fireFieldEvents('form_saving');
$repository = $this->builder->getRepository();
$repository->save($this->builder);
$this->builder->fire('saved', ['builder' => $this->builder]);
$this->builder->fireFieldEvents('form_saved');
$events->fire(new FormWasSaved($this->builder));
}
示例3: handle
/**
* Handle the command.
*
* @param Dispatcher $events
*/
public function handle(Dispatcher $events)
{
// We can't save if there is no repository.
if (!($repository = $this->builder->getRepository())) {
return;
}
$this->builder->fire('saving', ['builder' => $this->builder]);
$this->builder->fireFieldEvents('form_saving');
$repository->save($this->builder);
$this->builder->fire('saved', ['builder' => $this->builder]);
$this->builder->fireFieldEvents('form_saved');
$events->fire(new FormWasSaved($this->builder));
}
示例4: handle
/**
* Handle the command.
*
* @param Dispatcher $events
*/
public function handle(Dispatcher $events)
{
$this->builder->fire('posting', ['builder' => $this->builder]);
$this->builder->fireFieldEvents('form_posting');
$this->dispatch(new LoadFormValues($this->builder));
$this->dispatch(new ValidateForm($this->builder));
$this->dispatch(new RemoveSkippedFields($this->builder));
$this->dispatch(new HandleForm($this->builder));
$this->dispatch(new SetSuccessMessage($this->builder));
$this->dispatch(new SetActionResponse($this->builder));
if ($this->builder->isAjax() && !$this->builder->getFormResponse()) {
$this->dispatch(new SetJsonResponse($this->builder));
}
$this->builder->fire('posted', ['builder' => $this->builder]);
$this->builder->fireFieldEvents('form_posted');
$events->fire(new FormWasPosted($this->builder));
}