Your browser must have JavaScript enabled in order to view this page.
 >  >
 
Welcome Guest#213 Login/register    Go to Bottom
Go to Top

Source for file move.php

Documentation is available at move.php

  1. <?php
  2. /**
  3.  * Constants with error return codes for DpObject::moveDpObject
  4.  *
  5.  * DutchPIPE version 0.4; PHP version 5
  6.  *
  7.  * LICENSE: This source file is subject to version 1.0 of the DutchPIPE license.
  8.  * If you did not receive a copy of the DutchPIPE license, you can obtain one at
  9.  * http://dutchpipe.org/license/1_0.txt or by sending a note to
  10.  * license@dutchpipe.org, in which case you will be mailed a copy immediately.
  11.  *
  12.  * @package    DutchPIPE
  13.  * @subpackage dpuniverse_include
  14.  * @author     Lennert Stock <ls@dutchpipe.org>
  15.  * @copyright  2006, 2007 Lennert Stock
  16.  * @license    http://dutchpipe.org/license/1_0.txt  DutchPIPE License
  17.  * @version    Subversion: $Id: move.php 277 2007-08-19 18:15:10Z ls $
  18.  * @link       http://dutchpipe.org/manual/package/DutchPIPE
  19.  * @see        DpObject.php::moveDpObject()
  20.  */
  21.  
  22. /**
  23.  * Too heavy for destination
  24.  *
  25.  * Not used yet.
  26.  *
  27.  * @ignore
  28.  */
  29. define('E_MOVEOBJECT_HEAVY'1);
  30. define('E_MOVEOBJECT_VOLUME'2);
  31.  
  32. /**
  33.  * Can't drop
  34.  *
  35.  * @see        DpObject.php::moveDpObject()
  36.  */
  37. define('E_MOVEOBJECT_NODROP'3);
  38.  
  39. /**
  40.  * Can't take it from its container
  41.  *
  42.  * Not used yet.
  43.  *
  44.  * @ignore
  45.  */
  46. define('E_MOVEOBJECT_NOFROM'4);
  47.  
  48. /**
  49.  * Source object can't be inserted
  50.  *
  51.  * @see        DpObject.php::moveDpObject()
  52.  */
  53. define('E_MOVEOBJECT_NOSRCINS'5);
  54.  
  55. /**
  56.  * Can't insert in destination object
  57.  *
  58.  * @see        DpObject.php::moveDpObject()
  59.  */
  60. define('E_MOVEOBJECT_NODSTINS'6);
  61.  
  62. /**
  63.  * Can't pick the object up
  64.  *
  65.  * @see        DpObject.php::moveDpObject()
  66.  */
  67. define('E_MOVEOBJECT_NOGET'7);
  68.  
  69. /**
  70.  * Bad destination
  71.  *
  72.  * @see        DpObject.php::moveDpObject()
  73.  */
  74. define('E_MOVEOBJECT_BADDEST'8);
  75.  
  76. /**
  77.  * Moving object was destroyed
  78.  *
  79.  * Not used yet.
  80.  *
  81.  * @ignore
  82.  */
  83. define('E_MOVEOBJECT_REMOVED'10);
  84.  
  85. /**
  86.  * We don't want to be moved
  87.  *
  88.  * Not used yet.
  89.  *
  90.  * @ignore
  91.  */
  92. define('E_MOVEOBJECT_NOTSELF'9);
  93.  
  94. /**
  95.  * Environment won't let us go
  96.  *
  97.  * Not used yet.
  98.  *
  99.  * @ignore
  100.  */
  101. define('E_MOVEOBJECT_NOTENV'10);
  102.  
  103. /**
  104.  * Destination won't accept us
  105.  *
  106.  * Not used yet.
  107.  *
  108.  * @ignore
  109.  */
  110. define('E_MOVEOBJECT_NOTDEST'11);
  111.  
  112. /**
  113.  * Illegal amount was given for a heap (for instance more credits than you have)
  114.  *
  115.  * Not used yet.
  116.  *
  117.  * @ignore
  118.  */
  119. define('E_MOVEOBJECT_BADHEAP'12);
  120.  
  121. ?>

Documentation generated on Mon, 03 Sep 2007 22:22:11 +0200 by phpDocumentor 1.3.0RC6

Click me!
Guest#213
 
 
 
  Go to Top
 
 
Input Field OptionsClose Input Field Go to Top
 
Legal Notices | Copyright © 2006, 2007 Lennert Stock. All rights reserved. Last update: Mon Sep 03 2007, 21:50 CET.