Changes done for PhpDoc

This commit is contained in:
abraar
2011-01-31 14:14:55 +00:00
parent 0d4815d9c7
commit 50658fbe11
132 changed files with 545 additions and 207 deletions

View File

@@ -1,5 +1,8 @@
<?php <?php
/**
* AdditionalTables.php
* @package workflow.engine.classes.model
*/
require_once 'classes/model/om/BaseAdditionalTables.php'; require_once 'classes/model/om/BaseAdditionalTables.php';
@@ -12,8 +15,8 @@ require_once 'classes/model/om/BaseAdditionalTables.php';
* application requirements. This class will only be generated as * application requirements. This class will only be generated as
* long as it does not already exist in the output directory. * long as it does not already exist in the output directory.
* <juliocesar@colosa.com, julces2000@gmail.com> * <juliocesar@colosa.com, julces2000@gmail.com>
* /** *
* @package workflow.classes.model * @package workflow.engine.classes.model
*/ */
class AdditionalTables extends BaseAdditionalTables { class AdditionalTables extends BaseAdditionalTables {
private $aDef = array('mysql' => array('TEXT' => 'TEXT', private $aDef = array('mysql' => array('TEXT' => 'TEXT',
@@ -35,7 +38,10 @@ class AdditionalTables extends BaseAdditionalTables {
'FLOAT' => 'FLOAT', 'FLOAT' => 'FLOAT',
'DATE' => 'CHAR (19)') 'DATE' => 'CHAR (19)')
); );
/**
* Function load
* access public
*/
public function load($sUID, $bFields = false) { public function load($sUID, $bFields = false) {
try { try {
$oAdditionalTables = AdditionalTablesPeer::retrieveByPK($sUID); $oAdditionalTables = AdditionalTablesPeer::retrieveByPK($sUID);

View File

@@ -1,4 +1,8 @@
<?php <?php
/**
* AdditionalTablespeer.php
* @package workflow.engine.classes.model
*/
// include base peer class // include base peer class
require_once 'classes/model/om/BaseAdditionalTablesPeer.php'; require_once 'classes/model/om/BaseAdditionalTablesPeer.php';
@@ -15,8 +19,8 @@
* You should add additional methods to this class to meet the * You should add additional methods to this class to meet the
* application requirements. This class will only be generated as * application requirements. This class will only be generated as
* long as it does not already exist in the output directory. * long as it does not already exist in the output directory.
* /** *
* @package workflow.classes.model * @package workflow.engine.classes.model
*/ */
class AdditionalTablesPeer extends BaseAdditionalTablesPeer { class AdditionalTablesPeer extends BaseAdditionalTablesPeer {

View File

@@ -1,4 +1,8 @@
<?php <?php
/**
* AppCacheView.php
* @package workflow.engine.classes.model
*/
require_once 'classes/model/om/BaseAppCacheView.php'; require_once 'classes/model/om/BaseAppCacheView.php';
@@ -22,9 +26,9 @@ require_once 'classes/model/AdditionalTables.php';
/** /**
* @package workflow.classes.model * @package workflow.engine.classes.model
* @access public * @access public
**/ */
class AppCacheView extends BaseAppCacheView { class AppCacheView extends BaseAppCacheView {
var $confCasesList; var $confCasesList;
var $pathToAppCacheFiles; var $pathToAppCacheFiles;

View File

@@ -1,4 +1,8 @@
<?php <?php
/**
* AppCacheViewPeer.php
* @package workflow.engine.classes.model
*/
// include base peer class // include base peer class
require_once 'classes/model/om/BaseAppCacheViewPeer.php'; require_once 'classes/model/om/BaseAppCacheViewPeer.php';
@@ -16,7 +20,7 @@
* application requirements. This class will only be generated as * application requirements. This class will only be generated as
* long as it does not already exist in the output directory. * long as it does not already exist in the output directory.
* *
* @package workflow.classes.model * @package workflow.engine.classes.model
*/ */
class AppCacheViewPeer extends BaseAppCacheViewPeer { class AppCacheViewPeer extends BaseAppCacheViewPeer {

View File

@@ -1,4 +1,8 @@
<?php <?php
/**
* AppDelay.php
* @package workflow.engine.classes.model
*/
require_once 'classes/model/om/BaseAppDelay.php'; require_once 'classes/model/om/BaseAppDelay.php';
@@ -12,7 +16,7 @@ require_once 'classes/model/om/BaseAppDelay.php';
* application requirements. This class will only be generated as * application requirements. This class will only be generated as
* long as it does not already exist in the output directory. * long as it does not already exist in the output directory.
* /** * /**
* @package workflow.classes.model * @package workflow.engine.classes.model
*/ */
class AppDelay extends BaseAppDelay { class AppDelay extends BaseAppDelay {
/** /**

View File

@@ -1,4 +1,8 @@
<?php <?php
/**
* AppDelayPeer.php
* @package workflow.engine.classes.model
*/
// include base peer class // include base peer class
require_once 'classes/model/om/BaseAppDelayPeer.php'; require_once 'classes/model/om/BaseAppDelayPeer.php';
@@ -16,7 +20,7 @@
* application requirements. This class will only be generated as * application requirements. This class will only be generated as
* long as it does not already exist in the output directory. * long as it does not already exist in the output directory.
* *
* @package workflow.classes.model * @package workflow.engine.classes.model
*/ */
class AppDelayPeer extends BaseAppDelayPeer { class AppDelayPeer extends BaseAppDelayPeer {

View File

@@ -1,9 +1,10 @@
<?php <?php
/** /**
* AppDelegation.php * AppDelegation.php
* @package workflow.engine.classes.model
* *
* ProcessMaker Open Source Edition * ProcessMaker Open Source Edition
* Copyright (C) 2004 - 2008 Colosa Inc.23 * Copyright (C) 2004 - 2011 Colosa Inc.
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as * it under the terms of the GNU Affero General Public License as
@@ -37,8 +38,8 @@ G::LoadClass("dates");
* You should add additional methods to this class to meet the * You should add additional methods to this class to meet the
* application requirements. This class will only be generated as * application requirements. This class will only be generated as
* long as it does not already exist in the output directory. * long as it does not already exist in the output directory.
* /** *
* @package workflow.classes.model * @package workflow.engine.classes.model
*/ */
class AppDelegation extends BaseAppDelegation { class AppDelegation extends BaseAppDelegation {

View File

@@ -1,9 +1,10 @@
<?php <?php
/** /**
* AppDelegationPeer.php * AppDelegationPeer.php
* @package workflow.engine.classes.model
* *
* ProcessMaker Open Source Edition * ProcessMaker Open Source Edition
* Copyright (C) 2004 - 2008 Colosa Inc.23 * Copyright (C) 2004 - 2011 Colosa Inc.
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as * it under the terms of the GNU Affero General Public License as
@@ -39,7 +40,7 @@
* application requirements. This class will only be generated as * application requirements. This class will only be generated as
* long as it does not already exist in the output directory. * long as it does not already exist in the output directory.
* /** * /**
* @package workflow.classes.model * @package workflow.engine.classes.model
*/ */
class AppDelegationPeer extends BaseAppDelegationPeer { class AppDelegationPeer extends BaseAppDelegationPeer {

View File

@@ -1,9 +1,10 @@
<?php <?php
/** /**
* AppDocument.php * AppDocument.php
* @package workflow.engine.classes.model
* *
* ProcessMaker Open Source Edition * ProcessMaker Open Source Edition
* Copyright (C) 2004 - 2008 Colosa Inc.23 * Copyright (C) 2004 - 2011 Colosa Inc.
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as * it under the terms of the GNU Affero General Public License as
@@ -36,7 +37,7 @@ require_once 'classes/model/InputDocument.php';
* application requirements. This class will only be generated as * application requirements. This class will only be generated as
* long as it does not already exist in the output directory. * long as it does not already exist in the output directory.
* *
* @package workflow.classes.model * @package workflow.engine.classes.model
*/ */
class AppDocument extends BaseAppDocument { class AppDocument extends BaseAppDocument {

View File

@@ -1,9 +1,10 @@
<?php <?php
/** /**
* AppDocumentPeer.php * AppDocumentPeer.php
* @package workflow.engine.classes.model
* *
* ProcessMaker Open Source Edition * ProcessMaker Open Source Edition
* Copyright (C) 2004 - 2008 Colosa Inc.23 * Copyright (C) 2004 - 2011 Colosa Inc.
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as * it under the terms of the GNU Affero General Public License as
@@ -39,7 +40,7 @@
* application requirements. This class will only be generated as * application requirements. This class will only be generated as
* long as it does not already exist in the output directory. * long as it does not already exist in the output directory.
* *
* @package workflow.classes.model * @package workflow.engine.classes.model
*/ */
class AppDocumentPeer extends BaseAppDocumentPeer { class AppDocumentPeer extends BaseAppDocumentPeer {

View File

@@ -1,4 +1,8 @@
<?php <?php
/**
* AppEvent.php
* @package workflow.engine.classes.model
*/
require_once 'classes/model/om/BaseAppEvent.php'; require_once 'classes/model/om/BaseAppEvent.php';
@@ -12,7 +16,7 @@ require_once 'classes/model/om/BaseAppEvent.php';
* application requirements. This class will only be generated as * application requirements. This class will only be generated as
* long as it does not already exist in the output directory. * long as it does not already exist in the output directory.
* *
* @package workflow.classes.model * @package workflow.engine.classes.model
*/ */
class AppEvent extends BaseAppEvent { class AppEvent extends BaseAppEvent {
public function load($sApplicationUID, $iDelegation) { public function load($sApplicationUID, $iDelegation) {

View File

@@ -1,4 +1,8 @@
<?php <?php
/**
* AppEventPeer.php
* @package workflow.engine.classes.model
*/
// include base peer class // include base peer class
require_once 'classes/model/om/BaseAppEventPeer.php'; require_once 'classes/model/om/BaseAppEventPeer.php';
@@ -16,7 +20,7 @@
* application requirements. This class will only be generated as * application requirements. This class will only be generated as
* long as it does not already exist in the output directory. * long as it does not already exist in the output directory.
* *
* @package workflow.classes.model * @package workflow.engine.classes.model
*/ */
class AppEventPeer extends BaseAppEventPeer { class AppEventPeer extends BaseAppEventPeer {

View File

@@ -1,4 +1,8 @@
<?php <?php
/**
* AppFolder.php
* @package workflow.engine.classes.model
*/
require_once 'classes/model/om/BaseAppFolder.php'; require_once 'classes/model/om/BaseAppFolder.php';
require_once 'classes/model/Application.php'; require_once 'classes/model/Application.php';
@@ -15,7 +19,7 @@ require_once 'classes/model/Application.php';
*/ */
/** /**
* @author hugo loza * @author hugo loza
* @package workflow.classes.model * @package workflow.engine.classes.model
*/ */
class AppFolder extends BaseAppFolder { class AppFolder extends BaseAppFolder {
/** /**

View File

@@ -1,4 +1,8 @@
<?php <?php
/**
* AppFolderPeer.php
* @package workflow.engine.classes.model
*/
// include base peer class // include base peer class
require_once 'classes/model/om/BaseAppFolderPeer.php'; require_once 'classes/model/om/BaseAppFolderPeer.php';
@@ -16,7 +20,7 @@
* application requirements. This class will only be generated as * application requirements. This class will only be generated as
* long as it does not already exist in the output directory. * long as it does not already exist in the output directory.
* *
* @package workflow.classes.model * @package workflow.engine.classes.model
*/ */
class AppFolderPeer extends BaseAppFolderPeer { class AppFolderPeer extends BaseAppFolderPeer {

View File

@@ -1,4 +1,8 @@
<?php <?php
/**
* AppHistory.php
* @package workflow.engine.classes.model
*/
require_once 'classes/model/om/BaseAppHistory.php'; require_once 'classes/model/om/BaseAppHistory.php';
@@ -12,7 +16,7 @@ require_once 'classes/model/om/BaseAppHistory.php';
* application requirements. This class will only be generated as * application requirements. This class will only be generated as
* long as it does not already exist in the output directory. * long as it does not already exist in the output directory.
* *
* @package workflow.classes.model * @package workflow.engine.classes.model
*/ */
class AppHistory extends BaseAppHistory { class AppHistory extends BaseAppHistory {

View File

@@ -1,4 +1,8 @@
<?php <?php
/**
* AppHistoryPeer.php
* @package workflow.engine.classes.model
*/
// include base peer class // include base peer class
require_once 'classes/model/om/BaseAppHistoryPeer.php'; require_once 'classes/model/om/BaseAppHistoryPeer.php';
@@ -16,7 +20,7 @@
* application requirements. This class will only be generated as * application requirements. This class will only be generated as
* long as it does not already exist in the output directory. * long as it does not already exist in the output directory.
* *
* @package workflow.classes.model * @package workflow.engine.classes.model
*/ */
class AppHistoryPeer extends BaseAppHistoryPeer { class AppHistoryPeer extends BaseAppHistoryPeer {

View File

@@ -1,9 +1,10 @@
<?php <?php
/** /**
* AppMessage.php * AppMessage.php
* @package workflow.classes.model
* *
* ProcessMaker Open Source Edition * ProcessMaker Open Source Edition
* Copyright (C) 2004 - 2008 Colosa Inc.23 * Copyright (C) 2004 - 2011 Colosa Inc.
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as * it under the terms of the GNU Affero General Public License as

View File

@@ -1,9 +1,10 @@
<?php <?php
/** /**
* AppMessagePeer.php * AppMessagePeer.php
* @package workflow.engine.classes.model
* *
* ProcessMaker Open Source Edition * ProcessMaker Open Source Edition
* Copyright (C) 2004 - 2008 Colosa Inc.23 * Copyright (C) 2004 - 2011 Colosa Inc.
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as * it under the terms of the GNU Affero General Public License as
@@ -39,7 +40,7 @@
* application requirements. This class will only be generated as * application requirements. This class will only be generated as
* long as it does not already exist in the output directory. * long as it does not already exist in the output directory.
* *
* @package workflow.classes.model * @package workflow.engine.classes.model
*/ */
class AppMessagePeer extends BaseAppMessagePeer { class AppMessagePeer extends BaseAppMessagePeer {

View File

@@ -1,9 +1,10 @@
<?php <?php
/** /**
* AppOwner.php * AppOwner.php
* @package workflow.engine.classes.model
* *
* ProcessMaker Open Source Edition * ProcessMaker Open Source Edition
* Copyright (C) 2004 - 2008 Colosa Inc.23 * Copyright (C) 2004 - 2011 Colosa Inc.
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as * it under the terms of the GNU Affero General Public License as
@@ -35,7 +36,7 @@ require_once 'classes/model/om/BaseAppOwner.php';
* application requirements. This class will only be generated as * application requirements. This class will only be generated as
* long as it does not already exist in the output directory. * long as it does not already exist in the output directory.
* *
* @package workflow.classes.model * @package workflow.engine.classes.model
*/ */
class AppOwner extends BaseAppOwner { class AppOwner extends BaseAppOwner {

View File

@@ -1,9 +1,10 @@
<?php <?php
/** /**
* AppOwnerPeer.php * AppOwnerPeer.php
* @package workflow.engine.classes.model
* *
* ProcessMaker Open Source Edition * ProcessMaker Open Source Edition
* Copyright (C) 2004 - 2008 Colosa Inc.23 * Copyright (C) 2004 - 2011 Colosa Inc.
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as * it under the terms of the GNU Affero General Public License as
@@ -39,7 +40,7 @@
* application requirements. This class will only be generated as * application requirements. This class will only be generated as
* long as it does not already exist in the output directory. * long as it does not already exist in the output directory.
* *
* @package workflow.classes.model * @package workflow.engine.classes.model
*/ */
class AppOwnerPeer extends BaseAppOwnerPeer { class AppOwnerPeer extends BaseAppOwnerPeer {

View File

@@ -1,4 +1,8 @@
<?php <?php
/**
* AppSpool.php
* @package workflow.engine.classes.model
*/
require_once 'classes/model/om/BaseAppSpool.php'; require_once 'classes/model/om/BaseAppSpool.php';
@@ -12,7 +16,7 @@ require_once 'classes/model/om/BaseAppSpool.php';
* application requirements. This class will only be generated as * application requirements. This class will only be generated as
* long as it does not already exist in the output directory. * long as it does not already exist in the output directory.
* *
* @package workflow.classes.model * @package workflow.engine.classes.model
*/ */
class AppSpool extends BaseAppSpool { class AppSpool extends BaseAppSpool {

View File

@@ -1,4 +1,8 @@
<?php <?php
/**
* AppSpoolPeer.php
* @package workflow.engine.classes.model
*/
// include base peer class // include base peer class
require_once 'classes/model/om/BaseAppSpoolPeer.php'; require_once 'classes/model/om/BaseAppSpoolPeer.php';
@@ -16,7 +20,7 @@
* application requirements. This class will only be generated as * application requirements. This class will only be generated as
* long as it does not already exist in the output directory. * long as it does not already exist in the output directory.
* *
* @package workflow.classes.model * @package workflow.engine.classes.model
*/ */
class AppSpoolPeer extends BaseAppSpoolPeer { class AppSpoolPeer extends BaseAppSpoolPeer {

View File

@@ -1,9 +1,10 @@
<?php <?php
/** /**
* AppThread.php * AppThread.php
* @package workflow.engine.classes.model
* *
* ProcessMaker Open Source Edition * ProcessMaker Open Source Edition
* Copyright (C) 2004 - 2008 Colosa Inc.23 * Copyright (C) 2004 - 2011 Colosa Inc.
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as * it under the terms of the GNU Affero General Public License as
@@ -35,7 +36,7 @@ require_once 'classes/model/om/BaseAppThread.php';
* application requirements. This class will only be generated as * application requirements. This class will only be generated as
* long as it does not already exist in the output directory. * long as it does not already exist in the output directory.
* *
* @package workflow.classes.model * @package workflow.engine.classes.model
*/ */
class AppThread extends BaseAppThread { class AppThread extends BaseAppThread {

View File

@@ -1,9 +1,10 @@
<?php <?php
/** /**
* AppThreadPeer.php * AppThreadPeer.php
* @package workflow.engine.classes.model
* *
* ProcessMaker Open Source Edition * ProcessMaker Open Source Edition
* Copyright (C) 2004 - 2008 Colosa Inc.23 * Copyright (C) 2004 - 2011 Colosa Inc.
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as * it under the terms of the GNU Affero General Public License as
@@ -39,7 +40,7 @@
* application requirements. This class will only be generated as * application requirements. This class will only be generated as
* long as it does not already exist in the output directory. * long as it does not already exist in the output directory.
* *
* @package workflow.classes.model * @package workflow.engine.classes.model
*/ */
class AppThreadPeer extends BaseAppThreadPeer { class AppThreadPeer extends BaseAppThreadPeer {

View File

@@ -1,9 +1,10 @@
<?php <?php
/** /**
* Application.php * Application.php
* @package workflow.engine.classes.model
* *
* ProcessMaker Open Source Edition * ProcessMaker Open Source Edition
* Copyright (C) 2004 - 2008 Colosa Inc.23 * Copyright (C) 2004 - 2011 Colosa Inc.
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as * it under the terms of the GNU Affero General Public License as
@@ -36,7 +37,7 @@ require_once 'classes/model/Content.php';
* application requirements. This class will only be generated as * application requirements. This class will only be generated as
* long as it does not already exist in the output directory. * long as it does not already exist in the output directory.
* *
* @package workflow.classes.model * @package workflow.engine.classes.model
*/ */
class Application extends BaseApplication { class Application extends BaseApplication {

View File

@@ -1,9 +1,10 @@
<?php <?php
/** /**
* ApplicationPeer.php * ApplicationPeer.php
* @package workflow.engine.classes.model
* *
* ProcessMaker Open Source Edition * ProcessMaker Open Source Edition
* Copyright (C) 2004 - 2008 Colosa Inc.23 * Copyright (C) 2004 - 2011 Colosa Inc.
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as * it under the terms of the GNU Affero General Public License as
@@ -39,7 +40,7 @@
* application requirements. This class will only be generated as * application requirements. This class will only be generated as
* long as it does not already exist in the output directory. * long as it does not already exist in the output directory.
* *
* @package workflow.classes.model * @package workflow.engine.classes.model
*/ */
class ApplicationPeer extends BaseApplicationPeer { class ApplicationPeer extends BaseApplicationPeer {

View File

@@ -1,4 +1,8 @@
<?php <?php
/**
* CalendarAssignments.php
* @package workflow.engine.classes.model
*/
require_once 'classes/model/om/BaseCalendarAssignments.php'; require_once 'classes/model/om/BaseCalendarAssignments.php';
@@ -12,7 +16,7 @@ require_once 'classes/model/om/BaseCalendarAssignments.php';
* application requirements. This class will only be generated as * application requirements. This class will only be generated as
* long as it does not already exist in the output directory. * long as it does not already exist in the output directory.
* *
* @package workflow.classes.model * @package workflow.engine.classes.model
*/ */
class CalendarAssignments extends BaseCalendarAssignments { class CalendarAssignments extends BaseCalendarAssignments {

View File

@@ -1,4 +1,8 @@
<?php <?php
/**
* CalendarAssignmentsPeer.php
* @package workflow.engine.classes.model
*/
// include base peer class // include base peer class
require_once 'classes/model/om/BaseCalendarAssignmentsPeer.php'; require_once 'classes/model/om/BaseCalendarAssignmentsPeer.php';
@@ -16,7 +20,7 @@
* application requirements. This class will only be generated as * application requirements. This class will only be generated as
* long as it does not already exist in the output directory. * long as it does not already exist in the output directory.
* *
* @package workflow.classes.model * @package workflow.engine.classes.model
*/ */
class CalendarAssignmentsPeer extends BaseCalendarAssignmentsPeer { class CalendarAssignmentsPeer extends BaseCalendarAssignmentsPeer {

View File

@@ -1,4 +1,8 @@
<?php <?php
/**
* CalendarBusinessHours.php
* @package workflow.engine.classes.model
*/
require_once 'classes/model/om/BaseCalendarBusinessHours.php'; require_once 'classes/model/om/BaseCalendarBusinessHours.php';
@@ -12,7 +16,7 @@ require_once 'classes/model/om/BaseCalendarBusinessHours.php';
* application requirements. This class will only be generated as * application requirements. This class will only be generated as
* long as it does not already exist in the output directory. * long as it does not already exist in the output directory.
* *
* @package workflow.classes.model * @package workflow.engine.classes.model
*/ */
class CalendarBusinessHours extends BaseCalendarBusinessHours { class CalendarBusinessHours extends BaseCalendarBusinessHours {
function getCalendarBusinessHours($CalendarUid){ function getCalendarBusinessHours($CalendarUid){

View File

@@ -1,4 +1,8 @@
<?php <?php
/**
* CalendarBusinessHoursPeer.php
* @package workflow.engine.classes.model
*/
// include base peer class // include base peer class
require_once 'classes/model/om/BaseCalendarBusinessHoursPeer.php'; require_once 'classes/model/om/BaseCalendarBusinessHoursPeer.php';
@@ -16,7 +20,7 @@
* application requirements. This class will only be generated as * application requirements. This class will only be generated as
* long as it does not already exist in the output directory. * long as it does not already exist in the output directory.
* *
* @package workflow.classes.model * @package workflow.engine.classes.model
*/ */
class CalendarBusinessHoursPeer extends BaseCalendarBusinessHoursPeer { class CalendarBusinessHoursPeer extends BaseCalendarBusinessHoursPeer {

View File

@@ -1,4 +1,8 @@
<?php <?php
/**
* CalendarDefinition.php
* @package workflow.engine.classes.model
*/
require_once 'classes/model/om/BaseCalendarDefinition.php'; require_once 'classes/model/om/BaseCalendarDefinition.php';
require_once 'classes/model/CalendarBusinessHours.php'; require_once 'classes/model/CalendarBusinessHours.php';
@@ -14,7 +18,7 @@ require_once 'classes/model/CalendarAssignments.php';
* application requirements. This class will only be generated as * application requirements. This class will only be generated as
* long as it does not already exist in the output directory. * long as it does not already exist in the output directory.
* *
* @package workflow.classes.model * @package workflow.engine.classes.model
*/ */
class CalendarDefinition extends BaseCalendarDefinition { class CalendarDefinition extends BaseCalendarDefinition {
public $calendarLog = ''; public $calendarLog = '';

View File

@@ -1,4 +1,8 @@
<?php <?php
/**
* CalendarDefinitionPeer.php
* @package workflow.engine.classes.model
*/
// include base peer class // include base peer class
require_once 'classes/model/om/BaseCalendarDefinitionPeer.php'; require_once 'classes/model/om/BaseCalendarDefinitionPeer.php';
@@ -16,7 +20,7 @@
* application requirements. This class will only be generated as * application requirements. This class will only be generated as
* long as it does not already exist in the output directory. * long as it does not already exist in the output directory.
* *
* @package workflow.classes.model * @package workflow.engine.classes.model
*/ */
class CalendarDefinitionPeer extends BaseCalendarDefinitionPeer { class CalendarDefinitionPeer extends BaseCalendarDefinitionPeer {

View File

@@ -1,4 +1,8 @@
<?php <?php
/**
* CalendarHolidays.php
* @package workflow.engine.classes.model
*/
require_once 'classes/model/om/BaseCalendarHolidays.php'; require_once 'classes/model/om/BaseCalendarHolidays.php';
@@ -12,7 +16,7 @@ require_once 'classes/model/om/BaseCalendarHolidays.php';
* application requirements. This class will only be generated as * application requirements. This class will only be generated as
* long as it does not already exist in the output directory. * long as it does not already exist in the output directory.
* *
* @package workflow.classes.model * @package workflow.engine.classes.model
*/ */
class CalendarHolidays extends BaseCalendarHolidays { class CalendarHolidays extends BaseCalendarHolidays {
function getCalendarHolidays($CalendarUid){ function getCalendarHolidays($CalendarUid){

View File

@@ -1,4 +1,8 @@
<?php <?php
/**
* CalendarHolidaysPeer.php
* @package workflow.engine.classes.model
*/
// include base peer class // include base peer class
require_once 'classes/model/om/BaseCalendarHolidaysPeer.php'; require_once 'classes/model/om/BaseCalendarHolidaysPeer.php';
@@ -16,7 +20,7 @@
* application requirements. This class will only be generated as * application requirements. This class will only be generated as
* long as it does not already exist in the output directory. * long as it does not already exist in the output directory.
* *
* @package workflow.classes.model * @package workflow.engine.classes.model
*/ */
class CalendarHolidaysPeer extends BaseCalendarHolidaysPeer { class CalendarHolidaysPeer extends BaseCalendarHolidaysPeer {

View File

@@ -1,4 +1,8 @@
<?php <?php
/**
* CaseScheduler.php
* @package workflow.engine.classes.model
*/
require_once 'classes/model/om/BaseCaseScheduler.php'; require_once 'classes/model/om/BaseCaseScheduler.php';
@@ -14,7 +18,7 @@ require_once 'classes/model/Task.php';
* application requirements. This class will only be generated as * application requirements. This class will only be generated as
* long as it does not already exist in the output directory. * long as it does not already exist in the output directory.
* *
* @package workflow.classes.model * @package workflow.engine.classes.model
*/ */
class CaseScheduler extends BaseCaseScheduler { class CaseScheduler extends BaseCaseScheduler {

View File

@@ -1,4 +1,8 @@
<?php <?php
/**
* CaseSchedulerPeer.php
* @package workflow.engine.classes.model
*/
// include base peer class // include base peer class
require_once 'classes/model/om/BaseCaseSchedulerPeer.php'; require_once 'classes/model/om/BaseCaseSchedulerPeer.php';
@@ -16,7 +20,7 @@
* application requirements. This class will only be generated as * application requirements. This class will only be generated as
* long as it does not already exist in the output directory. * long as it does not already exist in the output directory.
* *
* @package workflow.classes.model * @package workflow.engine.classes.model
*/ */
class CaseSchedulerPeer extends BaseCaseSchedulerPeer { class CaseSchedulerPeer extends BaseCaseSchedulerPeer {

View File

@@ -1,4 +1,8 @@
<?php <?php
/**
* CaseTracker.php
* @package workflow.engine.classes.model
*/
require_once 'classes/model/om/BaseCaseTracker.php'; require_once 'classes/model/om/BaseCaseTracker.php';
@@ -12,7 +16,7 @@ require_once 'classes/model/om/BaseCaseTracker.php';
* application requirements. This class will only be generated as * application requirements. This class will only be generated as
* long as it does not already exist in the output directory. * long as it does not already exist in the output directory.
* *
* @package workflow.classes.model * @package workflow.engine.classes.model
*/ */
class CaseTracker extends BaseCaseTracker { class CaseTracker extends BaseCaseTracker {
public function load($sProcessUID) { public function load($sProcessUID) {

View File

@@ -1,4 +1,8 @@
<?php <?php
/**
* CaseTrackerObject.php
* @package workflow.engine.classes.model
*/
require_once 'classes/model/om/BaseCaseTrackerObject.php'; require_once 'classes/model/om/BaseCaseTrackerObject.php';
@@ -12,7 +16,7 @@ require_once 'classes/model/om/BaseCaseTrackerObject.php';
* application requirements. This class will only be generated as * application requirements. This class will only be generated as
* long as it does not already exist in the output directory. * long as it does not already exist in the output directory.
* *
* @package workflow.classes.model * @package workflow.engine.classes.model
*/ */
class CaseTrackerObject extends BaseCaseTrackerObject { class CaseTrackerObject extends BaseCaseTrackerObject {
public function load($Uid) { public function load($Uid) {

View File

@@ -1,4 +1,8 @@
<?php <?php
/**
* CaseTrackerObjectPeer.php
* @package workflow.engine.classes.model
*/
// include base peer class // include base peer class
require_once 'classes/model/om/BaseCaseTrackerObjectPeer.php'; require_once 'classes/model/om/BaseCaseTrackerObjectPeer.php';
@@ -16,7 +20,7 @@
* application requirements. This class will only be generated as * application requirements. This class will only be generated as
* long as it does not already exist in the output directory. * long as it does not already exist in the output directory.
* *
* @package workflow.classes.model * @package workflow.engine.classes.model
*/ */
class CaseTrackerObjectPeer extends BaseCaseTrackerObjectPeer { class CaseTrackerObjectPeer extends BaseCaseTrackerObjectPeer {

View File

@@ -1,4 +1,8 @@
<?php <?php
/**
* CaseTrackerPeer.php
* @package workflow.engine.classes.model
*/
// include base peer class // include base peer class
require_once 'classes/model/om/BaseCaseTrackerPeer.php'; require_once 'classes/model/om/BaseCaseTrackerPeer.php';
@@ -16,7 +20,7 @@
* application requirements. This class will only be generated as * application requirements. This class will only be generated as
* long as it does not already exist in the output directory. * long as it does not already exist in the output directory.
* *
* @package workflow.classes.model * @package workflow.engine.classes.model
*/ */
class CaseTrackerPeer extends BaseCaseTrackerPeer { class CaseTrackerPeer extends BaseCaseTrackerPeer {

View File

@@ -1,9 +1,10 @@
<?php <?php
/** /**
* Configuration.php * Configuration.php
* @package workflow.engine.classes.model
* *
* ProcessMaker Open Source Edition * ProcessMaker Open Source Edition
* Copyright (C) 2004 - 2008 Colosa Inc.23 * Copyright (C) 2004 - 2011 Colosa Inc.
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as * it under the terms of the GNU Affero General Public License as
@@ -36,7 +37,7 @@ require_once 'classes/model/Content.php';
* application requirements. This class will only be generated as * application requirements. This class will only be generated as
* long as it does not already exist in the output directory. * long as it does not already exist in the output directory.
* *
* @package workflow.classes.model * @package workflow.engine.classes.model
*/ */
class Configuration extends BaseConfiguration { class Configuration extends BaseConfiguration {
public function create($aData) public function create($aData)

View File

@@ -1,9 +1,10 @@
<?php <?php
/** /**
* ConfigurationPeer.php * ConfigurationPeer.php
* @package workflow.engine.classes.model
* *
* ProcessMaker Open Source Edition * ProcessMaker Open Source Edition
* Copyright (C) 2004 - 2008 Colosa Inc.23 * Copyright (C) 2004 - 2011 Colosa Inc.
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as * it under the terms of the GNU Affero General Public License as
@@ -39,7 +40,7 @@
* application requirements. This class will only be generated as * application requirements. This class will only be generated as
* long as it does not already exist in the output directory. * long as it does not already exist in the output directory.
* *
* @package workflow.classes.model * @package workflow.engine.classes.model
*/ */
class ConfigurationPeer extends BaseConfigurationPeer { class ConfigurationPeer extends BaseConfigurationPeer {

View File

@@ -1,9 +1,10 @@
<?php <?php
/** /**
* Content.php * Content.php
* @package workflow.engine.classes.model
* *
* ProcessMaker Open Source Edition * ProcessMaker Open Source Edition
* Copyright (C) 2004 - 2008 Colosa Inc.23 * Copyright (C) 2004 - 2011 Colosa Inc.
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as * it under the terms of the GNU Affero General Public License as
@@ -34,7 +35,7 @@ require_once 'classes/model/om/BaseContent.php';
* application requirements. This class will only be generated as * application requirements. This class will only be generated as
* long as it does not already exist in the output directory. * long as it does not already exist in the output directory.
* *
* @package workflow.classes.model * @package workflow.engine.classes.model
*/ */
class Content extends BaseContent { class Content extends BaseContent {

View File

@@ -1,9 +1,10 @@
<?php <?php
/** /**
* ContentPeer.php * ContentPeer.php
* @package workflow.engine.classes.model
* *
* ProcessMaker Open Source Edition * ProcessMaker Open Source Edition
* Copyright (C) 2004 - 2008 Colosa Inc.23 * Copyright (C) 2004 - 2011 Colosa Inc.
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as * it under the terms of the GNU Affero General Public License as
@@ -39,7 +40,7 @@
* application requirements. This class will only be generated as * application requirements. This class will only be generated as
* long as it does not already exist in the output directory. * long as it does not already exist in the output directory.
* *
* @package workflow.classes.model * @package workflow.engine.classes.model
*/ */
class ContentPeer extends BaseContentPeer { class ContentPeer extends BaseContentPeer {

View File

@@ -1,9 +1,10 @@
<?php <?php
/** /**
* DbSource.php * DbSource.php
* @package workflow.engine.classes.model
* *
* ProcessMaker Open Source Edition * ProcessMaker Open Source Edition
* Copyright (C) 2004 - 2008 Colosa Inc.23 * Copyright (C) 2004 - 2011 Colosa Inc.
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as * it under the terms of the GNU Affero General Public License as
@@ -36,7 +37,7 @@ require_once 'classes/model/om/BaseDbSource.php';
* application requirements. This class will only be generated as * application requirements. This class will only be generated as
* long as it does not already exist in the output directory. * long as it does not already exist in the output directory.
* *
* @package workflow.classes.model * @package workflow.engine.classes.model
*/ */
class DbSource extends BaseDbSource class DbSource extends BaseDbSource
{ {

View File

@@ -1,4 +1,8 @@
<?php <?php
/**
* DbSourcePeer.php
* @package workflow.engine.classes.model
*/
// include base peer class // include base peer class
require_once 'classes/model/om/BaseDbSourcePeer.php'; require_once 'classes/model/om/BaseDbSourcePeer.php';
@@ -16,7 +20,7 @@
* application requirements. This class will only be generated as * application requirements. This class will only be generated as
* long as it does not already exist in the output directory. * long as it does not already exist in the output directory.
* *
* @package workflow.classes.model * @package workflow.engine.classes.model
*/ */
class DbSourcePeer extends BaseDbSourcePeer { class DbSourcePeer extends BaseDbSourcePeer {

View File

@@ -1,9 +1,10 @@
<?php <?php
/** /**
* Department.php * Department.php
* @package workflow.engine.classes.model
* *
* ProcessMaker Open Source Edition * ProcessMaker Open Source Edition
* Copyright (C) 2004 - 2008 Colosa Inc.23 * Copyright (C) 2004 - 2011 Colosa Inc.
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as * it under the terms of the GNU Affero General Public License as
@@ -36,7 +37,7 @@ require_once 'classes/model/Users.php';
* application requirements. This class will only be generated as * application requirements. This class will only be generated as
* long as it does not already exist in the output directory. * long as it does not already exist in the output directory.
* *
* @package workflow.classes.model * @package workflow.engine.classes.model
*/ */
class Department extends BaseDepartment { class Department extends BaseDepartment {

View File

@@ -1,9 +1,10 @@
<?php <?php
/** /**
* DepartmentPeer.php * DepartmentPeer.php
* @package workflow.engine.classes.model
* *
* ProcessMaker Open Source Edition * ProcessMaker Open Source Edition
* Copyright (C) 2004 - 2008 Colosa Inc.23 * Copyright (C) 2004 - 2011 Colosa Inc.
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as * it under the terms of the GNU Affero General Public License as
@@ -39,7 +40,7 @@
* application requirements. This class will only be generated as * application requirements. This class will only be generated as
* long as it does not already exist in the output directory. * long as it does not already exist in the output directory.
* *
* @package workflow.classes.model * @package workflow.engine.classes.model
*/ */
class DepartmentPeer extends BaseDepartmentPeer { class DepartmentPeer extends BaseDepartmentPeer {

View File

@@ -1,4 +1,8 @@
<?php <?php
/**
* DimTimeComplete.php
* @package workflow.engine.classes.model
*/
require_once 'classes/model/om/BaseDimTimeComplete.php'; require_once 'classes/model/om/BaseDimTimeComplete.php';
@@ -12,7 +16,7 @@ require_once 'classes/model/om/BaseDimTimeComplete.php';
* application requirements. This class will only be generated as * application requirements. This class will only be generated as
* long as it does not already exist in the output directory. * long as it does not already exist in the output directory.
* *
* @package workflow.classes.model * @package workflow.engine.classes.model
*/ */
class DimTimeComplete extends BaseDimTimeComplete { class DimTimeComplete extends BaseDimTimeComplete {

View File

@@ -1,4 +1,8 @@
<?php <?php
/**
* DimTimeCompletePeer.php
* @package workflow.engine.classes.model
*/
// include base peer class // include base peer class
require_once 'classes/model/om/BaseDimTimeCompletePeer.php'; require_once 'classes/model/om/BaseDimTimeCompletePeer.php';
@@ -16,7 +20,7 @@
* application requirements. This class will only be generated as * application requirements. This class will only be generated as
* long as it does not already exist in the output directory. * long as it does not already exist in the output directory.
* *
* @package workflow.classes.model * @package workflow.engine.classes.model
*/ */
class DimTimeCompletePeer extends BaseDimTimeCompletePeer { class DimTimeCompletePeer extends BaseDimTimeCompletePeer {

View File

@@ -1,4 +1,8 @@
<?php <?php
/**
* DimTimeDelegate.php
* @package workflow.engine.classes.model
*/
require_once 'classes/model/om/BaseDimTimeDelegate.php'; require_once 'classes/model/om/BaseDimTimeDelegate.php';
@@ -12,7 +16,7 @@ require_once 'classes/model/om/BaseDimTimeDelegate.php';
* application requirements. This class will only be generated as * application requirements. This class will only be generated as
* long as it does not already exist in the output directory. * long as it does not already exist in the output directory.
* *
* @package workflow.classes.model * @package workflow.engine.classes.model
*/ */
class DimTimeDelegate extends BaseDimTimeDelegate { class DimTimeDelegate extends BaseDimTimeDelegate {

View File

@@ -1,4 +1,8 @@
<?php <?php
/**
* DimTimeDelegatePeer.php
* @package workflow.engine.classes.model
*/
// include base peer class // include base peer class
require_once 'classes/model/om/BaseDimTimeDelegatePeer.php'; require_once 'classes/model/om/BaseDimTimeDelegatePeer.php';
@@ -16,7 +20,7 @@
* application requirements. This class will only be generated as * application requirements. This class will only be generated as
* long as it does not already exist in the output directory. * long as it does not already exist in the output directory.
* *
* @package workflow.classes.model * @package workflow.engine.classes.model
*/ */
class DimTimeDelegatePeer extends BaseDimTimeDelegatePeer { class DimTimeDelegatePeer extends BaseDimTimeDelegatePeer {

View File

@@ -1,9 +1,10 @@
<?php <?php
/** /**
* Dynaform.php * Dynaform.php
* @package workflow.engine.classes.model
* *
* ProcessMaker Open Source Edition * ProcessMaker Open Source Edition
* Copyright (C) 2004 - 2008 Colosa Inc.23 * Copyright (C) 2004 - 2011 Colosa Inc.
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as * it under the terms of the GNU Affero General Public License as
@@ -37,7 +38,7 @@ G::LoadClass('dynaFormField');
* application requirements. This class will only be generated as * application requirements. This class will only be generated as
* long as it does not already exist in the output directory. * long as it does not already exist in the output directory.
* *
* @package workflow.classes.model * @package workflow.engine.classes.model
*/ */
class Dynaform extends BaseDynaform { class Dynaform extends BaseDynaform {
/** /**

View File

@@ -1,9 +1,10 @@
<?php <?php
/** /**
* DynaformPeer.php * DynaformPeer.php
* @package workflow.engine.classes.model
* *
* ProcessMaker Open Source Edition * ProcessMaker Open Source Edition
* Copyright (C) 2004 - 2008 Colosa Inc.23 * Copyright (C) 2004 - 2011 Colosa Inc.
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as * it under the terms of the GNU Affero General Public License as
@@ -39,7 +40,7 @@
* application requirements. This class will only be generated as * application requirements. This class will only be generated as
* long as it does not already exist in the output directory. * long as it does not already exist in the output directory.
* *
* @package workflow.classes.model * @package workflow.engine.classes.model
*/ */
class DynaformPeer extends BaseDynaformPeer { class DynaformPeer extends BaseDynaformPeer {

View File

@@ -1,4 +1,8 @@
<?php <?php
/**
* Event.php
* @package workflow.engine.classes.model
*/
require_once 'classes/model/Content.php'; require_once 'classes/model/Content.php';
require_once 'classes/model/om/BaseEvent.php'; require_once 'classes/model/om/BaseEvent.php';
@@ -20,7 +24,7 @@ require_once 'classes/model/AppEvent.php';
require_once 'classes/model/Triggers.php'; require_once 'classes/model/Triggers.php';
/** /**
* @package workflow.classes.model * @package workflow.engine.classes.model
*/ */
class Event extends BaseEvent { class Event extends BaseEvent {

View File

@@ -1,4 +1,8 @@
<?php <?php
/**
* EventPeer.php
* @package workflow.engine.classes.model
*/
// include base peer class // include base peer class
require_once 'classes/model/om/BaseEventPeer.php'; require_once 'classes/model/om/BaseEventPeer.php';
@@ -16,7 +20,7 @@
* application requirements. This class will only be generated as * application requirements. This class will only be generated as
* long as it does not already exist in the output directory. * long as it does not already exist in the output directory.
* *
* @package workflow.classes.model * @package workflow.engine.classes.model
*/ */
class EventPeer extends BaseEventPeer { class EventPeer extends BaseEventPeer {

View File

@@ -1,4 +1,8 @@
<?php <?php
/**
* FieldCondition.php
* @package workflow.engine.classes.model
*/
require_once 'classes/model/om/BaseFieldCondition.php'; require_once 'classes/model/om/BaseFieldCondition.php';
require_once 'classes/model/Dynaform.php'; require_once 'classes/model/Dynaform.php';
@@ -13,7 +17,7 @@ require_once 'classes/model/Dynaform.php';
* application requirements. This class will only be generated as * application requirements. This class will only be generated as
* long as it does not already exist in the output directory. * long as it does not already exist in the output directory.
* *
* @package workflow.classes.model * @package workflow.engine.classes.model
*/ */
class FieldCondition extends BaseFieldCondition { class FieldCondition extends BaseFieldCondition {

View File

@@ -1,4 +1,8 @@
<?php <?php
/**
* FieldConditionPeer.php
* @package workflow.engine.classes.model
*/
// include base peer class // include base peer class
require_once 'classes/model/om/BaseFieldConditionPeer.php'; require_once 'classes/model/om/BaseFieldConditionPeer.php';
@@ -16,7 +20,7 @@
* application requirements. This class will only be generated as * application requirements. This class will only be generated as
* long as it does not already exist in the output directory. * long as it does not already exist in the output directory.
* *
* @package workflow.classes.model * @package workflow.engine.classes.model
*/ */
class FieldConditionPeer extends BaseFieldConditionPeer { class FieldConditionPeer extends BaseFieldConditionPeer {

View File

@@ -1,4 +1,8 @@
<?php <?php
/**
* Fields.php
* @package workflow.engine.classes.model
*/
require_once 'classes/model/om/BaseFields.php'; require_once 'classes/model/om/BaseFields.php';
@@ -12,7 +16,7 @@ require_once 'classes/model/om/BaseFields.php';
* application requirements. This class will only be generated as * application requirements. This class will only be generated as
* long as it does not already exist in the output directory. * long as it does not already exist in the output directory.
* *
* @package workflow.classes.model * @package workflow.engine.classes.model
*/ */
class Fields extends BaseFields { class Fields extends BaseFields {
public function load($sUID) { public function load($sUID) {

View File

@@ -1,4 +1,8 @@
<?php <?php
/**
* FieldsPeer.php
* @package workflow.engine.classes.model
*/
// include base peer class // include base peer class
require_once 'classes/model/om/BaseFieldsPeer.php'; require_once 'classes/model/om/BaseFieldsPeer.php';
@@ -16,7 +20,7 @@
* application requirements. This class will only be generated as * application requirements. This class will only be generated as
* long as it does not already exist in the output directory. * long as it does not already exist in the output directory.
* *
* @package workflow.classes.model * @package workflow.engine.classes.model
*/ */
class FieldsPeer extends BaseFieldsPeer { class FieldsPeer extends BaseFieldsPeer {

View File

@@ -1,4 +1,8 @@
<?php <?php
/**
* Gateway.php
* @package workflow.engine.classes.model
*/
require_once 'classes/model/om/BaseGateway.php'; require_once 'classes/model/om/BaseGateway.php';
@@ -12,7 +16,7 @@ require_once 'classes/model/om/BaseGateway.php';
* application requirements. This class will only be generated as * application requirements. This class will only be generated as
* long as it does not already exist in the output directory. * long as it does not already exist in the output directory.
* *
* @package workflow.classes.model * @package workflow.engine.classes.model
*/ */
class Gateway extends BaseGateway { class Gateway extends BaseGateway {

View File

@@ -1,4 +1,8 @@
<?php <?php
/**
* GatewayPeer.php
* @package workflow.engine.classes.model
*/
// include base peer class // include base peer class
require_once 'classes/model/om/BaseGatewayPeer.php'; require_once 'classes/model/om/BaseGatewayPeer.php';
@@ -16,7 +20,7 @@
* application requirements. This class will only be generated as * application requirements. This class will only be generated as
* long as it does not already exist in the output directory. * long as it does not already exist in the output directory.
* *
* @package workflow.classes.model * @package workflow.engine.classes.model
*/ */
class GatewayPeer extends BaseGatewayPeer { class GatewayPeer extends BaseGatewayPeer {

View File

@@ -1,9 +1,10 @@
<?php <?php
/** /**
* GroupUser.php * GroupUser.php
* @package workflow.engine.classes.model
* *
* ProcessMaker Open Source Edition * ProcessMaker Open Source Edition
* Copyright (C) 2004 - 2008 Colosa Inc.23 * Copyright (C) 2004 - 2011 Colosa Inc.
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as * it under the terms of the GNU Affero General Public License as
@@ -35,7 +36,7 @@ require_once 'classes/model/Content.php';
* application requirements. This class will only be generated as * application requirements. This class will only be generated as
* long as it does not already exist in the input directory. * long as it does not already exist in the input directory.
* *
* @package workflow.classes.model * @package workflow.engine.classes.model
*/ */
class GroupUser extends BaseGroupUser { class GroupUser extends BaseGroupUser {

View File

@@ -1,9 +1,10 @@
<?php <?php
/** /**
* GroupUserPeer.php * GroupUserPeer.php
* @package workflow.engine.classes.model
* *
* ProcessMaker Open Source Edition * ProcessMaker Open Source Edition
* Copyright (C) 2004 - 2008 Colosa Inc.23 * Copyright (C) 2004 - 2011 Colosa Inc.
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as * it under the terms of the GNU Affero General Public License as
@@ -39,7 +40,7 @@
* application requirements. This class will only be generated as * application requirements. This class will only be generated as
* long as it does not already exist in the output directory. * long as it does not already exist in the output directory.
* *
* @package workflow.classes.model * @package workflow.engine.classes.model
*/ */
class GroupUserPeer extends BaseGroupUserPeer { class GroupUserPeer extends BaseGroupUserPeer {

View File

@@ -1,9 +1,10 @@
<?php <?php
/** /**
* Groupwf.php * Groupwf.php
* @package workflow.engine.classes.model
* *
* ProcessMaker Open Source Edition * ProcessMaker Open Source Edition
* Copyright (C) 2004 - 2008 Colosa Inc.23 * Copyright (C) 2004 - 2011 Colosa Inc.
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as * it under the terms of the GNU Affero General Public License as
@@ -35,7 +36,7 @@ require_once 'classes/model/Content.php';
* application requirements. This class will only be generated as * application requirements. This class will only be generated as
* long as it does not already exist in the output directory. * long as it does not already exist in the output directory.
* *
* @package workflow.classes.model * @package workflow.engine.classes.model
*/ */
class Groupwf extends BaseGroupwf { class Groupwf extends BaseGroupwf {
/** /**

View File

@@ -1,9 +1,10 @@
<?php <?php
/** /**
* GroupwfPeer.php * GroupwfPeer.php
* @package workflow.engine.classes.model
* *
* ProcessMaker Open Source Edition * ProcessMaker Open Source Edition
* Copyright (C) 2004 - 2008 Colosa Inc.23 * Copyright (C) 2004 - 2011 Colosa Inc.
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as * it under the terms of the GNU Affero General Public License as
@@ -39,7 +40,7 @@
* application requirements. This class will only be generated as * application requirements. This class will only be generated as
* long as it does not already exist in the output directory. * long as it does not already exist in the output directory.
* *
* @package workflow.classes.model * @package workflow.engine.classes.model
*/ */
class GroupwfPeer extends BaseGroupwfPeer { class GroupwfPeer extends BaseGroupwfPeer {

View File

@@ -1,9 +1,10 @@
<?php <?php
/** /**
* Holiday.php * Holiday.php
* @package workflow.engine.classes.model
* *
* ProcessMaker Open Source Edition * ProcessMaker Open Source Edition
* Copyright (C) 2004 - 2008 Colosa Inc.23 * Copyright (C) 2004 - 2011 Colosa Inc.
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as * it under the terms of the GNU Affero General Public License as
@@ -35,7 +36,7 @@ require_once 'classes/model/om/BaseHoliday.php';
* application requirements. This class will only be generated as * application requirements. This class will only be generated as
* long as it does not already exist in the output directory. * long as it does not already exist in the output directory.
* *
* @package workflow.classes.model * @package workflow.engine.classes.model
*/ */
class Holiday extends BaseHoliday { class Holiday extends BaseHoliday {

View File

@@ -1,9 +1,10 @@
<?php <?php
/** /**
* HolidayPeer.php * HolidayPeer.php
* @package workflow.engine.classes.model
* *
* ProcessMaker Open Source Edition * ProcessMaker Open Source Edition
* Copyright (C) 2004 - 2008 Colosa Inc.23 * Copyright (C) 2004 - 2011 Colosa Inc.
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as * it under the terms of the GNU Affero General Public License as
@@ -39,7 +40,7 @@
* application requirements. This class will only be generated as * application requirements. This class will only be generated as
* long as it does not already exist in the output directory. * long as it does not already exist in the output directory.
* *
* @package workflow.classes.model * @package workflow.engine.classes.model
*/ */
class HolidayPeer extends BaseHolidayPeer { class HolidayPeer extends BaseHolidayPeer {

View File

@@ -1,9 +1,10 @@
<?php <?php
/** /**
* InputDocument.php * InputDocument.php
* @package workflow.engine.classes.model
* *
* ProcessMaker Open Source Edition * ProcessMaker Open Source Edition
* Copyright (C) 2004 - 2008 Colosa Inc.23 * Copyright (C) 2004 - 2011 Colosa Inc.
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as * it under the terms of the GNU Affero General Public License as
@@ -35,7 +36,7 @@ require_once 'classes/model/Content.php';
* application requirements. This class will only be generated as * application requirements. This class will only be generated as
* long as it does not already exist in the input directory. * long as it does not already exist in the input directory.
* *
* @package workflow.classes.model * @package workflow.engine.classes.model
*/ */
class InputDocument extends BaseInputDocument { class InputDocument extends BaseInputDocument {

View File

@@ -1,9 +1,10 @@
<?php <?php
/** /**
* InputDocumentPeer.php * InputDocumentPeer.php
* @package workflow.engine.classes.model
* *
* ProcessMaker Open Source Edition * ProcessMaker Open Source Edition
* Copyright (C) 2004 - 2008 Colosa Inc.23 * Copyright (C) 2004 - 2011 Colosa Inc.
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as * it under the terms of the GNU Affero General Public License as
@@ -39,7 +40,7 @@
* application requirements. This class will only be generated as * application requirements. This class will only be generated as
* long as it does not already exist in the output directory. * long as it does not already exist in the output directory.
* *
* @package workflow.classes.model * @package workflow.engine.classes.model
*/ */
class InputDocumentPeer extends BaseInputDocumentPeer { class InputDocumentPeer extends BaseInputDocumentPeer {

View File

@@ -1,9 +1,10 @@
<?php <?php
/** /**
* IsoCountry.php * IsoCountry.php
* @package workflow.engine.classes.model
* *
* ProcessMaker Open Source Edition * ProcessMaker Open Source Edition
* Copyright (C) 2004 - 2008 Colosa Inc.23 * Copyright (C) 2004 - 2011 Colosa Inc.
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as * it under the terms of the GNU Affero General Public License as
@@ -35,7 +36,7 @@ require_once 'classes/model/om/BaseIsoCountry.php';
* application requirements. This class will only be generated as * application requirements. This class will only be generated as
* long as it does not already exist in the output directory. * long as it does not already exist in the output directory.
* *
* @package workflow.classes.model * @package workflow.engine.classes.model
*/ */
class IsoCountry extends BaseIsoCountry { class IsoCountry extends BaseIsoCountry {
function findById($UID){ function findById($UID){

View File

@@ -1,9 +1,10 @@
<?php <?php
/** /**
* IsoCountryPeer.php * IsoCountryPeer.php
* @package workflow.engine.classes.model
* *
* ProcessMaker Open Source Edition * ProcessMaker Open Source Edition
* Copyright (C) 2004 - 2008 Colosa Inc.23 * Copyright (C) 2004 - 2011 Colosa Inc.
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as * it under the terms of the GNU Affero General Public License as
@@ -39,7 +40,7 @@
* application requirements. This class will only be generated as * application requirements. This class will only be generated as
* long as it does not already exist in the output directory. * long as it does not already exist in the output directory.
* *
* @package workflow.classes.model * @package workflow.engine.classes.model
*/ */
class IsoCountryPeer extends BaseIsoCountryPeer { class IsoCountryPeer extends BaseIsoCountryPeer {

View File

@@ -1,9 +1,10 @@
<?php <?php
/** /**
* IsoLocation.php * IsoLocation.php
* @package workflow.engine.classes.model
* *
* ProcessMaker Open Source Edition * ProcessMaker Open Source Edition
* Copyright (C) 2004 - 2008 Colosa Inc.23 * Copyright (C) 2004 - 2011 Colosa Inc.
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as * it under the terms of the GNU Affero General Public License as
@@ -35,7 +36,7 @@ require_once 'classes/model/om/BaseIsoLocation.php';
* application requirements. This class will only be generated as * application requirements. This class will only be generated as
* long as it does not already exist in the output directory. * long as it does not already exist in the output directory.
* *
* @package workflow.classes.model * @package workflow.engine.classes.model
*/ */
class IsoLocation extends BaseIsoLocation { class IsoLocation extends BaseIsoLocation {

View File

@@ -1,9 +1,10 @@
<?php <?php
/** /**
* IsoLocationPeer.php * IsoLocationPeer.php
* @package workflow.engine.classes.model
* *
* ProcessMaker Open Source Edition * ProcessMaker Open Source Edition
* Copyright (C) 2004 - 2008 Colosa Inc.23 * Copyright (C) 2004 - 2011 Colosa Inc.
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as * it under the terms of the GNU Affero General Public License as
@@ -39,7 +40,7 @@
* application requirements. This class will only be generated as * application requirements. This class will only be generated as
* long as it does not already exist in the output directory. * long as it does not already exist in the output directory.
* *
* @package workflow.classes.model * @package workflow.engine.classes.model
*/ */
class IsoLocationPeer extends BaseIsoLocationPeer { class IsoLocationPeer extends BaseIsoLocationPeer {

View File

@@ -1,9 +1,10 @@
<?php <?php
/** /**
* IsoSubdivision.php * IsoSubdivision.php
* @package workflow.engine.classes.model
* *
* ProcessMaker Open Source Edition * ProcessMaker Open Source Edition
* Copyright (C) 2004 - 2008 Colosa Inc.23 * Copyright (C) 2004 - 2011 Colosa Inc.
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as * it under the terms of the GNU Affero General Public License as
@@ -35,7 +36,7 @@ require_once 'classes/model/om/BaseIsoSubdivision.php';
* application requirements. This class will only be generated as * application requirements. This class will only be generated as
* long as it does not already exist in the output directory. * long as it does not already exist in the output directory.
* *
* @package workflow.classes.model * @package workflow.engine.classes.model
*/ */
class IsoSubdivision extends BaseIsoSubdivision { class IsoSubdivision extends BaseIsoSubdivision {

View File

@@ -1,9 +1,10 @@
<?php <?php
/** /**
* IsoSubdivisionPeer.php * IsoSubdivisionPeer.php
* @package workflow.engine.classes.model
* *
* ProcessMaker Open Source Edition * ProcessMaker Open Source Edition
* Copyright (C) 2004 - 2008 Colosa Inc.23 * Copyright (C) 2004 - 2011 Colosa Inc.
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as * it under the terms of the GNU Affero General Public License as
@@ -39,7 +40,7 @@
* application requirements. This class will only be generated as * application requirements. This class will only be generated as
* long as it does not already exist in the output directory. * long as it does not already exist in the output directory.
* *
* @package workflow.classes.model * @package workflow.engine.classes.model
*/ */
class IsoSubdivisionPeer extends BaseIsoSubdivisionPeer { class IsoSubdivisionPeer extends BaseIsoSubdivisionPeer {

View File

@@ -1,9 +1,10 @@
<?php <?php
/** /**
* Language.php * Language.php
* @package workflow.engine.classes.model
* *
* ProcessMaker Open Source Edition * ProcessMaker Open Source Edition
* Copyright (C) 2004 - 2008 Colosa Inc.23 * Copyright (C) 2004 - 2011 Colosa Inc.
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as * it under the terms of the GNU Affero General Public License as
@@ -35,7 +36,7 @@ require_once 'classes/model/om/BaseLanguage.php';
* application requirements. This class will only be generated as * application requirements. This class will only be generated as
* long as it does not already exist in the output directory. * long as it does not already exist in the output directory.
* *
* @package workflow.classes.model * @package workflow.engine.classes.model
*/ */
class Language extends BaseLanguage { class Language extends BaseLanguage {
function load($sLanUid) { function load($sLanUid) {

View File

@@ -1,9 +1,10 @@
<?php <?php
/** /**
* LanguagePeer.php * LanguagePeer.php
* @package workflow.engine.classes.model
* *
* ProcessMaker Open Source Edition * ProcessMaker Open Source Edition
* Copyright (C) 2004 - 2008 Colosa Inc.23 * Copyright (C) 2004 - 2011 Colosa Inc.
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as * it under the terms of the GNU Affero General Public License as
@@ -39,7 +40,7 @@
* application requirements. This class will only be generated as * application requirements. This class will only be generated as
* long as it does not already exist in the output directory. * long as it does not already exist in the output directory.
* *
* @package workflow.classes.model * @package workflow.engine.classes.model
*/ */
class LanguagePeer extends BaseLanguagePeer { class LanguagePeer extends BaseLanguagePeer {

View File

@@ -1,9 +1,10 @@
<?php <?php
/** /**
* Lexico.php * Lexico.php
* @package workflow.engine.classes.model
* *
* ProcessMaker Open Source Edition * ProcessMaker Open Source Edition
* Copyright (C) 2004 - 2008 Colosa Inc.23 * Copyright (C) 2004 - 2011 Colosa Inc.
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as * it under the terms of the GNU Affero General Public License as
@@ -35,7 +36,7 @@ require_once 'classes/model/om/BaseLexico.php';
* application requirements. This class will only be generated as * application requirements. This class will only be generated as
* long as it does not already exist in the output directory. * long as it does not already exist in the output directory.
* *
* @package workflow.classes.model * @package workflow.engine.classes.model
*/ */
class Lexico extends BaseLexico { class Lexico extends BaseLexico {

View File

@@ -1,9 +1,10 @@
<?php <?php
/** /**
* LexicoPeer.php * LexicoPeer.php
* @package workflow.engine.classes.model
* *
* ProcessMaker Open Source Edition * ProcessMaker Open Source Edition
* Copyright (C) 2004 - 2008 Colosa Inc.23 * Copyright (C) 2004 - 2011 Colosa Inc.
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as * it under the terms of the GNU Affero General Public License as
@@ -39,7 +40,7 @@
* application requirements. This class will only be generated as * application requirements. This class will only be generated as
* long as it does not already exist in the output directory. * long as it does not already exist in the output directory.
* *
* @package workflow.classes.model * @package workflow.engine.classes.model
*/ */
class LexicoPeer extends BaseLexicoPeer { class LexicoPeer extends BaseLexicoPeer {

View File

@@ -1,4 +1,8 @@
<?php <?php
/**
* LogCasesScheduler.php
* @package workflow.engine.classes.model
*/
require_once 'classes/model/om/BaseLogCasesScheduler.php'; require_once 'classes/model/om/BaseLogCasesScheduler.php';
@@ -12,7 +16,7 @@ require_once 'classes/model/om/BaseLogCasesScheduler.php';
* application requirements. This class will only be generated as * application requirements. This class will only be generated as
* long as it does not already exist in the output directory. * long as it does not already exist in the output directory.
* *
* @package workflow.classes.model * @package workflow.engine.classes.model
*/ */
class LogCasesScheduler extends BaseLogCasesScheduler { class LogCasesScheduler extends BaseLogCasesScheduler {
function getAllCriteria() { function getAllCriteria() {

View File

@@ -1,4 +1,8 @@
<?php <?php
/**
* LogCasesSchedulerPeer.php
* @package workflow.engine.classes.model
*/
// include base peer class // include base peer class
require_once 'classes/model/om/BaseLogCasesSchedulerPeer.php'; require_once 'classes/model/om/BaseLogCasesSchedulerPeer.php';
@@ -16,7 +20,7 @@
* application requirements. This class will only be generated as * application requirements. This class will only be generated as
* long as it does not already exist in the output directory. * long as it does not already exist in the output directory.
* *
* @package workflow.classes.model * @package workflow.engine.classes.model
*/ */
class LogCasesSchedulerPeer extends BaseLogCasesSchedulerPeer { class LogCasesSchedulerPeer extends BaseLogCasesSchedulerPeer {

View File

@@ -1,4 +1,8 @@
<?php <?php
/**
* LoginLog.php
* @package workflow.engine.classes.model
*/
require_once 'classes/model/om/BaseLoginLog.php'; require_once 'classes/model/om/BaseLoginLog.php';
@@ -12,7 +16,7 @@ require_once 'classes/model/om/BaseLoginLog.php';
* application requirements. This class will only be generated as * application requirements. This class will only be generated as
* long as it does not already exist in the output directory. * long as it does not already exist in the output directory.
* *
* @package workflow.classes.model * @package workflow.engine.classes.model
*/ */
class LoginLog extends BaseLoginLog { class LoginLog extends BaseLoginLog {
function create ($aData) function create ($aData)

View File

@@ -1,4 +1,8 @@
<?php <?php
/**
* LoginLogPeer.php
* @package workflow.engine.classes.model
*/
// include base peer class // include base peer class
require_once 'classes/model/om/BaseLoginLogPeer.php'; require_once 'classes/model/om/BaseLoginLogPeer.php';
@@ -16,7 +20,7 @@
* application requirements. This class will only be generated as * application requirements. This class will only be generated as
* long as it does not already exist in the output directory. * long as it does not already exist in the output directory.
* *
* @package workflow.classes.model * @package workflow.engine.classes.model
*/ */
class LoginLogPeer extends BaseLoginLogPeer { class LoginLogPeer extends BaseLoginLogPeer {

View File

@@ -1,4 +1,8 @@
<?php <?php
/**
* ObjectPermission.php
* @package workflow.engine.classes.model
*/
require_once 'classes/model/om/BaseObjectPermission.php'; require_once 'classes/model/om/BaseObjectPermission.php';
@@ -12,7 +16,7 @@ require_once 'classes/model/om/BaseObjectPermission.php';
* application requirements. This class will only be generated as * application requirements. This class will only be generated as
* long as it does not already exist in the output directory. * long as it does not already exist in the output directory.
* *
* @package workflow.classes.model * @package workflow.engine.classes.model
*/ */
class ObjectPermission extends BaseObjectPermission { class ObjectPermission extends BaseObjectPermission {

View File

@@ -1,4 +1,8 @@
<?php <?php
/**
* ObjectPermissionPeer.php
* @package workflow.engine.classes.model
*/
// include base peer class // include base peer class
require_once 'classes/model/om/BaseObjectPermissionPeer.php'; require_once 'classes/model/om/BaseObjectPermissionPeer.php';
@@ -16,7 +20,7 @@
* application requirements. This class will only be generated as * application requirements. This class will only be generated as
* long as it does not already exist in the output directory. * long as it does not already exist in the output directory.
* *
* @package workflow.classes.model * @package workflow.engine.classes.model
*/ */
class ObjectPermissionPeer extends BaseObjectPermissionPeer { class ObjectPermissionPeer extends BaseObjectPermissionPeer {

View File

@@ -1,9 +1,10 @@
<?php <?php
/** /**
* OutputDocument.php * OutputDocument.php
* @package workflow.engine.classes.model
* *
* ProcessMaker Open Source Edition * ProcessMaker Open Source Edition
* Copyright (C) 2004 - 2008 Colosa Inc. * Copyright (C) 2004 - 2011 Colosa Inc.
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as * it under the terms of the GNU Affero General Public License as
@@ -35,7 +36,7 @@ require_once 'classes/model/Content.php';
* application requirements. This class will only be generated as * application requirements. This class will only be generated as
* long as it does not already exist in the output directory. * long as it does not already exist in the output directory.
* *
* @package workflow.classes.model * @package workflow.engine.classes.model
*/ */
class OutputDocument extends BaseOutputDocument { class OutputDocument extends BaseOutputDocument {

View File

@@ -1,9 +1,10 @@
<?php <?php
/** /**
* OutputDocumentPeer.php * OutputDocumentPeer.php
* @package workflow.engine.classes.model
* *
* ProcessMaker Open Source Edition * ProcessMaker Open Source Edition
* Copyright (C) 2004 - 2008 Colosa Inc.23 * Copyright (C) 2004 - 2011 Colosa Inc.
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as * it under the terms of the GNU Affero General Public License as
@@ -39,7 +40,7 @@
* application requirements. This class will only be generated as * application requirements. This class will only be generated as
* long as it does not already exist in the output directory. * long as it does not already exist in the output directory.
* *
* @package workflow.classes.model * @package workflow.engine.classes.model
*/ */
class OutputDocumentPeer extends BaseOutputDocumentPeer { class OutputDocumentPeer extends BaseOutputDocumentPeer {

View File

@@ -1,9 +1,10 @@
<?php <?php
/** /**
* Process.php * Process.php
* @package workflow.engine.classes.model
* *
* ProcessMaker Open Source Edition * ProcessMaker Open Source Edition
* Copyright (C) 2004 - 2008 Colosa Inc.23 * Copyright (C) 2004 - 2011 Colosa Inc.
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as * it under the terms of the GNU Affero General Public License as
@@ -37,7 +38,7 @@ require_once 'classes/model/ProcessCategory.php';
* application requirements. This class will only be generated as * application requirements. This class will only be generated as
* long as it does not already exist in the output directory. * long as it does not already exist in the output directory.
* *
* @package workflow.classes.model * @package workflow.engine.classes.model
*/ */
class Process extends BaseProcess { class Process extends BaseProcess {
/** /**

View File

@@ -1,4 +1,8 @@
<?php <?php
/**
* ProcessCategory.php
* @package workflow.engine.classes.model
*/
require_once 'classes/model/om/BaseProcessCategory.php'; require_once 'classes/model/om/BaseProcessCategory.php';
@@ -12,7 +16,7 @@ require_once 'classes/model/om/BaseProcessCategory.php';
* application requirements. This class will only be generated as * application requirements. This class will only be generated as
* long as it does not already exist in the output directory. * long as it does not already exist in the output directory.
* *
* @package workflow.classes.model * @package workflow.engine.classes.model
*/ */
class ProcessCategory extends BaseProcessCategory { class ProcessCategory extends BaseProcessCategory {
function getAll($type='criteria'){ function getAll($type='criteria'){

View File

@@ -1,4 +1,8 @@
<?php <?php
/**
* ProcessCategoryPeer.php
* @package workflow.engine.classes.model
*/
// include base peer class // include base peer class
require_once 'classes/model/om/BaseProcessCategoryPeer.php'; require_once 'classes/model/om/BaseProcessCategoryPeer.php';
@@ -16,7 +20,7 @@
* application requirements. This class will only be generated as * application requirements. This class will only be generated as
* long as it does not already exist in the output directory. * long as it does not already exist in the output directory.
* *
* @package workflow.classes.model * @package workflow.engine.classes.model
*/ */
class ProcessCategoryPeer extends BaseProcessCategoryPeer { class ProcessCategoryPeer extends BaseProcessCategoryPeer {

View File

@@ -1,9 +1,10 @@
<?php <?php
/** /**
* ProcessOwner.php * ProcessOwner.php
* @package workflow.engine.classes.model
* *
* ProcessMaker Open Source Edition * ProcessMaker Open Source Edition
* Copyright (C) 2004 - 2008 Colosa Inc.23 * Copyright (C) 2004 - 2011 Colosa Inc.
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as * it under the terms of the GNU Affero General Public License as
@@ -35,7 +36,7 @@ require_once 'classes/model/om/BaseProcessOwner.php';
* application requirements. This class will only be generated as * application requirements. This class will only be generated as
* long as it does not already exist in the output directory. * long as it does not already exist in the output directory.
* *
* @package workflow.classes.model * @package workflow.engine.classes.model
*/ */
class ProcessOwner extends BaseProcessOwner { class ProcessOwner extends BaseProcessOwner {

View File

@@ -1,9 +1,10 @@
<?php <?php
/** /**
* ProcessOwnerPeer.php * ProcessOwnerPeer.php
* @package workflow.engine.classes.model
* *
* ProcessMaker Open Source Edition * ProcessMaker Open Source Edition
* Copyright (C) 2004 - 2008 Colosa Inc.23 * Copyright (C) 2004 - 2011 Colosa Inc.
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as * it under the terms of the GNU Affero General Public License as
@@ -39,7 +40,7 @@
* application requirements. This class will only be generated as * application requirements. This class will only be generated as
* long as it does not already exist in the output directory. * long as it does not already exist in the output directory.
* *
* @package workflow.classes.model * @package workflow.engine.classes.model
*/ */
class ProcessOwnerPeer extends BaseProcessOwnerPeer { class ProcessOwnerPeer extends BaseProcessOwnerPeer {

View File

@@ -1,9 +1,10 @@
<?php <?php
/** /**
* ProcessPeer.php * ProcessPeer.php
* @package workflow.engine.classes.model
* *
* ProcessMaker Open Source Edition * ProcessMaker Open Source Edition
* Copyright (C) 2004 - 2008 Colosa Inc.23 * Copyright (C) 2004 - 2011 Colosa Inc.
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as * it under the terms of the GNU Affero General Public License as
@@ -39,7 +40,7 @@
* application requirements. This class will only be generated as * application requirements. This class will only be generated as
* long as it does not already exist in the output directory. * long as it does not already exist in the output directory.
* *
* @package workflow.classes.model * @package workflow.engine.classes.model
*/ */
class ProcessPeer extends BaseProcessPeer { class ProcessPeer extends BaseProcessPeer {

View File

@@ -1,4 +1,8 @@
<?php <?php
/**
* ProcessUser.php
* @package workflow.engine.classes.model
*/
require_once 'classes/model/om/BaseProcessUser.php'; require_once 'classes/model/om/BaseProcessUser.php';
@@ -12,7 +16,7 @@ require_once 'classes/model/om/BaseProcessUser.php';
* application requirements. This class will only be generated as * application requirements. This class will only be generated as
* long as it does not already exist in the output directory. * long as it does not already exist in the output directory.
* *
* @package workflow.classes.model * @package workflow.engine.classes.model
*/ */
class ProcessUser extends BaseProcessUser { class ProcessUser extends BaseProcessUser {
public function create($aData) public function create($aData)

View File

@@ -1,4 +1,8 @@
<?php <?php
/**
* ProcessUserPeer.php
* @package workflow.engine.classes.model
*/
// include base peer class // include base peer class
require_once 'classes/model/om/BaseProcessUserPeer.php'; require_once 'classes/model/om/BaseProcessUserPeer.php';
@@ -16,7 +20,7 @@
* application requirements. This class will only be generated as * application requirements. This class will only be generated as
* long as it does not already exist in the output directory. * long as it does not already exist in the output directory.
* *
* @package workflow.classes.model * @package workflow.engine.classes.model
*/ */
class ProcessUserPeer extends BaseProcessUserPeer { class ProcessUserPeer extends BaseProcessUserPeer {

View File

@@ -1,9 +1,10 @@
<?php <?php
/** /**
* ReportTable.php * ReportTable.php
* @package workflow.engine.classes.model
* *
* ProcessMaker Open Source Edition * ProcessMaker Open Source Edition
* Copyright (C) 2004 - 2008 Colosa Inc.23 * Copyright (C) 2004 - 2011 Colosa Inc.
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as * it under the terms of the GNU Affero General Public License as
@@ -36,7 +37,7 @@ require_once 'classes/model/om/BaseReportTable.php';
* application requirements. This class will only be generated as * application requirements. This class will only be generated as
* long as it does not already exist in the output directory. * long as it does not already exist in the output directory.
* *
* @package workflow.classes.model * @package workflow.engine.classes.model
*/ */
class ReportTable extends BaseReportTable { class ReportTable extends BaseReportTable {
/** /**

View File

@@ -1,4 +1,8 @@
<?php <?php
/**
* ReportTablePeer.php
* @package workflow.engine.classes.model
*/
// include base peer class // include base peer class
require_once 'classes/model/om/BaseReportTablePeer.php'; require_once 'classes/model/om/BaseReportTablePeer.php';
@@ -16,7 +20,7 @@
* application requirements. This class will only be generated as * application requirements. This class will only be generated as
* long as it does not already exist in the output directory. * long as it does not already exist in the output directory.
* *
* @package workflow.classes.model * @package workflow.engine.classes.model
*/ */
class ReportTablePeer extends BaseReportTablePeer { class ReportTablePeer extends BaseReportTablePeer {

View File

@@ -1,4 +1,8 @@
<?php <?php
/**
* ReportVar.php
* @package workflow.engine.classes.model
*/
require_once 'classes/model/om/BaseReportVar.php'; require_once 'classes/model/om/BaseReportVar.php';
@@ -12,7 +16,7 @@ require_once 'classes/model/om/BaseReportVar.php';
* application requirements. This class will only be generated as * application requirements. This class will only be generated as
* long as it does not already exist in the output directory. * long as it does not already exist in the output directory.
* *
* @package workflow.classes.model * @package workflow.engine.classes.model
*/ */
class ReportVar extends BaseReportVar { class ReportVar extends BaseReportVar {
/* /*

View File

@@ -1,4 +1,8 @@
<?php <?php
/**
* ReportVarPeer.php
* @package workflow.engine.classes.model
*/
// include base peer class // include base peer class
require_once 'classes/model/om/BaseReportVarPeer.php'; require_once 'classes/model/om/BaseReportVarPeer.php';
@@ -16,7 +20,7 @@
* application requirements. This class will only be generated as * application requirements. This class will only be generated as
* long as it does not already exist in the output directory. * long as it does not already exist in the output directory.
* *
* @package workflow.classes.model * @package workflow.engine.classes.model
*/ */
class ReportVarPeer extends BaseReportVarPeer { class ReportVarPeer extends BaseReportVarPeer {

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