contenir/formbuilder-laminas-mvc
Composer 安装命令:
composer require contenir/formbuilder-laminas-mvc
包简介
Laminas MVC adapter for contenir/formbuilder — Laminas\Db loader, view helper, submit controller, Module + ConfigProvider.
README 文档
README
Laminas MVC adapter for contenir/formbuilder.
Wires the framework-agnostic form-builder engine into a Laminas MVC site:
a Laminas\Db loader, an entry-write repository, the standard
StoreSubmissionRegistrar, a public-submit controller, a render-only
view helper, and a service-manager Module + ConfigProvider with
factories for everything.
Install
composer require contenir/formbuilder-laminas-mvc
The package's Module gets auto-registered via extra.laminas.module
and laminas/laminas-component-installer. If your site doesn't run
the component-installer, add it to config/modules.config.php
manually:
'Contenir\FormBuilder\Laminas\Mvc',
Configuration
Defaults in config/autoload/:
return [ 'formbuilder' => [ // Service id of the Laminas\Db\Adapter\Adapter the loader // and entry repository should consume. Defaults to the // standard 'Laminas\Db\Adapter\Adapter' service name. 'db_adapter' => \Laminas\Db\Adapter\Adapter::class, // Static values for {site:*} TokenReplacer expansion. 'site_context' => [], // Service ids of additional submission observers (extra // registrars) to attach beyond the built-in // StoreSubmissionRegistrar. Add email / webhook / // analytics registrars here. 'observers' => [], ], ];
Use
The package follows a controller-driven render pattern — the controller loads the definition, builds the form, branches on query state; the view template only renders. There is no view helper that does its own data-fetching.
use Contenir\FormBuilder\Laminas\Mvc\Loader\LaminasDbFormLoader; use Contenir\FormBuilder\Service\FormBuilderService; class FormController extends AbstractActionController { public function __construct( private LaminasDbFormLoader $loader, private FormBuilderService $builder, ) { } public function indexAction(): ViewModel { $definition = $this->loader->loadBySlug('contact'); $form = $this->builder->build($definition); $isSuccess = $this->params()->fromQuery('form') === 'ok'; return new ViewModel([ 'definition' => $definition, 'form' => $form, 'isSuccess' => $isSuccess, ]); } }
<?php if ($isSuccess): ?> <div class="form-success">Thank you.</div> <?php else: ?> <?= $this->formMarkup($definition, $form) ?> <?php endif ?>
Submissions POST to /forms/submit/{slug} (registered by the
ConfigProvider's router.routes.forms-submit entry). The
package's SubmitController builds the same submission service,
attaches the StoreSubmissionRegistrar plus any observers from
formbuilder.observers, and branches on the form's stored
post-submission action (redirect_referrer / redirect_url /
inline_message — see contenir/formbuilder docs).
License
MIT.
contenir/formbuilder-laminas-mvc 适用场景与选型建议
contenir/formbuilder-laminas-mvc 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 18 次下载、GitHub Stars 达 0, 最近一次更新时间为 2026 年 05 月 10 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 contenir/formbuilder-laminas-mvc 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 contenir/formbuilder-laminas-mvc 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 18
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 51
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2026-05-10