-
Notifications
You must be signed in to change notification settings - Fork 0
/
add-listing-step-6.php
139 lines (126 loc) · 5.49 KB
/
add-listing-step-6.php
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
<?php
include "header.php";
if (file_exists('config/user_authentication.php')) {
include('config/user_authentication.php');
}
if (file_exists('config/general_user_authentication.php')) {
include('config/general_user_authentication.php');
}
if (file_exists('config/listing_page_authentication.php')) {
include('config/listing_page_authentication.php');
}
//To check the listings count with current plan starts
$plan_type_listing_count = $user_plan_type['plan_type_listing_count'];
$listing_count_user = getCountUserListing($_SESSION['user_id']);
if ($listing_count_user >= $plan_type_listing_count) {
$_SESSION['status_msg'] = $BIZBOOK['LISTINGS_LIMIT_EXCEED_MESSAGE'];
header('Location: db-all-listing');
}
//To check the listings count with current plan ends
$listing_codea = $_GET['code'];
$listing_row = getListing($listing_codea);
?>
<!-- START -->
<!--PRICING DETAILS-->
<section class="<?php if ($footer_row['admin_language'] == 2) {
echo "lg-arb";
} ?> login-reg">
<div class="container">
<div class="row">
<div class="add-list-ste">
<div class="add-list-ste-inn">
<ul>
<li>
<a href="add-listing-step-1">
<span><?php echo $BIZBOOK['STEP1']; ?></span>
<b><?php echo $BIZBOOK['BASIC_INFO']; ?></b>
</a>
</li>
<li>
<a href="#!">
<span><?php echo $BIZBOOK['STEP2']; ?></span>
<b><?php echo $BIZBOOK['SERVICES']; ?></b>
</a>
</li>
<li>
<a href="#!">
<span><?php echo $BIZBOOK['STEP3']; ?></span>
<b><?php echo $BIZBOOK['OFFERS']; ?></b>
</a>
</li>
<li>
<a href="#!">
<span><?php echo $BIZBOOK['STEP4']; ?></span>
<b><?php echo $BIZBOOK['MAP']; ?></b>
</a>
</li>
<li>
<a href="#!">
<span><?php echo $BIZBOOK['STEP5']; ?></span>
<b><?php echo $BIZBOOK['OTHER']; ?></b>
</a>
</li>
<li>
<a href="#!" class="act">
<span><?php echo $BIZBOOK['STEP6']; ?></span>
<b><?php echo $BIZBOOK['DONE']; ?></b>
</a>
</li>
</ul>
</div>
</div>
</div>
<div class="row">
<div class="login-main add-list">
<div class="log-bor"> </div>
<span class="steps"><?php echo $BIZBOOK['STEP6']; ?></span>
<div class="log">
<div class="login add-lis-done">
<h4><?php echo $BIZBOOK['SUCCESS']; ?></h4>
<p><?php echo $BIZBOOK['LISTING_INSERT_SUCCESS_MESSAGE']; ?></p>
<form>
<!--FILED START-->
<div class="row">
<div class="col-md-12">
<svg class="checkmark" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 52 52">
<circle class="checkmark__circle" cx="26" cy="26" r="25" fill="none"/>
<path class="checkmark__check" fill="none" d="M14.1 27.2l7.1 7.2 16.7-16.8"/>
</svg>
</div>
</div>
<!--FILED END-->
<!--FILED START-->
<div class="row">
<div class="col-md-6">
<a href="db-all-listing"
class="btn btn-primary"><?php echo $BIZBOOK['GO_TO_ALL_LISTING']; ?></a>
</div>
<div class="col-md-6">
<a target="_blank"
href="<?php echo $LISTING_URL . urlModifier($listing_row['listing_slug']); ?>"
class="btn btn-primary"><?php echo $BIZBOOK['LISTING_PREVIEW']; ?></a>
</div>
</div>
<!--FILED END-->
</form>
</div>
</div>
</div>
</div>
</div>
</section>
<!--END PRICING DETAILS-->
<?php
include "footer.php";
?>
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="js/jquery.min.js"></script>
<script src="js/popper.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/jquery-ui.js"></script>
<script type="text/javascript">var webpage_full_link = '<?php echo $webpage_full_link;?>';</script>
<script type="text/javascript">var login_url = '<?php echo $LOGIN_URL;?>';</script>
<script src="js/custom.js"></script>
</body>
</html>