Added new `hint` form field type (see Backend > Forms docs).

This commit is contained in:
Sam Georges 2014-09-13 15:14:03 +10:00
parent efbb0351db
commit d4e28a62cc
2 changed files with 12 additions and 0 deletions

View File

@ -1,3 +1,6 @@
* **Build 14x** (2014-09-xx)
- Added new `hint` form field type (see Backend > Forms docs).
* **Build 145** (2014-09-13)
- Standard setting pages now have **Save** and **Save and Close** buttons.

View File

@ -0,0 +1,9 @@
<!-- Hint -->
<?= $this->controller->makeHintPartial($field->getId(), $field->path ?: $field->columnName, [
'formModel' => $formModel,
'formField' => $field,
'formValue' => $field->value,
'model' => $formModel,
'field' => $field,
'value' => $field->value
]) ?>