Files
WrenchBoradWeb/www/application/views/users/common/userstrip.php
T
2022-05-31 17:28:07 -04:00

59 lines
1.7 KiB
PHP

<?php
setlocale(LC_MONETARY, 'en_NG');
//echo $_SESSION['wallet'];
?>
<!--begin::Row-->
<div class="row g-5 g-xl-8">
<?php
if ( isset($_SESSION['coupon']) && $_SESSION['coupon'] > 0 )
{
?>
<div class="col-xl-3 bg-light-danger rounded p-5 mb-7" style="text-align: center;">
<a href="/coupons/"> <h5 class="no-margin"> You have credit coupons</h5></a>
</div>
<?php
}
?>
<?php
if ( isset($_SESSION['wallet']) && $_SESSION['wallet'] == true)
{
?>
<div class="col-xl-3 bg-light-success rounded p-5 mb-7" style="text-align: center;">
<a href="/wallet/"> <h5 class="no-margin"> Claim your free WRENCH Token</h5></a>
</div>
<?php
}
?>
<?php
if ($_SESSION["offer_interest_count"] + $_SESSION['past_duejobs_count'] > 0) {
if ($_SESSION['past_duejobs_count'] > 0) {
?>
<div class="col-xl-3 bg-light-danger rounded p-5 mb-7">
<a href="/proj/pastdue"> <h5 class="no-margin"> You have <?= $_SESSION['past_duejobs_count'] ?> task(s) that are passed due dates Click here to manage</h5></a>
</div>
<?php
}
if ($_SESSION["offer_interest_count"] > 0) {
?>
<div class="col-xl-3 bg-light-success rounded p-5 mb-7">
<!--begin::Charts Widget 1-->
<a href="/jobs/offerinterest"> <h5 class="no-margin">You have <?= $_SESSION["offer_interest_count"] ?> interest in your task.Click to view now</h5></a>
<!--end::Charts Widget 1-->
</div>
<?php
}
}
?>
<div class="col-xl-3">
<!--begin::Charts Widget 1-->
<!--end::Charts Widget 1-->
</div>
</div>
<!--end::Row-->