2017-02-28 13:56:37 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* PluginProcessmakerCrontaskaction is used to manage actions between cases
|
|
|
|
|
*
|
|
|
|
|
* Allows actions: routing cases (called slaves) from another case (called master)
|
|
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
* @version 1.0
|
|
|
|
|
* @author MoronO
|
|
|
|
|
*/
|
|
|
|
|
class PluginProcessmakerCrontaskaction extends CommonDBTM {
|
|
|
|
|
|
2017-12-29 16:32:39 +01:00
|
|
|
// postdata are of the form:
|
2017-02-28 13:56:37 +01:00
|
|
|
// {"form":{"RELEASE_DONE":"0","btnGLPISendRequest":"submit"},"UID":"28421020557bffc5b374850018853291","__DynaformName__":"51126098657bd96b286ded7016691792_28421020557bffc5b374850018853291","__notValidateThisFields__":"[]","DynaformRequiredFields":"[]","APP_UID":"6077575685836f7d89cabe6013770123","DEL_INDEX":"4"}
|
|
|
|
|
|
|
|
|
|
|
2019-01-14 16:19:24 +01:00
|
|
|
const WAITING_DATA = 1;
|
|
|
|
|
const DATA_READY = 2;
|
|
|
|
|
const DONE = 3;
|
|
|
|
|
const NOT_DONE = 4;
|
2017-02-28 13:56:37 +01:00
|
|
|
|
2019-01-14 16:19:24 +01:00
|
|
|
}
|