1 | <?php |
||
11 | class Jetpack_Wizard { |
||
12 | |||
13 | /** |
||
14 | * Has the user started the Wizard? |
||
15 | * |
||
16 | * @return bool |
||
17 | */ |
||
18 | public static function is_started() { |
||
22 | |||
23 | /** |
||
24 | * Has the user finished the Wizard? |
||
25 | * |
||
26 | * @return bool |
||
27 | */ |
||
28 | public static function is_finished() { |
||
32 | |||
33 | // TODO: move option save from the endpoint into here. |
||
34 | } |
||
35 |