PluginProbe
Lasso Lite – Affiliate Link Manager & Product Displays / 149
Lasso Lite – Affiliate Link Manager & Product Displays v149
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 / header.php

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

53 lines 1.8 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 use LassoLite\Admin\Constant;
3 ?>
4
5 <!-- TITLE -->
6 <div class="row align-items-center">
7 <div class="col-lg text-lg-left text-center mb-4">
8 <h1 id="lasso-url-heading" class="font-weight-bold lasso-url-heading"><?php echo $url_details_h1; ?></h1>
9 <?php if ( '#' !== $lasso_lite_url->permalink ) : ?>
10 <a class="purple underline mt-2 js-permalink" href="<?php echo $lasso_lite_url->public_link ?? ''; ?>" target="_blank">
11 <?php echo $lasso_lite_url->public_link ?? ''; ?></a>
12 <?php endif; ?>
13 </div>
14 </div>
15
16 <!-- SUB NAVIGATION -->
17 <div class="row align-items-center mb-4">
18 <div class="col-lg js-sub-nav">
19 <ul class="nav font-weight-bold">
20 <li class="nav-item mr-3">
21 <a class="nav-link purple hover-underline px-0 active">Details</a>
22 </li>
23 <li class="nav-item mx-3 lasso-lite-disabled">
24 <a class="nav-link purple hover-underline px-0">
25 Locations
26 </a>
27 </li>
28 <li class="nav-item mx-3 lasso-lite-disabled">
29 <a class="nav-link purple hover-underline px-0">
30 Opportunities
31 </a>
32 </li>
33 </ul>
34 </div>
35 <div class="col-lg-6 text-right">
36 <ul class="d-inline-block mb-0">
37 <?php if ( $is_amazon_link && strpos($lasso_lite_url->image_src, Constant::DEFAULT_THUMBNAIL) !== false ) : ?>
38 <li class="d-inline-block">
39 <a class="btn-upgrade" href="<?php echo Constant::LASSO_CHECKOUT_URL_DEFAULT; ?>" target="_self" class="purple mr-3">
40 <strong>Get Amazon Images</strong>
41 </a>
42 </li>
43 <?php endif; ?>
44 <li class="d-inline-block">
45 <input id="shortcode" type="text" style="opacity: 0; width: 0px;" value='[lasso rel="<?php echo $lasso_lite_url->slug; ?>" id="<?php echo $lasso_lite_url->id; ?>"]'>
46 <a id="copy-shortcode" class="purple" data-tooltip="Copy this Display to your clipboard.">
47 <i class="far fa-pager"></i> <strong>Copy Shortcode</strong>
48 </a>
49 </li>
50 </ul>
51 </div>
52 </div>
53