File: /home/dmstechonline/social.dmstech.online/view/Members/member-index.php
<?php
/* Check the absolute path to the Social Auto Poster directory. */
if ( !defined( 'SAP_APP_PATH' ) ) {
// If SAP_APP_PATH constant is not defined, perform some action, show an error, or exit the script
// Or exit the script if required
exit();
}
global $sap_common;
$SAP_Mingle_Update = new SAP_Mingle_Update();
$license_data = $SAP_Mingle_Update->get_license_data();
if( !$sap_common->sap_is_license_activated() ){
$redirection_url = '/mingle-update/';
header('Location: ' . SAP_SITE_URL . $redirection_url );
die();
}
include SAP_APP_PATH . 'header.php';
include SAP_APP_PATH . 'sidebar.php';
?>
<div class="content-wrapper">
<!-- Content Header (Page header) -->
<section class="content-header">
<h1>
<?php echo $sap_common->lang('customers'); ?>
<div class='sap-delete'>
<a href="<?php echo $router->generate('add_member'); ?>" class="btn btn-primary"><?php echo $sap_common->lang('add_new'); ?></a>
</div>
</h1>
</section>
<!-- Main content -->
<?php
$all_members = $this->get_members();
?>
<section class="content">
<div class="row">
<div class="col-xs-12">
<?php echo $this->flash->renderFlash(); ?>
<div class="box">
<div class="box-body sap-custom-drop-down-wrap">
<select id='searchByStatus' name="searchByStatus">
<option value=''><?php echo $sap_common->lang('select_status'); ?></option>
<option value="1"><?php echo $sap_common->lang('active'); ?></option>
<option value="0"><?php echo $sap_common->lang('in-active'); ?></option>
</select>
<?php if (count($all_members) > 0) { ?>
<select id='searchByGender'>
<option value=''><?php echo $sap_common->lang('bulk_action'); ?></option>
<option value='delete'><?php echo $sap_common->lang('delete'); ?></option>
</select>
<?php } ?>
<table id="list-members" class="display table table-bordered table-striped member-list">
<thead>
<tr>
<th data-sortable="false" data-width="10px"><input type="checkbox" class="multipost-select-all" /></th>
<th data-sortable="true"><?php echo $sap_common->lang('name'); ?></th>
<th data-sortable="true"><?php echo $sap_common->lang('email'); ?></th>
<th data-sortable="true"><?php echo $sap_common->lang('role'); ?></th>
<!-- <th data-sortable="true">Plan</th> -->
<th data-sortable="true"><?php echo $sap_common->lang('status'); ?></th>
<!-- <th data-sortable="true">Next Payment Date</th> -->
<th data-sortable="true"><?php echo $sap_common->lang('date'); ?></th>
<th data-sortable="false"><?php echo $sap_common->lang('action'); ?></th>
</tr>
</thead>
<tfoot>
<tr>
<th data-sortable="false" data-width="10px"><input type="checkbox" class="multipost-select-all" /></th>
<th data-sortable="true"><?php echo $sap_common->lang('name'); ?></th>
<th data-sortable="true"><?php echo $sap_common->lang('email'); ?></th>
<th data-sortable="true"><?php echo $sap_common->lang('role'); ?></th>
<!-- <th data-sortable="true">Plan</th> -->
<th data-sortable="true"><?php echo $sap_common->lang('status'); ?></th>
<!-- <th data-sortable="true">Next Payment Date</th> -->
<th data-sortable="true"><?php echo $sap_common->lang('date'); ?></th>
<th data-sortable="false"><?php echo $sap_common->lang('action'); ?></th>
</tr>
</tfoot>
<tbody>
</tbody>
</table>
</div>
</div>
</div>
</div>
</section>
<!-- /.content -->
</div><!-- /.content-wrapper -->
<?php
include SAP_APP_PATH . 'footer.php'; ?>
<script type="text/javascript" class="init">
'use strict';
$(document).ready(function () {
var dtListUsers = $('#list-members').DataTable({
"oLanguage": {
"sEmptyTable": "No member found."
},
"aLengthMenu": [[15,25, 50, 100], [15,25, 50, 100]],
"pageLength": 15,
"order": [[1, "desc"]],
"responsive": true,
"processing": true,
"serverSide": true,
'ajax': {
'url':'../members-ajax/',
'data': function(data){
// Read values
var searchByStatus = $('#searchByStatus').val();
data.searchByStatus = searchByStatus;
}
},
} );
$('#searchByStatus').on('change',function(){
dtListUsers.draw();
});
$(document).on('click', '.delete_member', function () {
var obj = $(this);
var member_id = $(this).attr('aria-data-id');
if ( confirm("<?php echo $sap_common->lang('delete_record_conform_msg'); ?>") ) {
$.ajax({
type: 'POST',
url: '../member/delete/',
data: {member_id: member_id},
success: function (result) {
var result = $.parseJSON(result);
if ( result.status ) {
$('#member_' + member_id).parent('td').parent('tr').remove();
$('<div class="alert alert-success alert-dismissible" role="alert" bis_skin_checked="1">'+
'<button type="button" class="close" data-dismiss="alert" aria-label="Close"><span aria-hidden="true">×</span></button>Customer has been deleted successfully!</div>').insertBefore('.box');
}
}
});
}
});
$(document).on('change','#searchByGender', function(){
var selected_val = $('#searchByGender').val();
if(selected_val == 'delete') {
var id = [];
$("input[name='member_id[]']:checked").each(function (i) {
id[i] = $(this).val();
});
if (id.length === 0) {
alert("<?php echo $sap_common->lang('select_checkbox_alert'); ?>");
} else if(confirm("<?php echo $sap_common->lang('delete_selected_records_conform_msg'); ?>")) {
$.ajax({
url: '../member/delete_multiple/',
method: 'POST',
data: {id: id},
success: function (result)
{
var result = jQuery.parseJSON(result);
if (result.status) {
location.reload();
}
}
});
} else {
return false;
}
}
});
});
</script>