本文整理汇总了PHP中Anomaly\Streams\Platform\Ui\Form\FormBuilder::isAjax方法的典型用法代码示例。如果您正苦于以下问题:PHP FormBuilder::isAjax方法的具体用法?PHP FormBuilder::isAjax怎么用?PHP FormBuilder::isAjax使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Anomaly\Streams\Platform\Ui\Form\FormBuilder
的用法示例。
在下文中一共展示了FormBuilder::isAjax方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: handle
/**
* Handle the command.
*
* @param ModuleCollection $modules
* @param ThemeCollection $themes
*/
public function handle(ModuleCollection $modules, ThemeCollection $themes)
{
$theme = $themes->current();
/*
* Default the form view based on the request.
*/
if (!$this->builder->getFormOption('form_view') && $this->builder->isAjax()) {
$this->builder->setFormOption('form_view', 'streams::form/ajax');
}
if (!$this->builder->getFormOption('form_view') && $theme && $theme->isAdmin()) {
$this->builder->setFormOption('form_view', 'streams::form/form');
}
if (!$this->builder->getFormOption('form_view') && $theme && !$theme->isAdmin()) {
$this->builder->setFormOption('form_view', 'streams::form/standard');
}
if (!$this->builder->getFormOption('form_view')) {
$this->builder->setFormOption('form_view', 'streams::form/admin/form');
}
/*
* Default the form wrapper view as well.
*/
if (!$this->builder->getFormOption('wrapper_view') && $this->builder->isAjax()) {
$this->builder->setFormOption('wrapper_view', 'streams::ajax');
}
if (!$this->builder->getFormOption('wrapper_view')) {
$this->builder->setFormOption('wrapper_view', 'streams::blank');
}
/*
* If the permission is not set then
* try and automate it.
*/
if ($this->builder->getFormOption('permission') === null && ($module = $modules->active()) && ($stream = $this->builder->getFormStream())) {
$this->builder->setFormOption('permission', $module->getNamespace($stream->getSlug() . '.write'));
}
}
示例2: 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));
}
示例3: handle
/**
* Handle the command.
*
* @param Request $request
* @param MessageBag $messages
* @param Translator $translator
*/
public function handle(Request $request, MessageBag $messages, Translator $translator)
{
if ($this->builder->isAjax()) {
return;
}
$errors = $this->builder->getFormErrors();
$messages->error($errors->all());
if ($request->segment(1) == 'admin' && ($stream = $this->builder->getFormStream()) && $stream->isTrashable()) {
/* @var AssignmentInterface $assignment */
foreach ($stream->getUniqueAssignments() as $assignment) {
if ($this->builder->hasFormError($assignment->getFieldSlug())) {
$messages->warning($translator->trans('streams::validation.unique_trash', ['attribute' => '"' . $translator->trans($assignment->getFieldName()) . '"']));
}
}
}
}
示例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));
}