* Build 209
This commit is contained in:
parent
a748eb1b23
commit
e6acb54d03
|
|
@ -1,3 +1,6 @@
|
||||||
|
* **Build 209** (2015-02-25)
|
||||||
|
- Added new form field type `section` for dividing groups of other fields (see Backend > Forms docs).
|
||||||
|
|
||||||
* **Build 206** (2015-02-21)
|
* **Build 206** (2015-02-21)
|
||||||
- The back-end code editor now supports the use of [Emmet](http://emmet.io/).
|
- The back-end code editor now supports the use of [Emmet](http://emmet.io/).
|
||||||
- Added the ability to prune Event and Request log records.
|
- Added the ability to prune Event and Request log records.
|
||||||
|
|
|
||||||
|
|
@ -3,9 +3,9 @@
|
||||||
use App;
|
use App;
|
||||||
use Str;
|
use Str;
|
||||||
use Lang;
|
use Lang;
|
||||||
use Form as FormHelper;
|
|
||||||
use Input;
|
use Input;
|
||||||
use Event;
|
use Event;
|
||||||
|
use Form as FormHelper;
|
||||||
use Backend\Classes\FormTabs;
|
use Backend\Classes\FormTabs;
|
||||||
use Backend\Classes\FormField;
|
use Backend\Classes\FormField;
|
||||||
use Backend\Classes\WidgetBase;
|
use Backend\Classes\WidgetBase;
|
||||||
|
|
@ -23,7 +23,6 @@ use October\Rain\Database\Model;
|
||||||
*/
|
*/
|
||||||
class Form extends WidgetBase
|
class Form extends WidgetBase
|
||||||
{
|
{
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* {@inheritDoc}
|
* {@inheritDoc}
|
||||||
*/
|
*/
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue