Fixed the changes in order to register the class in the sysgeneric.php and bootstrap files

This commit is contained in:
Gustavo Cruz
2012-11-29 13:25:59 -04:00
parent 05d6a3181b
commit 81270e1567
2 changed files with 2 additions and 0 deletions

View File

@@ -250,6 +250,7 @@
G::LoadSystem('menu'); G::LoadSystem('menu');
G::LoadSystem("xmlMenu"); G::LoadSystem("xmlMenu");
G::LoadSystem('dvEditor'); G::LoadSystem('dvEditor');
G::LoadSystem('wysiwygEditor');
G::LoadSystem('controller'); G::LoadSystem('controller');
G::LoadSystem('httpProxyController'); G::LoadSystem('httpProxyController');
G::LoadSystem('pmException'); G::LoadSystem('pmException');

View File

@@ -415,6 +415,7 @@ Bootstrap::registerClass('DBTable', PATH_GULLIVER . "class.dbtable.php");
Bootstrap::registerClass('xmlMenu', PATH_GULLIVER . "class.xmlMenu.php"); Bootstrap::registerClass('xmlMenu', PATH_GULLIVER . "class.xmlMenu.php");
Bootstrap::registerClass('XmlForm_Field_XmlMenu', PATH_GULLIVER . "class.xmlMenu.php"); Bootstrap::registerClass('XmlForm_Field_XmlMenu', PATH_GULLIVER . "class.xmlMenu.php");
Bootstrap::registerClass('XmlForm_Field_HTML', PATH_GULLIVER . "class.dvEditor.php"); Bootstrap::registerClass('XmlForm_Field_HTML', PATH_GULLIVER . "class.dvEditor.php");
Bootstrap::registerClass('XmlForm_Field_WYSIWYG_EDITOR', PATH_GULLIVER . "class.wysiwygEditor.php");
Bootstrap::registerClass('Controller', PATH_GULLIVER . "class.controller.php"); Bootstrap::registerClass('Controller', PATH_GULLIVER . "class.controller.php");
Bootstrap::registerClass('HttpProxyController', PATH_GULLIVER . "class.httpProxyController.php"); Bootstrap::registerClass('HttpProxyController', PATH_GULLIVER . "class.httpProxyController.php");
Bootstrap::registerClass('templatePower', PATH_GULLIVER . "class.templatePower.php"); Bootstrap::registerClass('templatePower', PATH_GULLIVER . "class.templatePower.php");