Source for file statuscodes.php

Documentation is available at statuscodes.php

  1. <?php
  2. /**
  3. * Status codes for actions
  4. *
  5. @author    Stuart Prescott
  6. @copyright  Copyright Stuart Prescott
  7. @license    http://opensource.org/licenses/gpl-license.php GNU Public License
  8. @version    $Id$
  9. @package    Bumblebee
  10. @subpackage Misc
  11. */
  12.  
  13. /** Load ancillary functions */
  14. require_once 'inc/typeinfo.php';
  15.  
  16. /** Status: there was nothing to do (NO-OP) */
  17. define('STATUS_NOOP',      0);
  18. /** Status: Everything was OK. */
  19. define('STATUS_OK',        1);
  20. /** Status: Proceeded OK but generated warnings */
  21. define('STATUS_WARN',      2);
  22. /** Status: Did not proceed, generated errors */
  23. define('STATUS_ERR',       4);
  24. /** Status: Did not proceed, action is forbidden */
  25. define('STATUS_FORBIDDEN'STATUS_ERR 8);
  26.  
  27. ?>

Documentation generated on Tue, 06 Mar 2007 10:02:00 +0000 by phpDocumentor 1.3.0