Commit 0b8f2ca688653f5d4f681bbbfbf11dc6f60cce55

Authored by rob
1 parent 279cdd9d

Added constants


git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@641 c91229c3-7414-0410-bfa2-8a42b809f60b
lib/documentmanagement/DocumentTransaction.inc
1 1 <?php
  2 +
  3 +DEFINE("CREATE", 1);
  4 +DEFINE("UPDATE", 2);
  5 +DEFINE("DELETE", 3);
  6 +DEFINE("RENAME", 4);
  7 +DEFINE("MOVE", 5);
  8 +DEFINE("DOWNLOAD", 5);
  9 +
2 10 /**
3 11 *
4 12 * Class DocumentTransaction
... ...
lib/web/WebDocument.inc
1 1 <?php
  2 +
  3 +DEFINE("PENDING",1);
  4 +DEFINE("PUBLISHED", 2);
  5 +DEFINE("NOT_PUBLISHED",3);
  6 +
2 7 /**
3 8 *
4 9 * Class Web Documents
... ...