Moved `ViewMaker` trait to live under system, it can be useful for Models too.

This commit is contained in:
Sam Georges 2014-09-29 12:19:19 +10:00
parent 7bc9f0029a
commit fbf5cbbb67
5 changed files with 7 additions and 4 deletions

View File

@ -1,3 +1,6 @@
* **Build 15x** (2014-09-xx)
- Moved `ViewMaker` trait to live under system, it can be useful for Models too.
* **Build 149** (2014-09-29) * **Build 149** (2014-09-29)
- Added new `hint` form field type (see Backend > Forms docs). - Added new `hint` form field type (see Backend > Forms docs).
- Added new `containerAttributes` property to form fields (see Backend > Forms docs). - Added new `containerAttributes` property to form fields (see Backend > Forms docs).

View File

@ -33,7 +33,7 @@ class Controller extends Extendable
{ {
use \System\Traits\AssetMaker; use \System\Traits\AssetMaker;
use \System\Traits\ConfigMaker; use \System\Traits\ConfigMaker;
use \Backend\Traits\ViewMaker; use \System\Traits\ViewMaker;
use \Backend\Traits\WidgetMaker; use \Backend\Traits\WidgetMaker;
use \October\Rain\Support\Traits\Emitter; use \October\Rain\Support\Traits\Emitter;

View File

@ -4,7 +4,7 @@ use Str;
use Lang; use Lang;
use System\Classes\ApplicationException; use System\Classes\ApplicationException;
use October\Rain\Extension\ExtensionBase; use October\Rain\Extension\ExtensionBase;
use Backend\Traits\ViewMaker; use System\Traits\ViewMaker;
/** /**
* Controller Behavior base class * Controller Behavior base class

View File

@ -16,7 +16,7 @@ abstract class WidgetBase
use \System\Traits\AssetMaker; use \System\Traits\AssetMaker;
use \System\Traits\ConfigMaker; use \System\Traits\ConfigMaker;
use \Backend\Traits\ViewMaker; use \System\Traits\ViewMaker;
use \Backend\Traits\WidgetMaker; use \Backend\Traits\WidgetMaker;
use \October\Rain\Support\Traits\Emitter; use \October\Rain\Support\Traits\Emitter;

View File

@ -1,4 +1,4 @@
<?php namespace Backend\Traits; <?php namespace System\Traits;
use Str; use Str;
use File; use File;