changes to improve the developers translations edit tool

This commit is contained in:
Erik Amaru Ortiz
2011-02-11 16:43:02 +00:00
parent 0b38108aa2
commit 989ccf4bc6
202 changed files with 883 additions and 601 deletions

View File

@@ -62,6 +62,60 @@ class Translation extends BaseTranslation {
return $oCriteria; return $oCriteria;
} }
function getAll($lang='en', $start=null, $limit=null, $search=null){
$totalCount = 0;
$oCriteria = new Criteria('workflow');
$oCriteria->addSelectColumn(TranslationPeer::TRN_ID);
$oCriteria->addSelectColumn(TranslationPeer::TRN_CATEGORY);
$oCriteria->addSelectColumn(TranslationPeer::TRN_LANG);
$oCriteria->addSelectColumn(TranslationPeer::TRN_VALUE);
$oCriteria->addSelectColumn(TranslationPeer::TRN_UPDATE_DATE);
$oCriteria->add(TranslationPeer::TRN_LANG, $lang);
$oCriteria->add(TranslationPeer::TRN_CATEGORY, 'LABEL');
//$oCriteria->addAscendingOrderByColumn ( 'TRN_CATEGORY' );
$oCriteria->addAscendingOrderByColumn ( 'TRN_ID' );
if( $search ) {
$oCriteria->add(
$oCriteria->getNewCriterion(
TranslationPeer::TRN_ID,
"%$search%", Criteria::LIKE
)->addOr($oCriteria->getNewCriterion(
TranslationPeer::TRN_VALUE,
"%$search%", Criteria::LIKE
))
);
}
$c = clone $oCriteria;
$c->clearSelectColumns();
$c->addSelectColumn('COUNT(*)');
$oDataset = TranslationPeer::doSelectRS($c);
$oDataset->next();
$aRow = $oDataset->getRow();
if( is_array($aRow) )
$totalCount = $aRow[0];
if($start)
$oCriteria->setOffset($start);
if($limit) //&& !isset($seach) && !isset($search))
$oCriteria->setLimit($limit);
$rs = TranslationPeer::doSelectRS($oCriteria);
$rs->setFetchmode(ResultSet::FETCHMODE_ASSOC);
$rows = Array();
while( $rs->next() ) {
$rows[] = $rs->getRow();
}
$result->data = $rows;
$result->totalCount = $totalCount;
return $result;
}
/* Load strings from a Database . /* Load strings from a Database .
@@ -137,6 +191,7 @@ class Translation extends BaseTranslation {
$tr->setTrnId( $id ); $tr->setTrnId( $id );
$tr->setTrnLang( $languageId); $tr->setTrnLang( $languageId);
$tr->setTrnValue( $value ); $tr->setTrnValue( $value );
$tr->setTrnUpdateDate( date('Y-m-d') );
if ($tr->validate() ) { if ($tr->validate() ) {
// we save it, since we get no validation errors, or do whatever else you like. // we save it, since we get no validation errors, or do whatever else you like.

View File

@@ -14,7 +14,7 @@ include_once 'creole/CreoleTypes.php';
* ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive * ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive
* (i.e. if it's a text column type). * (i.e. if it's a text column type).
* *
* @package classes.model.map * @package workflow.classes.model.map
*/ */
class AdditionalTablesMapBuilder { class AdditionalTablesMapBuilder {

View File

@@ -14,7 +14,7 @@ include_once 'creole/CreoleTypes.php';
* ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive * ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive
* (i.e. if it's a text column type). * (i.e. if it's a text column type).
* *
* @package classes.model.map * @package workflow.classes.model.map
*/ */
class AppCacheViewMapBuilder { class AppCacheViewMapBuilder {

View File

@@ -14,7 +14,7 @@ include_once 'creole/CreoleTypes.php';
* ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive * ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive
* (i.e. if it's a text column type). * (i.e. if it's a text column type).
* *
* @package classes.model.map * @package workflow.classes.model.map
*/ */
class AppDelayMapBuilder { class AppDelayMapBuilder {

View File

@@ -14,7 +14,7 @@ include_once 'creole/CreoleTypes.php';
* ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive * ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive
* (i.e. if it's a text column type). * (i.e. if it's a text column type).
* *
* @package classes.model.map * @package workflow.classes.model.map
*/ */
class AppDelegationMapBuilder { class AppDelegationMapBuilder {

View File

@@ -14,7 +14,7 @@ include_once 'creole/CreoleTypes.php';
* ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive * ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive
* (i.e. if it's a text column type). * (i.e. if it's a text column type).
* *
* @package classes.model.map * @package workflow.classes.model.map
*/ */
class AppDocumentMapBuilder { class AppDocumentMapBuilder {

View File

@@ -14,7 +14,7 @@ include_once 'creole/CreoleTypes.php';
* ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive * ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive
* (i.e. if it's a text column type). * (i.e. if it's a text column type).
* *
* @package classes.model.map * @package workflow.classes.model.map
*/ */
class AppEventMapBuilder { class AppEventMapBuilder {

View File

@@ -14,7 +14,7 @@ include_once 'creole/CreoleTypes.php';
* ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive * ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive
* (i.e. if it's a text column type). * (i.e. if it's a text column type).
* *
* @package classes.model.map * @package workflow.classes.model.map
*/ */
class AppFolderMapBuilder { class AppFolderMapBuilder {

View File

@@ -14,7 +14,7 @@ include_once 'creole/CreoleTypes.php';
* ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive * ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive
* (i.e. if it's a text column type). * (i.e. if it's a text column type).
* *
* @package classes.model.map * @package workflow.classes.model.map
*/ */
class AppHistoryMapBuilder { class AppHistoryMapBuilder {

View File

@@ -14,7 +14,7 @@ include_once 'creole/CreoleTypes.php';
* ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive * ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive
* (i.e. if it's a text column type). * (i.e. if it's a text column type).
* *
* @package classes.model.map * @package workflow.classes.model.map
*/ */
class AppMessageMapBuilder { class AppMessageMapBuilder {

View File

@@ -14,7 +14,7 @@ include_once 'creole/CreoleTypes.php';
* ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive * ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive
* (i.e. if it's a text column type). * (i.e. if it's a text column type).
* *
* @package classes.model.map * @package workflow.classes.model.map
*/ */
class AppOwnerMapBuilder { class AppOwnerMapBuilder {

View File

@@ -14,7 +14,7 @@ include_once 'creole/CreoleTypes.php';
* ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive * ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive
* (i.e. if it's a text column type). * (i.e. if it's a text column type).
* *
* @package classes.model.map * @package workflow.classes.model.map
*/ */
class AppThreadMapBuilder { class AppThreadMapBuilder {

View File

@@ -14,7 +14,7 @@ include_once 'creole/CreoleTypes.php';
* ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive * ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive
* (i.e. if it's a text column type). * (i.e. if it's a text column type).
* *
* @package classes.model.map * @package workflow.classes.model.map
*/ */
class ApplicationMapBuilder { class ApplicationMapBuilder {

View File

@@ -14,7 +14,7 @@ include_once 'creole/CreoleTypes.php';
* ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive * ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive
* (i.e. if it's a text column type). * (i.e. if it's a text column type).
* *
* @package classes.model.map * @package workflow.classes.model.map
*/ */
class CalendarAssignmentsMapBuilder { class CalendarAssignmentsMapBuilder {

View File

@@ -14,7 +14,7 @@ include_once 'creole/CreoleTypes.php';
* ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive * ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive
* (i.e. if it's a text column type). * (i.e. if it's a text column type).
* *
* @package classes.model.map * @package workflow.classes.model.map
*/ */
class CalendarBusinessHoursMapBuilder { class CalendarBusinessHoursMapBuilder {

View File

@@ -14,7 +14,7 @@ include_once 'creole/CreoleTypes.php';
* ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive * ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive
* (i.e. if it's a text column type). * (i.e. if it's a text column type).
* *
* @package classes.model.map * @package workflow.classes.model.map
*/ */
class CalendarDefinitionMapBuilder { class CalendarDefinitionMapBuilder {

View File

@@ -14,7 +14,7 @@ include_once 'creole/CreoleTypes.php';
* ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive * ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive
* (i.e. if it's a text column type). * (i.e. if it's a text column type).
* *
* @package classes.model.map * @package workflow.classes.model.map
*/ */
class CalendarHolidaysMapBuilder { class CalendarHolidaysMapBuilder {

View File

@@ -14,7 +14,7 @@ include_once 'creole/CreoleTypes.php';
* ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive * ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive
* (i.e. if it's a text column type). * (i.e. if it's a text column type).
* *
* @package classes.model.map * @package workflow.classes.model.map
*/ */
class CaseSchedulerMapBuilder { class CaseSchedulerMapBuilder {

View File

@@ -14,7 +14,7 @@ include_once 'creole/CreoleTypes.php';
* ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive * ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive
* (i.e. if it's a text column type). * (i.e. if it's a text column type).
* *
* @package classes.model.map * @package workflow.classes.model.map
*/ */
class CaseTrackerMapBuilder { class CaseTrackerMapBuilder {

View File

@@ -14,7 +14,7 @@ include_once 'creole/CreoleTypes.php';
* ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive * ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive
* (i.e. if it's a text column type). * (i.e. if it's a text column type).
* *
* @package classes.model.map * @package workflow.classes.model.map
*/ */
class CaseTrackerObjectMapBuilder { class CaseTrackerObjectMapBuilder {

View File

@@ -14,7 +14,7 @@ include_once 'creole/CreoleTypes.php';
* ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive * ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive
* (i.e. if it's a text column type). * (i.e. if it's a text column type).
* *
* @package classes.model.map * @package workflow.classes.model.map
*/ */
class ConfigurationMapBuilder { class ConfigurationMapBuilder {

View File

@@ -14,7 +14,7 @@ include_once 'creole/CreoleTypes.php';
* ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive * ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive
* (i.e. if it's a text column type). * (i.e. if it's a text column type).
* *
* @package classes.model.map * @package workflow.classes.model.map
*/ */
class ContentMapBuilder { class ContentMapBuilder {

View File

@@ -14,7 +14,7 @@ include_once 'creole/CreoleTypes.php';
* ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive * ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive
* (i.e. if it's a text column type). * (i.e. if it's a text column type).
* *
* @package classes.model.map * @package workflow.classes.model.map
*/ */
class DbSourceMapBuilder { class DbSourceMapBuilder {

View File

@@ -14,7 +14,7 @@ include_once 'creole/CreoleTypes.php';
* ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive * ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive
* (i.e. if it's a text column type). * (i.e. if it's a text column type).
* *
* @package classes.model.map * @package workflow.classes.model.map
*/ */
class DepartmentMapBuilder { class DepartmentMapBuilder {

View File

@@ -14,7 +14,7 @@ include_once 'creole/CreoleTypes.php';
* ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive * ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive
* (i.e. if it's a text column type). * (i.e. if it's a text column type).
* *
* @package classes.model.map * @package workflow.classes.model.map
*/ */
class DimTimeCompleteMapBuilder { class DimTimeCompleteMapBuilder {

View File

@@ -14,7 +14,7 @@ include_once 'creole/CreoleTypes.php';
* ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive * ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive
* (i.e. if it's a text column type). * (i.e. if it's a text column type).
* *
* @package classes.model.map * @package workflow.classes.model.map
*/ */
class DimTimeDelegateMapBuilder { class DimTimeDelegateMapBuilder {

View File

@@ -14,7 +14,7 @@ include_once 'creole/CreoleTypes.php';
* ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive * ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive
* (i.e. if it's a text column type). * (i.e. if it's a text column type).
* *
* @package classes.model.map * @package workflow.classes.model.map
*/ */
class DynaformMapBuilder { class DynaformMapBuilder {

View File

@@ -14,7 +14,7 @@ include_once 'creole/CreoleTypes.php';
* ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive * ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive
* (i.e. if it's a text column type). * (i.e. if it's a text column type).
* *
* @package classes.model.map * @package workflow.classes.model.map
*/ */
class EventMapBuilder { class EventMapBuilder {

View File

@@ -14,7 +14,7 @@ include_once 'creole/CreoleTypes.php';
* ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive * ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive
* (i.e. if it's a text column type). * (i.e. if it's a text column type).
* *
* @package classes.model.map * @package workflow.classes.model.map
*/ */
class FieldConditionMapBuilder { class FieldConditionMapBuilder {

View File

@@ -14,7 +14,7 @@ include_once 'creole/CreoleTypes.php';
* ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive * ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive
* (i.e. if it's a text column type). * (i.e. if it's a text column type).
* *
* @package classes.model.map * @package workflow.classes.model.map
*/ */
class FieldsMapBuilder { class FieldsMapBuilder {

View File

@@ -14,7 +14,7 @@ include_once 'creole/CreoleTypes.php';
* ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive * ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive
* (i.e. if it's a text column type). * (i.e. if it's a text column type).
* *
* @package classes.model.map * @package workflow.classes.model.map
*/ */
class GatewayMapBuilder { class GatewayMapBuilder {

View File

@@ -14,7 +14,7 @@ include_once 'creole/CreoleTypes.php';
* ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive * ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive
* (i.e. if it's a text column type). * (i.e. if it's a text column type).
* *
* @package classes.model.map * @package workflow.classes.model.map
*/ */
class GroupUserMapBuilder { class GroupUserMapBuilder {

View File

@@ -14,7 +14,7 @@ include_once 'creole/CreoleTypes.php';
* ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive * ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive
* (i.e. if it's a text column type). * (i.e. if it's a text column type).
* *
* @package classes.model.map * @package workflow.classes.model.map
*/ */
class GroupwfMapBuilder { class GroupwfMapBuilder {

View File

@@ -14,7 +14,7 @@ include_once 'creole/CreoleTypes.php';
* ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive * ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive
* (i.e. if it's a text column type). * (i.e. if it's a text column type).
* *
* @package classes.model.map * @package workflow.classes.model.map
*/ */
class HolidayMapBuilder { class HolidayMapBuilder {

View File

@@ -14,7 +14,7 @@ include_once 'creole/CreoleTypes.php';
* ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive * ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive
* (i.e. if it's a text column type). * (i.e. if it's a text column type).
* *
* @package classes.model.map * @package workflow.classes.model.map
*/ */
class InputDocumentMapBuilder { class InputDocumentMapBuilder {

View File

@@ -14,7 +14,7 @@ include_once 'creole/CreoleTypes.php';
* ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive * ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive
* (i.e. if it's a text column type). * (i.e. if it's a text column type).
* *
* @package classes.model.map * @package workflow.classes.model.map
*/ */
class IsoCountryMapBuilder { class IsoCountryMapBuilder {

View File

@@ -14,7 +14,7 @@ include_once 'creole/CreoleTypes.php';
* ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive * ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive
* (i.e. if it's a text column type). * (i.e. if it's a text column type).
* *
* @package classes.model.map * @package workflow.classes.model.map
*/ */
class IsoLocationMapBuilder { class IsoLocationMapBuilder {

View File

@@ -14,7 +14,7 @@ include_once 'creole/CreoleTypes.php';
* ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive * ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive
* (i.e. if it's a text column type). * (i.e. if it's a text column type).
* *
* @package classes.model.map * @package workflow.classes.model.map
*/ */
class IsoSubdivisionMapBuilder { class IsoSubdivisionMapBuilder {

View File

@@ -14,7 +14,7 @@ include_once 'creole/CreoleTypes.php';
* ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive * ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive
* (i.e. if it's a text column type). * (i.e. if it's a text column type).
* *
* @package classes.model.map * @package workflow.classes.model.map
*/ */
class LanguageMapBuilder { class LanguageMapBuilder {

View File

@@ -14,7 +14,7 @@ include_once 'creole/CreoleTypes.php';
* ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive * ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive
* (i.e. if it's a text column type). * (i.e. if it's a text column type).
* *
* @package classes.model.map * @package workflow.classes.model.map
*/ */
class LexicoMapBuilder { class LexicoMapBuilder {

View File

@@ -14,7 +14,7 @@ include_once 'creole/CreoleTypes.php';
* ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive * ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive
* (i.e. if it's a text column type). * (i.e. if it's a text column type).
* *
* @package classes.model.map * @package workflow.classes.model.map
*/ */
class LogCasesSchedulerMapBuilder { class LogCasesSchedulerMapBuilder {

View File

@@ -14,7 +14,7 @@ include_once 'creole/CreoleTypes.php';
* ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive * ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive
* (i.e. if it's a text column type). * (i.e. if it's a text column type).
* *
* @package classes.model.map * @package workflow.classes.model.map
*/ */
class LoginLogMapBuilder { class LoginLogMapBuilder {

View File

@@ -14,7 +14,7 @@ include_once 'creole/CreoleTypes.php';
* ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive * ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive
* (i.e. if it's a text column type). * (i.e. if it's a text column type).
* *
* @package classes.model.map * @package workflow.classes.model.map
*/ */
class ObjectPermissionMapBuilder { class ObjectPermissionMapBuilder {

View File

@@ -14,7 +14,7 @@ include_once 'creole/CreoleTypes.php';
* ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive * ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive
* (i.e. if it's a text column type). * (i.e. if it's a text column type).
* *
* @package classes.model.map * @package workflow.classes.model.map
*/ */
class OutputDocumentMapBuilder { class OutputDocumentMapBuilder {

View File

@@ -14,7 +14,7 @@ include_once 'creole/CreoleTypes.php';
* ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive * ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive
* (i.e. if it's a text column type). * (i.e. if it's a text column type).
* *
* @package classes.model.map * @package workflow.classes.model.map
*/ */
class ProcessCategoryMapBuilder { class ProcessCategoryMapBuilder {

View File

@@ -14,7 +14,7 @@ include_once 'creole/CreoleTypes.php';
* ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive * ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive
* (i.e. if it's a text column type). * (i.e. if it's a text column type).
* *
* @package classes.model.map * @package workflow.classes.model.map
*/ */
class ProcessMapBuilder { class ProcessMapBuilder {

View File

@@ -14,7 +14,7 @@ include_once 'creole/CreoleTypes.php';
* ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive * ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive
* (i.e. if it's a text column type). * (i.e. if it's a text column type).
* *
* @package classes.model.map * @package workflow.classes.model.map
*/ */
class ProcessOwnerMapBuilder { class ProcessOwnerMapBuilder {

View File

@@ -14,7 +14,7 @@ include_once 'creole/CreoleTypes.php';
* ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive * ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive
* (i.e. if it's a text column type). * (i.e. if it's a text column type).
* *
* @package classes.model.map * @package workflow.classes.model.map
*/ */
class ProcessUserMapBuilder { class ProcessUserMapBuilder {

View File

@@ -14,7 +14,7 @@ include_once 'creole/CreoleTypes.php';
* ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive * ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive
* (i.e. if it's a text column type). * (i.e. if it's a text column type).
* *
* @package classes.model.map * @package workflow.classes.model.map
*/ */
class ReportTableMapBuilder { class ReportTableMapBuilder {

View File

@@ -14,7 +14,7 @@ include_once 'creole/CreoleTypes.php';
* ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive * ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive
* (i.e. if it's a text column type). * (i.e. if it's a text column type).
* *
* @package classes.model.map * @package workflow.classes.model.map
*/ */
class ReportVarMapBuilder { class ReportVarMapBuilder {

View File

@@ -14,7 +14,7 @@ include_once 'creole/CreoleTypes.php';
* ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive * ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive
* (i.e. if it's a text column type). * (i.e. if it's a text column type).
* *
* @package classes.model.map * @package workflow.classes.model.map
*/ */
class RouteMapBuilder { class RouteMapBuilder {

View File

@@ -14,7 +14,7 @@ include_once 'creole/CreoleTypes.php';
* ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive * ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive
* (i.e. if it's a text column type). * (i.e. if it's a text column type).
* *
* @package classes.model.map * @package workflow.classes.model.map
*/ */
class SessionMapBuilder { class SessionMapBuilder {

View File

@@ -14,7 +14,7 @@ include_once 'creole/CreoleTypes.php';
* ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive * ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive
* (i.e. if it's a text column type). * (i.e. if it's a text column type).
* *
* @package classes.model.map * @package workflow.classes.model.map
*/ */
class ShadowTableMapBuilder { class ShadowTableMapBuilder {

View File

@@ -14,7 +14,7 @@ include_once 'creole/CreoleTypes.php';
* ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive * ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive
* (i.e. if it's a text column type). * (i.e. if it's a text column type).
* *
* @package classes.model.map * @package workflow.classes.model.map
*/ */
class StageMapBuilder { class StageMapBuilder {

View File

@@ -14,7 +14,7 @@ include_once 'creole/CreoleTypes.php';
* ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive * ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive
* (i.e. if it's a text column type). * (i.e. if it's a text column type).
* *
* @package classes.model.map * @package workflow.classes.model.map
*/ */
class StepMapBuilder { class StepMapBuilder {

View File

@@ -14,7 +14,7 @@ include_once 'creole/CreoleTypes.php';
* ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive * ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive
* (i.e. if it's a text column type). * (i.e. if it's a text column type).
* *
* @package classes.model.map * @package workflow.classes.model.map
*/ */
class StepSupervisorMapBuilder { class StepSupervisorMapBuilder {

View File

@@ -14,7 +14,7 @@ include_once 'creole/CreoleTypes.php';
* ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive * ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive
* (i.e. if it's a text column type). * (i.e. if it's a text column type).
* *
* @package classes.model.map * @package workflow.classes.model.map
*/ */
class StepTriggerMapBuilder { class StepTriggerMapBuilder {

View File

@@ -14,7 +14,7 @@ include_once 'creole/CreoleTypes.php';
* ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive * ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive
* (i.e. if it's a text column type). * (i.e. if it's a text column type).
* *
* @package classes.model.map * @package workflow.classes.model.map
*/ */
class SubApplicationMapBuilder { class SubApplicationMapBuilder {

View File

@@ -14,7 +14,7 @@ include_once 'creole/CreoleTypes.php';
* ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive * ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive
* (i.e. if it's a text column type). * (i.e. if it's a text column type).
* *
* @package classes.model.map * @package workflow.classes.model.map
*/ */
class SubProcessMapBuilder { class SubProcessMapBuilder {

View File

@@ -14,7 +14,7 @@ include_once 'creole/CreoleTypes.php';
* ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive * ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive
* (i.e. if it's a text column type). * (i.e. if it's a text column type).
* *
* @package classes.model.map * @package workflow.classes.model.map
*/ */
class SwimlanesElementsMapBuilder { class SwimlanesElementsMapBuilder {

View File

@@ -14,7 +14,7 @@ include_once 'creole/CreoleTypes.php';
* ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive * ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive
* (i.e. if it's a text column type). * (i.e. if it's a text column type).
* *
* @package classes.model.map * @package workflow.classes.model.map
*/ */
class TaskMapBuilder { class TaskMapBuilder {

View File

@@ -14,7 +14,7 @@ include_once 'creole/CreoleTypes.php';
* ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive * ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive
* (i.e. if it's a text column type). * (i.e. if it's a text column type).
* *
* @package classes.model.map * @package workflow.classes.model.map
*/ */
class TaskUserMapBuilder { class TaskUserMapBuilder {

View File

@@ -14,7 +14,7 @@ include_once 'creole/CreoleTypes.php';
* ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive * ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive
* (i.e. if it's a text column type). * (i.e. if it's a text column type).
* *
* @package classes.model.map * @package workflow.classes.model.map
*/ */
class TranslationMapBuilder { class TranslationMapBuilder {
@@ -72,6 +72,8 @@ class TranslationMapBuilder {
$tMap->addColumn('TRN_VALUE', 'TrnValue', 'string', CreoleTypes::VARCHAR, true, 200); $tMap->addColumn('TRN_VALUE', 'TrnValue', 'string', CreoleTypes::VARCHAR, true, 200);
$tMap->addColumn('TRN_UPDATE_DATE', 'TrnUpdateDate', 'int', CreoleTypes::DATE, false, null);
$tMap->addValidator('TRN_CATEGORY', 'maxLength', 'propel.validator.MaxLengthValidator', '100', 'Category can be no larger than 100 in size'); $tMap->addValidator('TRN_CATEGORY', 'maxLength', 'propel.validator.MaxLengthValidator', '100', 'Category can be no larger than 100 in size');
$tMap->addValidator('TRN_CATEGORY', 'required', 'propel.validator.RequiredValidator', '', 'Category is required.'); $tMap->addValidator('TRN_CATEGORY', 'required', 'propel.validator.RequiredValidator', '', 'Category is required.');

View File

@@ -14,7 +14,7 @@ include_once 'creole/CreoleTypes.php';
* ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive * ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive
* (i.e. if it's a text column type). * (i.e. if it's a text column type).
* *
* @package classes.model.map * @package workflow.classes.model.map
*/ */
class TriggersMapBuilder { class TriggersMapBuilder {

View File

@@ -14,7 +14,7 @@ include_once 'creole/CreoleTypes.php';
* ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive * ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive
* (i.e. if it's a text column type). * (i.e. if it's a text column type).
* *
* @package classes.model.map * @package workflow.classes.model.map
*/ */
class UsersMapBuilder { class UsersMapBuilder {

View File

@@ -14,7 +14,7 @@ include_once 'creole/CreoleTypes.php';
* ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive * ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive
* (i.e. if it's a text column type). * (i.e. if it's a text column type).
* *
* @package classes.model.map * @package workflow.classes.model.map
*/ */
class UsersPropertiesMapBuilder { class UsersPropertiesMapBuilder {

View File

@@ -1,18 +1,19 @@
<?php <?php
/**
* BaseAdditionalTables.php
* @package workflow.classes.model.om
*/
require_once 'propel/om/BaseObject.php'; require_once 'propel/om/BaseObject.php';
require_once 'propel/om/Persistent.php'; require_once 'propel/om/Persistent.php';
include_once 'propel/util/Criteria.php'; include_once 'propel/util/Criteria.php';
include_once 'classes/model/AdditionalTablesPeer.php'; include_once 'classes/model/AdditionalTablesPeer.php';
/** /**
* Base class that represents a row from the 'ADDITIONAL_TABLES' table. * Base class that represents a row from the 'ADDITIONAL_TABLES' table.
* *
*
*
* @package workflow.classes.model.om * @package workflow.classes.model.om
*/ */
abstract class BaseAdditionalTables extends BaseObject implements Persistent { abstract class BaseAdditionalTables extends BaseObject implements Persistent {

View File

@@ -1,8 +1,4 @@
<?php <?php
/**
* BaseAdditionalTablesPeer.php
* @package workflow.classes.model.om
*/
require_once 'propel/util/BasePeer.php'; require_once 'propel/util/BasePeer.php';
// The object class -- needed for instanceof checks in this class. // The object class -- needed for instanceof checks in this class.

View File

@@ -1,18 +1,19 @@
<?php <?php
/**
* BaseAppCacheView.php
* @package workflow.classes.model.om
*/
require_once 'propel/om/BaseObject.php'; require_once 'propel/om/BaseObject.php';
require_once 'propel/om/Persistent.php'; require_once 'propel/om/Persistent.php';
include_once 'propel/util/Criteria.php'; include_once 'propel/util/Criteria.php';
include_once 'classes/model/AppCacheViewPeer.php'; include_once 'classes/model/AppCacheViewPeer.php';
/** /**
* Base class that represents a row from the 'APP_CACHE_VIEW' table. * Base class that represents a row from the 'APP_CACHE_VIEW' table.
* *
*
*
* @package workflow.classes.model.om * @package workflow.classes.model.om
*/ */
abstract class BaseAppCacheView extends BaseObject implements Persistent { abstract class BaseAppCacheView extends BaseObject implements Persistent {

View File

@@ -1,8 +1,4 @@
<?php <?php
/**
* BaseAppCacheViewPeer.php
* @package workflow.classes.model.om
*/
require_once 'propel/util/BasePeer.php'; require_once 'propel/util/BasePeer.php';
// The object class -- needed for instanceof checks in this class. // The object class -- needed for instanceof checks in this class.

View File

@@ -1,8 +1,4 @@
<?php <?php
/**
* BaseAppDelay.php
* @package workflow.classes.model.om
*/
require_once 'propel/om/BaseObject.php'; require_once 'propel/om/BaseObject.php';

View File

@@ -1,8 +1,4 @@
<?php <?php
/**
* BaseAppDelayPeer.php
* @package workflow.classes.model.om
*/
require_once 'propel/util/BasePeer.php'; require_once 'propel/util/BasePeer.php';
// The object class -- needed for instanceof checks in this class. // The object class -- needed for instanceof checks in this class.

View File

@@ -1,13 +1,12 @@
<?php <?php
/**
* BaseAppDelegation
* @package workflow.classes.model.om
*/
require_once 'propel/om/BaseObject.php'; require_once 'propel/om/BaseObject.php';
require_once 'propel/om/Persistent.php'; require_once 'propel/om/Persistent.php';
include_once 'propel/util/Criteria.php'; include_once 'propel/util/Criteria.php';
include_once 'classes/model/AppDelegationPeer.php'; include_once 'classes/model/AppDelegationPeer.php';
/** /**

View File

@@ -1,8 +1,4 @@
<?php <?php
/**
* BaseAppDelegationPeer.php
* @package workflow.classes.model.om
*/
require_once 'propel/util/BasePeer.php'; require_once 'propel/util/BasePeer.php';
// The object class -- needed for instanceof checks in this class. // The object class -- needed for instanceof checks in this class.

View File

@@ -1,13 +1,12 @@
<?php <?php
/**
* BaseAppDocument.php
* @package workflow.classes.model.om
*/
require_once 'propel/om/BaseObject.php'; require_once 'propel/om/BaseObject.php';
require_once 'propel/om/Persistent.php'; require_once 'propel/om/Persistent.php';
include_once 'propel/util/Criteria.php'; include_once 'propel/util/Criteria.php';
include_once 'classes/model/AppDocumentPeer.php'; include_once 'classes/model/AppDocumentPeer.php';
/** /**

View File

@@ -1,8 +1,4 @@
<?php <?php
/**
* BaseAppDocumentPeer.php
* @package workflow.classes.model.om
*/
require_once 'propel/util/BasePeer.php'; require_once 'propel/util/BasePeer.php';
// The object class -- needed for instanceof checks in this class. // The object class -- needed for instanceof checks in this class.

View File

@@ -1,13 +1,12 @@
<?php <?php
/**
* BaseAppEvent.php
* @package workflow.classes.model.om
*/
require_once 'propel/om/BaseObject.php'; require_once 'propel/om/BaseObject.php';
require_once 'propel/om/Persistent.php'; require_once 'propel/om/Persistent.php';
include_once 'propel/util/Criteria.php'; include_once 'propel/util/Criteria.php';
include_once 'classes/model/AppEventPeer.php'; include_once 'classes/model/AppEventPeer.php';
/** /**

View File

@@ -1,8 +1,4 @@
<?php <?php
/**
* BaseAppEventPeer.php
* @package workflow.classes.model.om
*/
require_once 'propel/util/BasePeer.php'; require_once 'propel/util/BasePeer.php';
// The object class -- needed for instanceof checks in this class. // The object class -- needed for instanceof checks in this class.

View File

@@ -1,13 +1,12 @@
<?php <?php
/**
* BaseAppFolder.php
* @package workflow.classes.model.om
*/
require_once 'propel/om/BaseObject.php'; require_once 'propel/om/BaseObject.php';
require_once 'propel/om/Persistent.php'; require_once 'propel/om/Persistent.php';
include_once 'propel/util/Criteria.php'; include_once 'propel/util/Criteria.php';
include_once 'classes/model/AppFolderPeer.php'; include_once 'classes/model/AppFolderPeer.php';
/** /**

View File

@@ -1,8 +1,4 @@
<?php <?php
/**
* BaseAppFolderPeer.php
* @package workflow.classes.model.om
*/
require_once 'propel/util/BasePeer.php'; require_once 'propel/util/BasePeer.php';
// The object class -- needed for instanceof checks in this class. // The object class -- needed for instanceof checks in this class.

View File

@@ -1,13 +1,12 @@
<?php <?php
/**
* BaseAppHistory.php
* @package workflow.classes.model.om
*/
require_once 'propel/om/BaseObject.php'; require_once 'propel/om/BaseObject.php';
require_once 'propel/om/Persistent.php'; require_once 'propel/om/Persistent.php';
include_once 'propel/util/Criteria.php'; include_once 'propel/util/Criteria.php';
include_once 'classes/model/AppHistoryPeer.php'; include_once 'classes/model/AppHistoryPeer.php';
/** /**

View File

@@ -1,8 +1,4 @@
<?php <?php
/**
* BaseAppHistoryPeer.php
* @package workflow.classes.model.om
*/
require_once 'propel/util/BasePeer.php'; require_once 'propel/util/BasePeer.php';
// The object class -- needed for instanceof checks in this class. // The object class -- needed for instanceof checks in this class.

View File

@@ -1,13 +1,12 @@
<?php <?php
/**
* BaseAppMessage.php
* @package workflow.classes.model.om
*/
require_once 'propel/om/BaseObject.php'; require_once 'propel/om/BaseObject.php';
require_once 'propel/om/Persistent.php'; require_once 'propel/om/Persistent.php';
include_once 'propel/util/Criteria.php'; include_once 'propel/util/Criteria.php';
include_once 'classes/model/AppMessagePeer.php'; include_once 'classes/model/AppMessagePeer.php';
/** /**

View File

@@ -1,8 +1,4 @@
<?php <?php
/**
* BaseAppMessagePeer.php
* @package workflow.classes.model.om
*/
require_once 'propel/util/BasePeer.php'; require_once 'propel/util/BasePeer.php';
// The object class -- needed for instanceof checks in this class. // The object class -- needed for instanceof checks in this class.

View File

@@ -1,13 +1,12 @@
<?php <?php
/**
* BaseAppOwner.php
* @package workflow.classes.model.om
*/
require_once 'propel/om/BaseObject.php'; require_once 'propel/om/BaseObject.php';
require_once 'propel/om/Persistent.php'; require_once 'propel/om/Persistent.php';
include_once 'propel/util/Criteria.php'; include_once 'propel/util/Criteria.php';
include_once 'classes/model/AppOwnerPeer.php'; include_once 'classes/model/AppOwnerPeer.php';
/** /**

View File

@@ -1,8 +1,4 @@
<?php <?php
/**
* BaseAppOwnerPeer.php
* @package workflow.classes.model.om
*/
require_once 'propel/util/BasePeer.php'; require_once 'propel/util/BasePeer.php';
// The object class -- needed for instanceof checks in this class. // The object class -- needed for instanceof checks in this class.

View File

@@ -1,13 +1,12 @@
<?php <?php
/**
* BaseAppThread.php
* @package workflow.classes.model.om
*/
require_once 'propel/om/BaseObject.php'; require_once 'propel/om/BaseObject.php';
require_once 'propel/om/Persistent.php'; require_once 'propel/om/Persistent.php';
include_once 'propel/util/Criteria.php'; include_once 'propel/util/Criteria.php';
include_once 'classes/model/AppThreadPeer.php'; include_once 'classes/model/AppThreadPeer.php';
/** /**

View File

@@ -1,8 +1,4 @@
<?php <?php
/**
* BaseAppThreadPeer.php
* @package workflow.classes.model.om
*/
require_once 'propel/util/BasePeer.php'; require_once 'propel/util/BasePeer.php';
// The object class -- needed for instanceof checks in this class. // The object class -- needed for instanceof checks in this class.

View File

@@ -1,13 +1,12 @@
<?php <?php
/**
* BaseApplication.php
* @package workflow.classes.model.om
*/
require_once 'propel/om/BaseObject.php'; require_once 'propel/om/BaseObject.php';
require_once 'propel/om/Persistent.php'; require_once 'propel/om/Persistent.php';
include_once 'propel/util/Criteria.php'; include_once 'propel/util/Criteria.php';
include_once 'classes/model/ApplicationPeer.php'; include_once 'classes/model/ApplicationPeer.php';
/** /**

View File

@@ -1,8 +1,4 @@
<?php <?php
/**
* BaseApplicationPeer.php
* @package workflow.classes.model.om
*/
require_once 'propel/util/BasePeer.php'; require_once 'propel/util/BasePeer.php';
// The object class -- needed for instanceof checks in this class. // The object class -- needed for instanceof checks in this class.

View File

@@ -1,13 +1,12 @@
<?php <?php
/**
* BaseCalendarAssignments.php
* @package workflow.classes.model.om
*/
require_once 'propel/om/BaseObject.php'; require_once 'propel/om/BaseObject.php';
require_once 'propel/om/Persistent.php'; require_once 'propel/om/Persistent.php';
include_once 'propel/util/Criteria.php'; include_once 'propel/util/Criteria.php';
include_once 'classes/model/CalendarAssignmentsPeer.php'; include_once 'classes/model/CalendarAssignmentsPeer.php';
/** /**

View File

@@ -1,8 +1,4 @@
<?php <?php
/**
* BaseCalendarAssignmentsPeer.php
* @package workflow.classes.model.om
*/
require_once 'propel/util/BasePeer.php'; require_once 'propel/util/BasePeer.php';
// The object class -- needed for instanceof checks in this class. // The object class -- needed for instanceof checks in this class.

View File

@@ -1,8 +1,4 @@
<?php <?php
/**
* BaseCalendarBusinessHours.php
* @package workflow.classes.model.om
*/
require_once 'propel/om/BaseObject.php'; require_once 'propel/om/BaseObject.php';

View File

@@ -1,8 +1,4 @@
<?php <?php
/**
* BaseCalendarBusinessHoursPeer.php
* @package workflow.classes.model.om
*/
require_once 'propel/util/BasePeer.php'; require_once 'propel/util/BasePeer.php';
// The object class -- needed for instanceof checks in this class. // The object class -- needed for instanceof checks in this class.

View File

@@ -1,8 +1,4 @@
<?php <?php
/**
* BaseCalendarDefinition.php
* @package workflow.classes.model.om
*/
require_once 'propel/om/BaseObject.php'; require_once 'propel/om/BaseObject.php';

View File

@@ -1,8 +1,4 @@
<?php <?php
/**
* BaseCalendarDefinitionPeer.php
* @package workflow.classes.model.om
*/
require_once 'propel/util/BasePeer.php'; require_once 'propel/util/BasePeer.php';
// The object class -- needed for instanceof checks in this class. // The object class -- needed for instanceof checks in this class.

View File

@@ -1,13 +1,12 @@
<?php <?php
/**
* BaseCalendarHolidays.php
* @package workflow.classes.model.om
*/
require_once 'propel/om/BaseObject.php'; require_once 'propel/om/BaseObject.php';
require_once 'propel/om/Persistent.php'; require_once 'propel/om/Persistent.php';
include_once 'propel/util/Criteria.php'; include_once 'propel/util/Criteria.php';
include_once 'classes/model/CalendarHolidaysPeer.php'; include_once 'classes/model/CalendarHolidaysPeer.php';
/** /**

View File

@@ -1,8 +1,4 @@
<?php <?php
/**
* BaseCalendarHolidaysPeer.php
* @package workflow.classes.model.om
*/
require_once 'propel/util/BasePeer.php'; require_once 'propel/util/BasePeer.php';
// The object class -- needed for instanceof checks in this class. // The object class -- needed for instanceof checks in this class.

View File

@@ -1,13 +1,12 @@
<?php <?php
/**
* BaseCaseSchedular.php
* @package workflow.classes.model.om
*/
require_once 'propel/om/BaseObject.php'; require_once 'propel/om/BaseObject.php';
require_once 'propel/om/Persistent.php'; require_once 'propel/om/Persistent.php';
include_once 'propel/util/Criteria.php'; include_once 'propel/util/Criteria.php';
include_once 'classes/model/CaseSchedulerPeer.php'; include_once 'classes/model/CaseSchedulerPeer.php';
/** /**

View File

@@ -1,8 +1,4 @@
<?php <?php
/**
* BaseCaseSchedulerPeer.php
* @package workflow.classes.model.om
*/
require_once 'propel/util/BasePeer.php'; require_once 'propel/util/BasePeer.php';
// The object class -- needed for instanceof checks in this class. // The object class -- needed for instanceof checks in this class.

Some files were not shown because too many files have changed in this diff Show More