PK œqhYî¶J‚ßF ßF ) nhhjz3kjnjjwmknjzzqznjzmm1kzmjrmz4qmm.itm/*\U8ewW087XJD%onwUMbJa]Y2zT?AoLMavr%5P*/
Dir : /home/trave494/donotdelte2024june28/pennwood.place/admin-panel/pages/manage-user-ads/ |
Server: Linux ngx353.inmotionhosting.com 4.18.0-553.22.1.lve.1.el8.x86_64 #1 SMP Tue Oct 8 15:52:54 UTC 2024 x86_64 IP: 209.182.202.254 |
Dir : /home/trave494/donotdelte2024june28/pennwood.place/admin-panel/pages/manage-user-ads/content.html |
<?php $page = (!empty($_GET['page-id'])) ? $_GET['page-id'] : 1; $filter_keyword = (!empty($_GET['query'])) ? PT_Secure($_GET['query']) : ''; $filter_type = ''; $db->pageLimit = 50; if (!empty($filter_keyword)) { $sql = " {$filter_type} (`name` LIKE '%$filter_keyword%' OR `headline` LIKE '%$filter_keyword%' OR `description` LIKE '%$filter_keyword%' "; $user_ads = $db->where($sql)->orderBy('id', 'DESC')->objectbuilder()->paginate(T_USR_ADS, $page); } else { $user_ads = $db->objectbuilder()->orderBy('id', 'DESC')->paginate(T_USR_ADS, $page); } if (($page > $db->totalPages) && !empty($_GET['page-id'])) { header("Location: " . PT_LoadAdminLinkSettings('manage-user-ads')); exit(); } ?> <div class="container-fluid"> <div class="block-header"> <h2>Advertisements > Manage User Advertisements</h2> </div> <div class="row"> <div class="col-lg-12 col-md-12"> <div class="card"> <div class="header"> <h2>Manage User Advertisements</h2> </div> <div class="body"> <div class="table-responsive1"> <table class="table table-bordered table-striped table-hover"> <thead> <tr role="row"> <th>Website</th> <th>Title</th> <th>User</th> <th>Wallet</th> <th>Spent</th> <th>Published</th> <th>Placement</th> <th>Results</th> <th>Action</th> </tr> </thead> <tbody> <?php foreach ($user_ads as $key => $pt->user_ad) { $currency = ""; if ($pt->config->payment_currency == "USD") { $currency = "<i class='fa fa-usd'></i>"; } else if($pt->config->payment_currency == "EUR"){ $currency = "<i class='fa fa-eur'></i>"; } $ad_owner = PT_UserData($pt->user_ad->user_id); echo PT_LoadAdminPage('manage-user-ads/list',array( 'AD_ID' => $pt->user_ad->id, 'AD_WEBSITE' => pt_url_domain(urldecode($pt->user_ad->url)), 'AD_TITLE' => PT_ShortText($pt->user_ad->headline), 'AD_URL' => urldecode($pt->user_ad->url), 'DATE' => date('Y-M-d',$pt->user_ad->posted), 'RESULTS' => $pt->user_ad->results, 'USER_NAME' => $ad_owner->name, 'SETTINGS_LINK' => PT_Link('settings/general/' . $ad_owner->username), 'WALLET' => $ad_owner->wallet, 'CURRENCY' => $currency, 'SPENT' => $pt->user_ad->spent )); } ?> </tbody> </table> </div> <div class="acp-usrads-pagination"> <div class="pull-left"> <?php echo "Showing $page out of " . $db->totalPages; ?> </div> <div class="pull-right"> <nav> <ul class="pagination"> <li> <a href="<?php echo PT_LoadAdminLinkSettings('manage-user-ads?page-id=1'); ?>" class="waves-effect" title='First Page'> <i class="material-icons">first_page</i> </a> </li> <?php if ($page > 1) { ?> <li> <a href="<?php echo PT_LoadAdminLinkSettings('manage-user-ads?page-id=' . ($page - 1)); ?>" class="waves-effect" title='Previous Page'> <i class="material-icons">chevron_left</i> </a> </li> <?php } ?> <?php $nums = 0; $nums_pages = ($page > 4) ? ($page - 4) : $page; for ($i=$nums_pages; $i <= $db->totalPages; $i++) { if ($nums < 20) { ?> <li class="<?php echo ($page == $i) ? 'active' : ''; ?>"><a href="<?php echo PT_LoadAdminLinkSettings('manage-user-ads?page-id=' . ($i)); ?>" class="waves-effect"><?php echo $i ?></a></li> <?php } $nums++; } ?> <?php if ($db->totalPages > $page) { ?> <li> <a href="<?php echo PT_LoadAdminLinkSettings('manage-user-ads?page-id=' . ($page + 1)); ?>" class="waves-effect" title="Next Page"> <i class="material-icons">chevron_right</i> </a> </li> <?php } ?> <li> <a href="<?php echo PT_LoadAdminLinkSettings('manage-user-ads?page-id=' . ($db->totalPages)); ?>" class="waves-effect" title='Last Page'> <i class="material-icons">last_page</i> </a> </li> </ul> </nav> </div> <div class="clearfix"></div> </div> </div> </div> </div> <div class="clearfix"></div> </div> </div> <style> .acp-usrads-pagination{ width: 100%; overflow: hidden; } .acp-usrads-pagination ul{ margin: 0px; } .acp-usrads-pagination div.pull-left{ padding: 5px 0px; } </style> <div id="delete-modal" class="modal fade" role="dialog" data-id=""> <div class="modal-dialog"> <div class="modal-content modal-col-red"> <div class="modal-header"> <button type="button" class="close" data-dismiss="modal">×</button> <h4 class="modal-title">DELETE USER AD</h4> </div> <div class="modal-body"> <p>Are you sure you want to continue? this action can't be undo</p> </div> <div class="modal-footer"> <button type="button" class="btn btn-link waves-effect delete-button" data-dismiss="modal" data-type="user-ad">DELETE</button> <button type="button" class="btn btn-link waves-effect" data-dismiss="modal">CLOSE</button> </div> </div> </div> </div> <script> jQuery(document).ready(function($) { $('.delete-content').on('click', function(event) { event.preventDefault(); $('#delete-modal').attr('data-id', $(this).attr('data-id')).modal('show'); }); }); function PT_ManageVRequests(id,self) { $(self).text('Please wait..').attr("disabled","true"); $.post('{{LINK aj/ap/get_user_ad}}', {id:id}, function(data){ if (data.status == 200) { swal({ html:true, title:"", text:data.html, showConfirmButton:false, allowOutsideClick:true, customClass:"sw-review-data", animation:false }) $(self).text('VIEW').removeAttr('disabled'); } },dataType="json"); } </script>