1 | <?php |
||
21 | class Plan implements RouteInterface |
||
22 | { |
||
23 | |||
24 | /** |
||
25 | Root |
||
26 | */ |
||
27 | public static function root() |
||
31 | /* |
||
32 | Create plan |
||
33 | */ |
||
34 | |||
35 | /** |
||
36 | * create |
||
37 | * Insert description here |
||
38 | * |
||
39 | * @return |
||
40 | * |
||
41 | * @access |
||
42 | * @static |
||
43 | * @see |
||
44 | * @since |
||
45 | */ |
||
46 | public static function create() |
||
63 | /* |
||
64 | Get plan |
||
65 | */ |
||
66 | |||
67 | /** |
||
68 | * fetch |
||
69 | * Insert description here |
||
70 | * |
||
71 | * @return |
||
72 | * |
||
73 | * @access |
||
74 | * @static |
||
75 | * @see |
||
76 | * @since |
||
77 | */ |
||
78 | public static function fetch() |
||
84 | |||
85 | /* |
||
86 | List plan |
||
87 | */ |
||
88 | |||
89 | /** |
||
90 | * getList |
||
91 | * Insert description here |
||
92 | * |
||
93 | * @return |
||
94 | * |
||
95 | * @access |
||
96 | * @static |
||
97 | * @see |
||
98 | * @since |
||
99 | */ |
||
100 | public static function getList() |
||
105 | /* |
||
106 | Update plan |
||
107 | */ |
||
108 | |||
109 | /** |
||
110 | * update |
||
111 | * Insert description here |
||
112 | * |
||
113 | * @return |
||
114 | * |
||
115 | * @access |
||
116 | * @static |
||
117 | * @see |
||
118 | * @since |
||
119 | */ |
||
120 | public static function update() |
||
137 | } |
||
138 |