| 1 |
<?php |
| 2 |
|
| 3 |
namespace Barn2\Plugin\Posts_Table_Search_Sort\Admin\Wizard\Steps; |
| 4 |
|
| 5 |
use Barn2\Plugin\Posts_Table_Search_Sort\Dependencies\Setup_Wizard\Steps\Ready; |
| 6 |
|
| 7 |
/** |
| 8 |
* Completed step. |
| 9 |
* |
| 10 |
* @package Barn2\posts-data-table |
| 11 |
* @author Barn2 Plugins <info@barn2.com> |
| 12 |
* @license GPL-3.0 |
| 13 |
* @copyright Barn2 Media Ltd |
| 14 |
*/ |
| 15 |
class Completed extends Ready { |
| 16 |
|
| 17 |
/** |
| 18 |
* {@inheritdoc} |
| 19 |
*/ |
| 20 |
public function init() { |
| 21 |
parent::init(); |
| 22 |
$this->set_name( esc_html__( 'Ready', 'posts-data-table' ) ); |
| 23 |
$this->set_title( esc_html__( 'Setup Complete', 'posts-data-table' ) ); |
| 24 |
$this->set_description( |
| 25 |
sprintf( |
| 26 |
__( 'You’re all set! Take a look at our <a href="%s" target="_blank">Knowledge Base</a> for further instructions, tutorials, videos, and much more.', 'posts-data-table' ), |
| 27 |
'https://barn2.com/kb/list-your-wordpress-blog-posts/' |
| 28 |
) |
| 29 |
); |
| 30 |
} |
| 31 |
|
| 32 |
} |
| 33 |
|