PluginProbe
Lasso Lite – Affiliate Link Manager & Product Displays / 151
Lasso Lite – Affiliate Link Manager & Product Displays v151
158 157 155 156 154 153 152 151 150 149 148 trunk 0.9.9 104 105 106 107 108 109 110 111 112 113 114 115 All 57 releases
simple-urls / admin / views / onboarding / import-step.php

import-step.php in Lasso Lite – Affiliate Link Manager & Product Displays 151, at admin/views/onboarding/import-step.php

70 lines 2.4 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 use LassoLite\Classes\Helper;
3 ?>
4
5 <div class="tab-item d-none text-center" data-step="import">
6 <div class="progressbar_container">
7 <ul class="progressbar">
8 <li class="step-get-started complete">Welcome</li>
9 <li class="step-display-design complete" data-step="display">Display Designer</li>
10 <li class="step-amazon-info complete" data-step="amazon">Amazon Associates</li>
11 <li class="step-connect-lasso complete" data-step="connect-lasso">Connect to Lasso</li>
12 <li class="step-import active">Imports</li>
13 </ul>
14 </div>
15
16 <div class="onboarding_header text-center">
17 <h1 class="font-weight-bold">Imports</h1>
18 &nbsp;<a href="https://support.getlasso.co/en/articles/4005802-how-to-import-link-from-another-plugin" target="_blank" class="btn btn-sm learn-btn">
19 <i class="far fa-info-circle"></i> Learn
20 </a>
21 </div>
22
23 <!-- IMPORT -->
24 <input id="total-posts" class="d-none" value="0" />
25 <section class="px-3">
26 <div class="lite-container">
27 <?php require_once SIMPLE_URLS_DIR . '/admin/views/import/header.php'; ?>
28
29 <!-- LINKS TO IMPORT -->
30 <div class="white-bg rounded shadow">
31 <div class="px-4 pt-4 pb-2 font-weight-bold dark-gray d-lg-block">
32 <div class="row align-items-center">
33 <div class="col-4">Link Title</div>
34 <div class="col">Import Target</div>
35 <div class="col-1">Plugin</div>
36 <div class="col-1 text-center"></div>
37 <div class="col-1 text-center"></div>
38 </div>
39 </div>
40
41 <div id="report-content"></div>
42 </div>
43
44 <!-- PAGINATION -->
45 <div class="pagination row align-items-center no-gutters pb-3 pt-0"></div>
46 </div>
47
48 </section>
49
50 <!-- MODALS -->
51 <?php require_once SIMPLE_URLS_DIR . '/admin/views/modals/import-all-confirm.php'; ?>
52 <?php require_once SIMPLE_URLS_DIR . '/admin/views/modals/revert-all-confirm.php'; ?>
53 <?php require_once SIMPLE_URLS_DIR . '/admin/views/modals/import-confirm.php'; ?>
54 <?php require_once SIMPLE_URLS_DIR . '/admin/views/modals/revert-confirm.php'; ?>
55 <?php require_once SIMPLE_URLS_DIR . '/admin/views/modals/url-save.php'; ?>
56
57 <?php
58 $page = $_GET['page'] ?? '';
59 $template_variables = array( 'page' => $page );
60 Helper::include_with_variables( SIMPLE_URLS_DIR . '/admin/assets/js/import-js.php', $template_variables, false );
61 ?>
62
63 <!-- SAVE CHANGES -->
64 <div class="row align-items-center mt-4">
65 <div class="col-lg text-lg-right text-center">
66 <button class="btn next-step">Continue &rarr;</button>
67 </div>
68 </div>
69 </div>
70