Merge pull request #1063 from ralpheav/master

Adding CaseTrackerObjectPeer  to the autoloader
This commit is contained in:
julceslauhub
2012-12-06 12:54:12 -08:00
2 changed files with 6 additions and 3 deletions

View File

@@ -5,10 +5,10 @@
*/ */
// include base peer class // include base peer class
require_once 'classes/model/om/BaseCaseTrackerObjectPeer.php'; //require_once 'classes/model/om/BaseCaseTrackerObjectPeer.php';
// include object class // include object class
include_once 'classes/model/CaseTrackerObject.php'; //include_once 'classes/model/CaseTrackerObject.php';
/** /**

View File

@@ -12,7 +12,7 @@
* *
* This program is distributed in the hope that it will be useful, * This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of * but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. BaseCaseTrackerObjectPeerSee the
* GNU Affero General Public License for more details. * GNU Affero General Public License for more details.
* *
* You should have received a copy of the GNU Affero General Public License * You should have received a copy of the GNU Affero General Public License
@@ -511,6 +511,9 @@ Bootstrap::registerClass('CaseTrackerPeer', PATH_HOME . "engine/classes/mode
Bootstrap::registerClass('BaseCaseTrackerObject',PATH_HOME . "engine/classes/model/om/BaseCaseTrackerObject.php"); Bootstrap::registerClass('BaseCaseTrackerObject',PATH_HOME . "engine/classes/model/om/BaseCaseTrackerObject.php");
Bootstrap::registerClass('CaseTrackerObject', PATH_HOME . "engine/classes/model/CaseTrackerObject.php"); Bootstrap::registerClass('CaseTrackerObject', PATH_HOME . "engine/classes/model/CaseTrackerObject.php");
Bootstrap::registerClass('BaseCaseTrackerObjectPeer',PATH_HOME . "engine/classes/model/om/BaseCaseTrackerObjectPeer.php");
Bootstrap::registerClass('CaseTrackerObjectPeer', PATH_HOME . "engine/classes/model/CaseTrackerObjectPeer.php");
Bootstrap::registerClass('BaseConfiguration', PATH_HOME . "engine/classes/model/om/BaseConfiguration.php"); Bootstrap::registerClass('BaseConfiguration', PATH_HOME . "engine/classes/model/om/BaseConfiguration.php");
Bootstrap::registerClass('Configuration', PATH_HOME . "engine/classes/model/Configuration.php"); Bootstrap::registerClass('Configuration', PATH_HOME . "engine/classes/model/Configuration.php");