1: <?php
2: 3: 4: 5: 6:
7: include_once $GLOBALS['THRIFT_ROOT'].'/Thrift.php';
8:
9: include_once $GLOBALS['THRIFT_ROOT'].'/packages/reflection_limited/reflection_limited_types.php';
10:
11: $GLOBALS['E_fb_status'] = array(
12: 'DEAD' => 0,
13: 'STARTING' => 1,
14: 'ALIVE' => 2,
15: 'STOPPING' => 3,
16: 'STOPPED' => 4,
17: 'WARNING' => 5,
18: );
19:
20: final class fb_status {
21: const DEAD = 0;
22: const STARTING = 1;
23: const ALIVE = 2;
24: const STOPPING = 3;
25: const STOPPED = 4;
26: const WARNING = 5;
27: static public $__names = array(
28: 0 => 'DEAD',
29: 1 => 'STARTING',
30: 2 => 'ALIVE',
31: 3 => 'STOPPING',
32: 4 => 'STOPPED',
33: 5 => 'WARNING',
34: );
35: }
36:
37: ?>
38: