PluginProbe
Lasso Lite – Affiliate Link Manager & Product Displays / 114
Lasso Lite – Affiliate Link Manager & Product Displays v114
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 / dashboard / index.php

index.php in Lasso Lite – Affiliate Link Manager & Product Displays 114, at admin/views/dashboard/index.php

70 lines 1.8 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Dashboard
4 *
5 * @package Dashboard
6 */
7
8 use LassoLite\Classes\Config;
9 use LassoLite\Classes\Enum;
10 use LassoLite\Classes\SURL;
11 use LassoLite\Classes\Helper;
12
13 $dashboard_link_count = SURL::total();
14 $link_search_txt = $_GET['link-search-input'] ?? '';
15 ?>
16
17 <?php Config::get_header(); ?>
18
19 <!-- DASHBOARD -->
20 <input id="total-posts" class="d-none" value="0" />
21 <section class="px-3 py-5">
22 <div class="lite-container min-height">
23
24 <!-- TITLE BAR -->
25 <div class="row align-items-center">
26
27 <!-- TITLE -->
28 <div class="col-lg-4 text-lg-left text-center mb-4">
29 <h1 class="m-0 mr-2 d-inline-block align-middle">Dashboard</h1>
30 </div>
31
32 <!-- FILTERS -->
33 <div class="col-lg text-center large mb-4">
34 </div>
35
36 <!-- SEARCH -->
37 <div class="col-lg-4 mb-4">
38 <form role="search" method="GET" id="links-filter" autocomplete="off">
39 <div id="search-links">
40 <input type="search" id="link-search-input" name="link-search-input" class="form-control"
41 value="<?php echo $link_search_txt; ?>" placeholder="Search All <?php echo $dashboard_link_count; ?> Links">
42 </div>
43 </form>
44 </div>
45 </div>
46
47 <!-- TABLE -->
48 <div class="white-bg rounded shadow">
49
50 <!-- TABLE HEADER -->
51 <div class="px-4 pt-4 pb-2 font-weight-bold dark-gray d-lg-block">
52 <div class="row align-items-center">
53 <div class="col-lg-1 text-center">Image</div>
54 <div class="col-lg-4">Title</div>
55 <div class="col-lg-5">Link</div>
56 <div class="col-lg-2">Groups</div>
57 </div>
58 </div>
59
60 <div id="report-content"></div>
61 </div>
62
63 <!-- PAGINATION -->
64 <div class="pagination row align-items-center no-gutters pb-3 pt-0 dashboard-pagination"></div>
65 </div>
66 </section>
67
68 <?php echo Helper::wrapper_js_render( 'dashboard-list', Helper::get_path_views_folder() . Enum::PAGE_DASHBOARD . '/list-jsrender.html' )?>
69 <?php Config::get_footer(); ?>
70