nswdpc/silverstripe-field-hint
Composer 安装命令:
composer require nswdpc/silverstripe-field-hint
包简介
Allows developers to add usage hints for templates to consider when rendering the field
README 文档
README
This module allows developers to add usage hints to form fields. Hints are just arbitrary string values.
The hints can be used by themes and templates in a project to render the field in a specific way, to be interpreted by whatever frontend UI-kit is in use for your site.
This avoids polluting module PHP code with theme-specific CSS classes.
Instead of this: $field->addExtraClass('btn btn-danger')
...do this $field->setHint('danger').
Default fields
Out-of-the-box the following fields are configured to support the Hintable extension:
FormAction- for action prioritiesCompositeField- to assist in rendering child fields in a certain wayHTMLReadonlyField- to display the value and title in a specific way
No changes are made to the field itself, the extension just exposes some methods on the field to use in module code.
Usage
Important: In your theme or project, you need to provide a template that is used by the class using the Hintable extension. Read: template inheritance.
Forms
Set field hints on your forms:
<?php /** * Add a hint that the action is a 'secondary' button/input */ \SilverStripe\Forms\FormAction::create( 'doSecondary', _t('some.i18n_key', 'Complete secondary action') )->setHint('secondary'); /** * Add a hint, and also add any class mapped to the 'secondary' hint in config * (See Sample project configuration, below) */ \SilverStripe\Forms\FormAction::create( 'doSecondary', _t('some.i18n_key', 'Complete secondary action') )->setHint('secondary', true);
The first parameter to setHint is a string, it can be any value that a template can interpret.
The second parameter to setHint is a boolean, when true a class mapped to the hint value is added, if available in configuration. See below for an example.
Templates
Use the value of $FormFieldHint to modify how your theme/project templates render the field.
Here's an example using the HTMLReadonlyField holder template and the hints 'callout' and 'alert':
<%-- path: themes/my-theme/templates/SilverStripe/Forms/HTMLReadonlyField_holder.ss --%> <% if $FormFieldHint == 'callout' %> <%-- render as callout --%> <div class="my-callout"> <% if $FormFieldHintIcon %> <span class="icon">{$FormFieldHintIcon}</span> <% end_if %> <div class="content"> <% if $Title %> <h4>{$Title.XML}</h4> <% end_if %> {$Value} </div> </div> <% else_if $FormFieldHint == 'alert' %> <%-- render an alert message --%> <% else %> <%-- Important: allow for default rendering if no hint supplied --%> {$Field} <% end_if %>
Icons
Set a field hint icon of 'delete' on a supporting field:
<?php \SilverStripe\Forms\FormAction::create( 'doSecondary', _t('some.i18n_key', 'Complete secondary action') )->setHint('secondary', true) ->setFieldHintIcon('delete');
<%-- theme template: SilverStripe/Forms/FormAction.ss --%> <% if $UseButtonTag %> <button $AttributesHTML> <% if $FormFieldHintIcon %> <span class="material-icons-outlined">{$FormFieldHintIcon}</span> <% end_if %> <% if $ButtonContent %>$ButtonContent<% else %><span>$Title.XML</span><% end_if %> </button> <% else %> <input $AttributesHTML /> <% end_if %>
Configuration
There is none, unless:
- you want to add the
Hintableextension to another field. - you need to add hint -> CSS class mapping
Sample project configuration
--- Name: 'app-field-hint' After: - '#nswdpc-field-hint' --- # your project requires TextField to be hintable SilverStripe\Forms\TextField: extensions: - 'NSWPDC\Forms\Hintable' # add hint/class mapping SilverStripe\Forms\FormField: hint_class_mapping: # setHint('secondary') will add the CSS class 'nsw-button--secondary' to the FormField danger: 'nsw-button nsw-button--danger'
Code:
<?php \SilverStripe\Forms\FormAction::create( 'doDangerousAction', _t('some.i18n_key', 'Complete dangerous action') )->setHint('danger', true);
HTML
<input type="submit" name="action_doDangerousAction" value="Dangerous Action" class="action nsw-button nsw-button--danger" id="some_form_id">
CSS classes are added as extra classes, which by default in Silverstripe are added to both the field holder and the field input element. Your templates should take that into account.
Installation
The only supported way of installing this module is via composer
composer require nswdpc/silverstripe-field-hint
You may need to add a repositories entry to you composer.json, depending on packagist status.
License
Configuration
See _config/config.yml
Maintainers
- PD Web Team
Bugtracker
We welcome bug reports, pull requests and feature requests on the Github Issue tracker for this project.
Please review the code of conduct prior to opening a new issue.
Security
If you have found a security issue with this module, please email digital[@]dpc.nsw.gov.au in the first instance, detailing your findings.
Development and contribution
If you would like to make contributions to the module please ensure you raise a pull request and discuss with the module maintainers.
Please review the code of conduct prior to completing a pull request.
nswdpc/silverstripe-field-hint 适用场景与选型建议
nswdpc/silverstripe-field-hint 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 4.9k 次下载、GitHub Stars 达 0, 最近一次更新时间为 2021 年 07 月 27 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「silverstripe」 「fields」 「form fields」 「hints」 「nsw」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 nswdpc/silverstripe-field-hint 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 nswdpc/silverstripe-field-hint 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 nswdpc/silverstripe-field-hint 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Diese Contao 4 Erweiterung stellt Google reCAPTCHA V2 in Form eines neuen Formularfeldes im Formulargenerator bereit. This extension provides Google reCAPTCHA V2 in the form of a new form field in the form generator of Contao Open Source CMS.
Register advanced custom fields with object oriented PHP
Analytics chooser extensions for site settings.
A Laravel Filament Forms slug field.
A jQuery augmented PHP library for creating and validating HTML forms
统计信息
- 总下载量: 4.9k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 8
- 依赖项目数: 1
- 推荐数: 0
其他信息
- 授权协议: BSD-3-Clause
- 更新时间: 2021-07-27