@@ -142,6 +142,15 @@ function wpcom_register_default_launchpad_checklists() {
142142 )
143143 );
144144
145+ wpcom_register_launchpad_task (
146+ array (
147+ 'id ' => 'setup_blog ' ,
148+ 'title ' => __ ( 'Name your blog ' , 'jetpack-mu-wpcom ' ),
149+ 'is_complete_callback ' => '__return_false ' ,
150+ 'is_disabled_callback ' => '__return_false ' ,
151+ )
152+ );
153+
145154 wpcom_register_launchpad_task (
146155 array (
147156 'id ' => 'setup_general ' ,
@@ -171,6 +180,15 @@ function wpcom_register_default_launchpad_checklists() {
171180 )
172181 );
173182
183+ wpcom_register_launchpad_task (
184+ array (
185+ 'id ' => 'blog_launched ' ,
186+ 'title ' => __ ( 'Launch your blog ' , 'jetpack-mu-wpcom ' ),
187+ 'isLaunchTask ' => true ,
188+ 'add_listener_callback ' => 'wpcom_add_site_launch_listener ' ,
189+ )
190+ );
191+
174192 wpcom_register_launchpad_task (
175193 array (
176194 'id ' => 'setup_write ' ,
@@ -314,6 +332,20 @@ function wpcom_register_default_launchpad_checklists() {
314332 )
315333 );
316334
335+ wpcom_register_launchpad_task_list (
336+ array (
337+ 'id ' => 'start-writing ' ,
338+ 'title ' => 'Start Writing ' ,
339+ 'task_ids ' => array (
340+ 'first_post_published ' ,
341+ 'setup_blog ' ,
342+ 'domain_upsell ' ,
343+ 'plan_selected ' ,
344+ 'blog_launched ' ,
345+ ),
346+ )
347+ );
348+
317349 // This is the hook that allows other plugins to register their own checklists.
318350 do_action ( 'wpcom_register_launchpad_tasks ' );
319351
0 commit comments