1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<?php
/**
* Setup Wizard step: Finish
*
* @since 4.4.4
* @version 4.8.0
*
* @property LLMS_Admin_Setup_Wizard $this Setup wizard class instance.
*/
defined( 'ABSPATH' ) || exit;
$courses = LLMS_Export_API::list( 1, 3 );
?>
<h1><?php _e( 'Setup Complete!', 'lifterlms' ); ?></h1>
<p><?php _e( 'Here\'s some resources to help you get familiar with LifterLMS:', 'lifterlms' ); ?></p>
<ul>
<li><span class="dashicons dashicons-format-video"></span> <a href="https://demo.lifterlms.com/course/how-to-build-a-learning-management-system-with-lifterlms/" target="_blank"><?php _e( 'Watch the LifterLMS video tutorials', 'lifterlms' ); ?></a></li>
<li><span class="dashicons dashicons-admin-page"></span> <a href="https://lifterlms.com/docs/getting-started-with-lifterlms/" target="_blank"><?php _e( 'Read the LifterLMS Getting Started Guide', 'lifterlms' ); ?></a></li>
</ul>
<br>
<h1><?php _e( 'Import Sample Courses and Templates!', 'lifterlms' ); ?></h1>
<p><?php _e( 'Accelerate your progress by installing a quick LifterLMS training course and useful course templates.', 'lifterlms' ); ?></p>
<?php require LLMS_PLUGIN_DIR . 'includes/admin/views/importable-courses.php'; ?>
<div class="llms-importing-msgs">
<p class="llms-importing-msg single">
<?php
printf(
// Translators: %s = anchor link to LifterLMS.com.
__( 'The selected course will be downloaded and imported into this site from %s.', 'lifterlms' ),
'<a href="https://lifterlms.com" target="_blank">LifterLMS.com</a>'
);
?>
</p>
<p class="llms-importing-msg multiple">
<?php
printf(
// Translators: %1$s = The number of selected courses; %2$s = anchor link to LifterLMS.com.
__( 'The %1$s selected courses will be downloaded and imported into this site from %2$s.', 'lifterlms' ),
'<span id="llms-importing-number">2</span>',
'<a href="https://lifterlms.com" target="_blank">LifterLMS.com</a>'
);
?>
</p>
</div>