rougin/fortem 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

rougin/fortem

Composer 安装命令:

composer require rougin/fortem

包简介

Simple form templates in PHP.

README 文档

README

Latest Version on Packagist Software License Build Status Coverage Status Total Downloads

A collection of form templates for PHP with full support for alpinejs properties.

<div>
  <?= $form->label('Name')->asRequired() ?>
  <?= $form->input('name')->asModel() ?>
</div>
<div>
  <?= $form->label('Description')->asRequired() ?>
  <?= $form->input('detail')->asModel() ?>
</div>
<div>
  <?= $form->button('Update')->onClick('update(id)') ?>
</div>

Installation

Install the package using Composer:

$ composer require rougin/fortem

Basic usage

Note

All elements below use Bootstrap classes by default. Use the noStyling method to opt out, or see Restyling elements to apply a custom CSS framework.

The FormHelper class provides an interface for creating labels, inputs, textareas, buttons, select dropdowns, and error messages:

// index.php

use Rougin\Fortem\Helpers\FormHelper;

$form = new FormHelper;

echo $form->label('Name');
<label class="form-label">Name</label>

Note

See the next sections for the documentation of the abovementioned elements.

The LinkHelper class helps in generating and checking URLs to the template:

use Rougin\Fortem\Helpers\LinkHelper;

$server = array();
$server['HTTP_HOST'] = 'localhost';
$server['REQUEST_URI'] = '/';

$link = new LinkHelper($server);

echo $link; // http://localhost/

Use the isActive method to check if a given link is the current URL:

$current = $link->isActive('/'); // true

If HTTP_HOST is not available, the setBase method can be used:

use Rougin\Fortem\Helpers\LinkHelper;

$data = /** instaceof $_SERVER */;

$link = new LinkHelper($data);

$link->setBase('roug.in')

echo $link; // http://roug.in/

Labels

To create a <label> element, the label method is used:

echo $form->label('Name');
<label class="form-label">Name</label>

Additional CSS classes can be appended using withClass:

echo $form->label('Name')->withClass('text-uppercase');
<label class="form-label text-uppercase">Name</label>

To remove the default styling, use the noStyling method:

echo $form->label('Name')->noStyling();
<label>Name</label>

A label can also be marked as required, which adds a red asterisk:

echo $form->label('Name')->asRequired();
<label class="form-label">Name <span class="text-danger">*</span></label>

Inputs

To create an <input> element, the input method is used. By default, it creates a text input:

echo $form->input('name');
<input type="text" name="name" class="form-control">

Additional CSS classes can be appended using withClass:

echo $form->input('name')->withClass('is-invalid');
<input type="text" name="name" class="form-control is-invalid">

The input type can be changed using the withType method or the convenient asEmail and asNumber methods:

echo $form->input('email')->asEmail();
<input type="email" name="email" class="form-control">
echo $form->input('age')->asNumber();
<input type="number" name="age" class="form-control">

Textareas

To create a <textarea> element, the textarea method is used:

echo $form->textarea('message');
<textarea name="message" class="form-control"></textarea>

Additional CSS classes can be appended using withClass:

echo $form->textarea('message')->withClass('is-invalid');
<textarea name="message" class="form-control is-invalid"></textarea>

To remove the default styling, use the noStyling method:

echo $form->textarea('message')->noStyling();
<textarea name="message"></textarea>

A textarea supports Alpine.js integration with the asModel and disablesOn methods:

$form->withAlpine();

echo $form->textarea('message')->asModel();
<textarea name="message" x-model="message"></textarea>
echo $form->textarea('message')->disablesOn('loading');
<textarea name="message" :disabled="loading"></textarea>

Buttons

To create a <button> element, the button method is used:

echo $form->button('Submit');
<button type="button" class="btn">Submit</button>

Additional CSS classes can be appended using withClass:

echo $form->button('Submit')->withClass('btn-primary');
<button type="button" class="btn btn-primary">Submit</button>

The button type can be changed using the withType method:

echo $form->button('Submit')->withType('submit');
<button type="submit" class="btn">Submit</button>

The asSubmit method is a shorthand for withType('submit'):

echo $form->button('Submit')->asSubmit();
<button type="submit" class="btn">Submit</button>

An icon can be prepended to the button text using withIcon. The value is wrapped in an <i> tag:

echo $form->button('Save')->withIcon('fa fa-save');
<button type="button" class="btn"><i class="fa fa-save"></i> Save</button>

Select dropdowns

To create a <select> element, the select method is used:

$items = array('Male', 'Female');

echo $form->select('gender', $items);
<select name="gender" class="form-select">
  <option value="">Please select</option>
  <option value="0">Male</option>
  <option value="1">Female</option>
</select>

An associative array with id and name keys can also be provided:

$items = [ array('id' => 'm', 'name' => 'Male') ];
$items[] = array('id' => 'f', 'name' => 'Female');

echo $form->select('gender', $items);
<select name="gender">
  <option value="">Please select</option>
  <option value="m">Male</option>
  <option value="f">Female</option>
</select>

Error messages

The error method is used to create a placeholder for validation error messages:

echo $form->error('error.name');
<template x-if="error.name">
  <p class="text-danger small mb-0" x-text="error.name[0]"></p>
</template>

Note

This is only works when integrated in alpinejs.

Using alpinejs

Fortem provides methods for seamless integration with alpinejs.

For Input and Select classes, the asModel method adds an x-model attribute to the element, binding its value to its variable:

echo $form->input('name')->asModel();
<input type="text" name="name" x-model="name">
echo $form->select('gender', $items)->asModel();
<select name="gender" x-model="gender">...</select>

In all elements, the disablesOn method adds the :disabled attribute, allowing an element to be disabled based on its condition:

echo $form->input('name')->disablesOn('loading');
<input type="text" name="name" :disabled="loading">

For the Button class, the onClick method adds the @click attribute to a button, executing its function on click:

echo $form->button('Submit')->onClick('submitForm');
<button type="button" @click="submitForm">Submit</button>

Scripts

The script method helps create a JavaScript object from PHP which is useful for initializing data for alpinejs:

echo $form->script('data')
  ->with('name', 'John Doe')
  ->with('age', 30)
  ->withLoading()
  ->withError();
<script>
  let data = {"name":"John Doe","age":30,"loading":false,"error":{}};
</script>

Restyling elements

The default styling uses Bootstrap 5 classes. To use a different CSS framework, implement the StyleInterface and pass it to the form helper:

namespace Rougin\Test\Styles;

use Rougin\Fortem\StyleInterface;

class TailwindStyle implements StyleInterface
{
    public function button()
    {
        return 'rounded-md bg-indigo-600 px-3 py-2 text-sm font-semibold text-white shadow-sm hover:bg-indigo-500';
    }

    public function error()
    {
        return 'mt-1 text-sm text-red-600';
    }

    public function input()
    {
        return 'block w-full rounded-md border-0 py-1.5 text-gray-900 shadow-sm ring-1 ring-inset ring-gray-300 placeholder:text-gray-400 sm:text-sm';
    }

    public function label()
    {
        return 'block text-sm font-medium leading-6 text-gray-900';
    }

    public function required()
    {
        return 'text-red-500';
    }

    public function select()
    {
        return 'block w-full rounded-md border-0 py-1.5 text-gray-900 shadow-sm ring-1 ring-inset ring-gray-300 sm:text-sm';
    }
}
use Rougin\Fortem\Helpers\FormHelper;
use Rougin\Test\Styles\TailwindStyle;

$form = new FormHelper;

// Apply the custom style to all elements ---
$form->useStyling(new TailwindStyle);
// ------------------------------------------

// All elements now use the custom style ---
$form->label('Name')->asRequired();
$form->input('name');
$form->button('Submit')->withClass('btn-primary');
$form->select('gender', array('Male', 'Female'));
$form->error('error.name');
// -----------------------------------------

// Opt out the default styling per element ---
$form->input('name')->noStyling();
// -------------------------------------------

Changelog

Please see CHANGELOG for recent changes and latest updates.

Contributing

See CONTRIBUTING on how to contribute to the project.

License

The MIT License (MIT). Please see LICENSE for more information.

rougin/fortem 适用场景与选型建议

rougin/fortem 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 1.19k 次下载、GitHub Stars 达 0, 最近一次更新时间为 2025 年 07 月 05 日, 在 PHP 生态内属于活跃度较高的组件。

它主要适用于以下技术方向: 「html-form」 「php-form」 「php-ui-kit」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。

我们在过去多个企业项目中使用过 rougin/fortem 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。

围绕 rougin/fortem 我们能提供哪些服务?
定制开发 / 二次开发

基于 rougin/fortem 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。

BUG 修复 & 性能优化

线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。

项目外包 & 长期维护

承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。

yvsm@zunyunkeji.com QQ:316430983 微信:yvsm316 西安尊云信息科技 · 专注 PHP / Go / 分布式系统研发

统计信息

  • 总下载量: 1.19k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 2
  • 依赖项目数: 1
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 0
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2025-07-05