Add notes

This commit is contained in:
Sam Georges 2014-05-24 22:03:20 +10:00
parent e2fa45e264
commit a89eda62cf
2 changed files with 3 additions and 1 deletions

View File

@ -2,6 +2,7 @@
- Components can now be dragged from the side navigation directly on to the page. - Components can now be dragged from the side navigation directly on to the page.
- Asset maker methods (addJs, addCss, addRss) now use an optional build code, either *core* or a plugin code. This is converted to a version number to ensure updates are not affected by cached assets. - Asset maker methods (addJs, addCss, addRss) now use an optional build code, either *core* or a plugin code. This is converted to a version number to ensure updates are not affected by cached assets.
- Added new method `addComponent()` to Cms Controller. Components can now act as a proxy for other components. - Added new method `addComponent()` to Cms Controller. Components can now act as a proxy for other components.
- Added new override method `onInit()` to Components, called before AJAX requests are processed.
* **Build 90** (2014-05-23) * **Build 90** (2014-05-23)
- Class `CmsPropertyHelper` has been deprecated, will be removed year > 2014. - Class `CmsPropertyHelper` has been deprecated, will be removed year > 2014.

View File

@ -93,7 +93,8 @@ abstract class ComponentBase extends Extendable
public function onInit() {} public function onInit() {}
/** /**
* Executed when this component is bound to a page or layout. * Executed when this component is bound to a page or layout, part of
* the page life cycle.
*/ */
public function onRun() {} public function onRun() {}