| 1 |
<?php |
| 2 |
/** |
| 3 |
* Template for displaying finish step. |
| 4 |
* |
| 5 |
* @author ThimPres |
| 6 |
* @package LearnPress/Admin/Views |
| 7 |
* @version 3.0.0 |
| 8 |
*/ |
| 9 |
|
| 10 |
defined( 'ABSPATH' ) or exit; |
| 11 |
?> |
| 12 |
<h2><?php _e( 'Finish', 'learnpress' ); ?></h2> |
| 13 |
|
| 14 |
<p><?php _e( 'LearnPress LMS is ready to go!', 'learnpress' ); ?></p> |
| 15 |
|
| 16 |
<p class="finish-buttons"> |
| 17 |
<a class="button" |
| 18 |
id="install-sample-course" |
| 19 |
href="<?php echo esc_url_raw( admin_url( 'admin.php?page=learn-press-tools' ) ); ?>"> |
| 20 |
<?php _e( 'Install a demo course', 'learnpress' ); ?> |
| 21 |
</a> |
| 22 |
|
| 23 |
<a class="button" href="https://docspress.thimpress.com/admin-learnpress-4-0/"> |
| 24 |
<?php _e( 'View Documentation', 'learnpress' ); ?> |
| 25 |
</a> |
| 26 |
|
| 27 |
<a class="button" href="<?php echo esc_url_raw( admin_url( 'post-new.php?post_type=lp_course' ) ); ?>"> |
| 28 |
<?php _e( 'Create a new course', 'learnpress' ); ?> |
| 29 |
</a> |
| 30 |
|
| 31 |
<a class="button" href="<?php echo esc_url_raw( admin_url( 'index.php' ) ); ?>"> |
| 32 |
<?php _e( 'Back to Dashboard', 'learnpress' ); ?> |
| 33 |
</a> |
| 34 |
</p> |
| 35 |
|