changes to improve the developers translations edit tool
This commit is contained in:
@@ -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.
|
||||||
|
|||||||
@@ -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 {
|
||||||
|
|
||||||
|
|||||||
@@ -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 {
|
||||||
|
|
||||||
|
|||||||
@@ -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 {
|
||||||
|
|
||||||
|
|||||||
@@ -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 {
|
||||||
|
|
||||||
|
|||||||
@@ -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 {
|
||||||
|
|
||||||
|
|||||||
@@ -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 {
|
||||||
|
|
||||||
|
|||||||
@@ -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 {
|
||||||
|
|
||||||
|
|||||||
@@ -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 {
|
||||||
|
|
||||||
|
|||||||
@@ -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 {
|
||||||
|
|
||||||
|
|||||||
@@ -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 {
|
||||||
|
|
||||||
|
|||||||
@@ -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 {
|
||||||
|
|
||||||
|
|||||||
@@ -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 {
|
||||||
|
|
||||||
|
|||||||
@@ -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 {
|
||||||
|
|
||||||
|
|||||||
@@ -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 {
|
||||||
|
|
||||||
|
|||||||
@@ -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 {
|
||||||
|
|
||||||
|
|||||||
@@ -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 {
|
||||||
|
|
||||||
|
|||||||
@@ -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 {
|
||||||
|
|
||||||
|
|||||||
@@ -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 {
|
||||||
|
|
||||||
|
|||||||
@@ -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 {
|
||||||
|
|
||||||
|
|||||||
@@ -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 {
|
||||||
|
|
||||||
|
|||||||
@@ -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 {
|
||||||
|
|
||||||
|
|||||||
@@ -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 {
|
||||||
|
|
||||||
|
|||||||
@@ -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 {
|
||||||
|
|
||||||
|
|||||||
@@ -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 {
|
||||||
|
|
||||||
|
|||||||
@@ -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 {
|
||||||
|
|
||||||
|
|||||||
@@ -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 {
|
||||||
|
|
||||||
|
|||||||
@@ -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 {
|
||||||
|
|
||||||
|
|||||||
@@ -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 {
|
||||||
|
|
||||||
|
|||||||
@@ -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 {
|
||||||
|
|
||||||
|
|||||||
@@ -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 {
|
||||||
|
|
||||||
|
|||||||
@@ -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 {
|
||||||
|
|
||||||
|
|||||||
@@ -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 {
|
||||||
|
|
||||||
|
|||||||
@@ -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 {
|
||||||
|
|
||||||
|
|||||||
@@ -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 {
|
||||||
|
|
||||||
|
|||||||
@@ -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 {
|
||||||
|
|
||||||
|
|||||||
@@ -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 {
|
||||||
|
|
||||||
|
|||||||
@@ -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 {
|
||||||
|
|
||||||
|
|||||||
@@ -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 {
|
||||||
|
|
||||||
|
|||||||
@@ -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 {
|
||||||
|
|
||||||
|
|||||||
@@ -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 {
|
||||||
|
|
||||||
|
|||||||
@@ -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 {
|
||||||
|
|
||||||
|
|||||||
@@ -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 {
|
||||||
|
|
||||||
|
|||||||
@@ -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 {
|
||||||
|
|
||||||
|
|||||||
@@ -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 {
|
||||||
|
|
||||||
|
|||||||
@@ -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 {
|
||||||
|
|
||||||
|
|||||||
@@ -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 {
|
||||||
|
|
||||||
|
|||||||
@@ -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 {
|
||||||
|
|
||||||
|
|||||||
@@ -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 {
|
||||||
|
|
||||||
|
|||||||
@@ -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 {
|
||||||
|
|
||||||
|
|||||||
@@ -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 {
|
||||||
|
|
||||||
|
|||||||
@@ -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 {
|
||||||
|
|
||||||
|
|||||||
@@ -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 {
|
||||||
|
|
||||||
|
|||||||
@@ -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 {
|
||||||
|
|
||||||
|
|||||||
@@ -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 {
|
||||||
|
|
||||||
|
|||||||
@@ -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 {
|
||||||
|
|
||||||
|
|||||||
@@ -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 {
|
||||||
|
|
||||||
|
|||||||
@@ -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 {
|
||||||
|
|
||||||
|
|||||||
@@ -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 {
|
||||||
|
|
||||||
|
|||||||
@@ -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 {
|
||||||
|
|
||||||
|
|||||||
@@ -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 {
|
||||||
|
|
||||||
|
|||||||
@@ -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 {
|
||||||
|
|
||||||
|
|||||||
@@ -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.');
|
||||||
|
|||||||
@@ -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 {
|
||||||
|
|
||||||
|
|||||||
@@ -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 {
|
||||||
|
|
||||||
|
|||||||
@@ -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 {
|
||||||
|
|
||||||
|
|||||||
@@ -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 {
|
||||||
|
|||||||
@@ -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.
|
||||||
|
|||||||
@@ -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 {
|
||||||
|
|||||||
@@ -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.
|
||||||
|
|||||||
@@ -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';
|
||||||
|
|
||||||
|
|||||||
@@ -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.
|
||||||
|
|||||||
@@ -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';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -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.
|
||||||
|
|||||||
@@ -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';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -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.
|
||||||
|
|||||||
@@ -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';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -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.
|
||||||
|
|||||||
@@ -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';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -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.
|
||||||
|
|||||||
@@ -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';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -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.
|
||||||
|
|||||||
@@ -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';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -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.
|
||||||
|
|||||||
@@ -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';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -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.
|
||||||
|
|||||||
@@ -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';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -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.
|
||||||
|
|||||||
@@ -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';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -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.
|
||||||
|
|||||||
@@ -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';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -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.
|
||||||
|
|||||||
@@ -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';
|
||||||
|
|
||||||
|
|||||||
@@ -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.
|
||||||
|
|||||||
@@ -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';
|
||||||
|
|
||||||
|
|||||||
@@ -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.
|
||||||
|
|||||||
@@ -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';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -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.
|
||||||
|
|||||||
@@ -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';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -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
Reference in New Issue
Block a user