-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #146 from tomolimo/4.0/bugfixes
Fixed add solution that was not compliant with GLPI9.5
- Loading branch information
Showing
9 changed files
with
378 additions
and
316 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,23 @@ | ||
<?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 { | ||
|
||
// postdata are of the form: | ||
// {"form":{"RELEASE_DONE":"0","btnGLPISendRequest":"submit"},"UID":"28421020557bffc5b374850018853291","__DynaformName__":"51126098657bd96b286ded7016691792_28421020557bffc5b374850018853291","__notValidateThisFields__":"[]","DynaformRequiredFields":"[]","APP_UID":"6077575685836f7d89cabe6013770123","DEL_INDEX":"4"} | ||
|
||
|
||
const WAITING_DATA = 1; | ||
const DATA_READY = 2; | ||
const DONE = 3; | ||
const NOT_DONE = 4; | ||
|
||
} | ||
<?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 { | ||
|
||
// postdata are of the form: | ||
// {"form":{"RELEASE_DONE":"0","btnGLPISendRequest":"submit"},"UID":"28421020557bffc5b374850018853291","__DynaformName__":"51126098657bd96b286ded7016691792_28421020557bffc5b374850018853291","__notValidateThisFields__":"[]","DynaformRequiredFields":"[]","APP_UID":"6077575685836f7d89cabe6013770123","DEL_INDEX":"4"} | ||
|
||
const CURL_ERROR = 0; | ||
const WAITING_DATA = 1; | ||
const DATA_READY = 2; | ||
const DONE = 3; | ||
const NOT_DONE = 4; | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.