mirror of
https://github.com/wintercms/winter.git
synced 2024-06-28 05:33:29 +02:00
Added support for min, max, and step for the number field type
This commit is contained in:
parent
67ee2229a5
commit
8c9be817cc
@ -2,15 +2,23 @@
|
||||
<?php if ($this->previewMode): ?>
|
||||
<span class="form-control"><?= $field->value ? e($field->value) : ' ' ?></span>
|
||||
<?php else: ?>
|
||||
<?php
|
||||
$min = isset($field->config['min']) ? $field->config['min'] : false;
|
||||
$max = isset($field->config['max']) ? $field->config['max'] : false;
|
||||
$step = isset($field->config['step']) ? $field->config['step'] : 'any';
|
||||
?>
|
||||
|
||||
<input
|
||||
type="number"
|
||||
step="any"
|
||||
step="<?= $step ?>"
|
||||
name="<?= $field->getName() ?>"
|
||||
id="<?= $field->getId() ?>"
|
||||
value="<?= e($field->value) ?>"
|
||||
placeholder="<?= e(trans($field->placeholder)) ?>"
|
||||
class="form-control"
|
||||
autocomplete="off"
|
||||
<?= $min ? 'min="' . $min . '"' : ''; ?>
|
||||
<?= $max ? 'max="' . $max . '"' : ''; ?>
|
||||
<?= $field->hasAttribute('pattern') ? '' : 'pattern="-?\d+(\.\d+)?"' ?>
|
||||
<?= $field->hasAttribute('maxlength') ? '' : 'maxlength="255"' ?>
|
||||
<?= $field->getAttributes() ?>
|
||||
|
Loading…
x
Reference in New Issue
Block a user