Advertisement
fruffl

iFace Struct for PHP

Aug 28th, 2012
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 3.60 KB | None | 0 0
  1. <?PHP
  2.  
  3.     /**
  4.      * ILLI
  5.      *
  6.      * @category    ILLI_Core
  7.      * @package ILLI
  8.      * @link    http://illi.be
  9.      * @license http://l.illi.be
  10.      * @copyright   ILLI Conference
  11.      * @author  ILLI\Core\Dynamic\Spl
  12.      */
  13.     NAMESPACE ILLI\Core;
  14.  
  15.     /**
  16.      * ILLI Auto Generated Spl
  17.      *
  18.      * @category    ILLI_Core
  19.      * @package ILLI
  20.      * @subpackage  Core
  21.      * @link    http://illi.be
  22.      * @license http://l.illi.be
  23.      * @copyright   ILLI Conference
  24.      * @author  ILLI\Core\Dynamic\Spl
  25.      * @since   3.0.2a
  26.      * @version 3.0.2c
  27.      */
  28.     INTERFACE iMemberfield
  29.     {
  30.         /**
  31.          * DEBUG_IS_LOCKED = 2
  32.          *
  33.          *
  34.          * bin      10
  35.          * hex      2
  36.          * dec      2
  37.          *
  38.          * @const   integer
  39.          */
  40.         CONST DEBUG_IS_LOCKED       = 0x00000000000000000002;
  41.         /**
  42.          * DEBUG_IS_TOUCHED = 4
  43.          *
  44.          *
  45.          * bin      100
  46.          * hex      4
  47.          * dec      4
  48.          *
  49.          * @const   integer
  50.          */
  51.         CONST DEBUG_IS_TOUCHED      = 0x00000000000000000004;
  52.         /**
  53.          * DEBUG_IS_REQUIRED = 8
  54.          *
  55.          *
  56.          * bin      1000
  57.          * hex      8
  58.          * dec      8
  59.          *
  60.          * @const   integer
  61.          */
  62.         CONST DEBUG_IS_REQUIRED     = 0x00000000000000000008;
  63.         /**
  64.          * DEBUG_CONTAINS = 16
  65.          *
  66.          *
  67.          * bin      10000
  68.          * hex      10
  69.          * dec      16
  70.          *
  71.          * @const   integer
  72.          */
  73.         CONST DEBUG_CONTAINS        = 0x00000000000000000010;
  74.         /**
  75.          * DEBUG_INITIALIZED_AS = 32
  76.          *
  77.          *
  78.          * bin      100000
  79.          * hex      20
  80.          * dec      32
  81.          *
  82.          * @const   integer
  83.          */
  84.         CONST DEBUG_INITIALIZED_AS  = 0x00000000000000000020;
  85.         /**
  86.          * DEBUG_ACCEPTED_TYPES = 64
  87.          *
  88.          *
  89.          * bin      1000000
  90.          * hex      40
  91.          * dec      64
  92.          *
  93.          * @const   integer
  94.          */
  95.         CONST DEBUG_ACCEPTED_TYPES  = 0x00000000000000000040;
  96.         /**
  97.          * DEBUG_WHITELISTE = 128
  98.          *
  99.          *
  100.          * bin      10000000
  101.          * hex      80
  102.          * dec      128
  103.          *
  104.          * @const   integer
  105.          */
  106.         CONST DEBUG_WHITELISTE      = 0x00000000000000000080;
  107.         /**
  108.          * DEBUG_BLACKLIST = 256
  109.          *
  110.          *
  111.          * bin      100000000
  112.          * hex      100
  113.          * dec      256
  114.          *
  115.          * @const   integer
  116.          */
  117.         CONST DEBUG_BLACKLIST       = 0x00000000000000000100;
  118.         /**
  119.          * DEBUG_EVENT_GET = 512
  120.          *
  121.          *
  122.          * bin      1000000000
  123.          * hex      200
  124.          * dec      512
  125.          *
  126.          * @const   integer
  127.          */
  128.         CONST DEBUG_EVENT_GET       = 0x00000000000000000200;
  129.         /**
  130.          * DEBUG_EVENT_SET = 1024
  131.          *
  132.          *
  133.          * bin      10000000000
  134.          * hex      400
  135.          * dec      1024
  136.          *
  137.          * @const   integer
  138.          */
  139.         CONST DEBUG_EVENT_SET       = 0x00000000000000000400;
  140.         /**
  141.          * DEBUG_IS_PRIVATE_SET = 2048
  142.          *
  143.          *
  144.          * bin      100000000000
  145.          * hex      800
  146.          * dec      2048
  147.          *
  148.          * @const   integer
  149.          */
  150.         CONST DEBUG_IS_PRIVATE_SET  = 0x00000000000000000800;
  151.         /**
  152.          * DEBUG_IS_PRIVATE_GET = 4096
  153.          *
  154.          *
  155.          * bin      1000000000000
  156.          * hex      1000
  157.          * dec      4096
  158.          *
  159.          * @const   integer
  160.          */
  161.         CONST DEBUG_IS_PRIVATE_GET  = 0x00000000000000001000;
  162.         /**
  163.          * DEBUG_UNDO_STEPS = 8192
  164.          *
  165.          *
  166.          * bin      10000000000000
  167.          * hex      2000
  168.          * dec      8192
  169.          *
  170.          * @const   integer
  171.          */
  172.         CONST DEBUG_UNDO_STEPS      = 0x00000000000000002000;
  173.         /**
  174.          * DEBUG_UNDO_STACK = 16384
  175.          *
  176.          *
  177.          * bin      100000000000000
  178.          * hex      4000
  179.          * dec      16384
  180.          *
  181.          * @const   integer
  182.          */
  183.         CONST DEBUG_UNDO_STACK      = 0x00000000000000004000;
  184.         /**
  185.          * DEBUG_REDO_STEPS = 32768
  186.          *
  187.          *
  188.          * bin      1000000000000000
  189.          * hex      8000
  190.          * dec      32768
  191.          *
  192.          * @const   integer
  193.          */
  194.         CONST DEBUG_REDO_STEPS      = 0x00000000000000008000;
  195.         /**
  196.          * DEBUG_REDO_STACK = 65536
  197.          *
  198.          *
  199.          * bin      10000000000000000
  200.          * hex      10000
  201.          * dec      65536
  202.          *
  203.          * @const   integer
  204.          */
  205.         CONST DEBUG_REDO_STACK      = 0x00000000000000010000;
  206.     }
  207.  
  208.  
  209.     // created on 2012-08-29 @033
  210.     // created by /var/www/luc/dev/sh.t.mll.php5.4.5.wrapper, line 1842, \dev\Sunrise\make::FlagMatte
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement