| Current Path : /home/users/unlimited/www/facebook.codeskitter.site/admin-panel/pages/manage-pages/ |
| Current File : /home/users/unlimited/www/facebook.codeskitter.site/admin-panel/pages/manage-pages/content.phtml |
<?php
$page = (!empty($_GET['page-id']) && is_numeric($_GET['page-id'])) ? $_GET['page-id'] : 1;
$filter_keyword = (!empty($_GET['query'])) ? Wo_Secure($_GET['query']) : '';
$filter_type = '';
$db->pageLimit = 50;
$link = '';
if (!empty($filter_keyword)) {
$link .= '&query='.$filter_keyword;
$sql = "(
`page_id` LIKE '%$filter_keyword%' OR
`page_name` LIKE '%$filter_keyword%' OR
`page_title` LIKE '%$filter_keyword%' OR
`page_description` LIKE '%$filter_keyword%'
)";
$pages = $db->where($sql);
}
$sort_link = $link;
$sort_array = array('DESC_i' => array('page_id' , 'DESC'),
'ASC_i' => array('page_id' , 'ASC'),
'DESC_n' => array('page_title' , 'DESC'),
'ASC_n' => array('page_title' , 'ASC'),
'DESC_c' => array('page_category' , 'DESC'),
'ASC_c' => array('page_category' , 'ASC'));
if (!empty($_GET['sort']) && in_array($_GET['sort'], array_keys($sort_array))) {
$link .= "&sort=".Wo_Secure($_GET['sort']);
$db->orderBy($sort_array[$_GET['sort']][0],$sort_array[$_GET['sort']][1]);
}
else{
$_GET['sort'] = 'DESC_i';
$db->orderBy('page_id', 'DESC');
}
$pages = $db->objectbuilder()->paginate(T_PAGES, $page);
if (($page > $db->totalPages) && !empty($_GET['page-id'])) {
header("Location: " . Wo_LoadAdminLinkSettings('manage-pages'));
exit();
}
?>
<div class="container-fluid">
<div>
<h3>Pages</h3>
<nav aria-label="breadcrumb">
<ol class="breadcrumb">
<li class="breadcrumb-item">
<a href="#">Home</a>
</li>
<li class="breadcrumb-item">
<a href="#">Manage Features</a>
</li>
<li class="breadcrumb-item active" aria-current="page">Pages</li>
</ol>
</nav>
</div>
<!-- Vertical Layout -->
<div class="row">
<div class="col-md-3">
<div class="card">
<div class="card-body">
<h6 class="card-title">TOTAL PAGES</h6>
<div class="d-flex align-items-center mb-3">
<div>
<div class="avatar">
<span class="avatar-title bg-primary-bright text-primary rounded-pill">
<i class="material-icons">flag</i>
</span>
</div>
</div>
<div class="font-weight-bold ml-1 font-size-30 ml-3"><?php echo Wo_CountAllData('page'); ?></div>
</div>
</div>
</div>
</div>
<div class="col-md-3">
<div class="card">
<div class="card-body">
<h6 class="card-title">TOTAL LIKES</h6>
<div class="d-flex align-items-center mb-3">
<div>
<div class="avatar">
<span class="avatar-title bg-info-bright text-info rounded-pill">
<i class="material-icons">thumb_up</i>
</span>
</div>
</div>
<div class="font-weight-bold ml-1 font-size-30 ml-3"><?php echo Wo_CountPageData('likes'); ?></div>
</div>
</div>
</div>
</div>
<div class="col-md-3">
<div class="card">
<div class="card-body">
<h6 class="card-title">TOTAL POSTS</h6>
<div class="d-flex align-items-center mb-3">
<div>
<div class="avatar">
<span class="avatar-title bg-warning-bright text-warning rounded-pill">
<i class="material-icons">mode_edit</i>
</span>
</div>
</div>
<div class="font-weight-bold ml-1 font-size-30 ml-3"><?php echo Wo_CountPageData('pages_posts'); ?></div>
</div>
</div>
</div>
</div>
<div class="col-md-3">
<div class="card">
<div class="card-body">
<h6 class="card-title">VERIFIED PAGES</h6>
<div class="d-flex align-items-center mb-3">
<div>
<div class="avatar">
<span class="avatar-title bg-primary-bright text-primary rounded-pill">
<i class="material-icons">check_circle</i>
</span>
</div>
</div>
<div class="font-weight-bold ml-1 font-size-30 ml-3"><?php echo Wo_CountPageData('verified_pages'); ?></div>
</div>
</div>
</div>
</div>
<div class="col-lg-12 col-md-12">
<div class="card">
<div class="card-body">
<h6 class="card-title">Manage & Edit Pages</h6>
<div class="row">
<div class="col-md-4" style="margin-bottom:0;">
<form method="get" action="<?php echo Wo_LoadAdminLinkSettings('manage-pages'); ?>">
<div class="row">
<div class="col-md-11">
<div class="form-group form-float">
<div class="form-line">
<label class="form-label search-form">
Search for page ID, page name, page title.
</label>
<input type="text" name="query" id="query" class="form-control" value="<?php echo($filter_keyword); ?>">
</div>
</div>
</div>
<div class="col-md-1">
<label> </label>
<button class="btn btn-info">Search</button>
</div>
</div>
<div class="clearfix"></div>
</form>
</div>
</div>
<input type="hidden" id="hash_id" name="hash_id" value="<?php echo Wo_CreateSession();?>">
<div class="clearfix"></div>
<div class="table-responsive1">
<table class="table table-bordered table-striped table-hover">
<thead>
<tr>
<th><input type="checkbox" id="check-all" class="filled-in check-all" ><label for="check-all"></label></th>
<th>ID
<?php if (!empty($_GET['sort']) && $_GET['sort'] == 'DESC_i') { ?>
<svg onclick="location.href = '<?php echo(Wo_LoadAdminLinkSettings('manage-pages?page-id=1').$sort_link."&sort=ASC_i") ?>'" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="#000000" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-arrow-up cursor-p"><line x1="12" y1="19" x2="12" y2="5"></line><polyline points="5 12 12 5 19 12"></polyline></svg>
<?php }else{ ?>
<svg onclick="location.href = '<?php echo(Wo_LoadAdminLinkSettings('manage-pages?page-id=1').$sort_link."&sort=DESC_i") ?>'" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="#000000" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-arrow-down cursor-p"><line x1="12" y1="5" x2="12" y2="19"></line><polyline points="19 12 12 19 5 12"></polyline></svg>
<?php } ?></th>
<th>Page Name
<?php if (!empty($_GET['sort']) && $_GET['sort'] == 'DESC_n') { ?>
<svg onclick="location.href = '<?php echo(Wo_LoadAdminLinkSettings('manage-pages?page-id=1').$sort_link."&sort=ASC_n") ?>'" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="#000000" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-arrow-up cursor-p"><line x1="12" y1="19" x2="12" y2="5"></line><polyline points="5 12 12 5 19 12"></polyline></svg>
<?php }else{ ?>
<svg onclick="location.href = '<?php echo(Wo_LoadAdminLinkSettings('manage-pages?page-id=1').$sort_link."&sort=DESC_n") ?>'" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="#000000" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-arrow-down cursor-p"><line x1="12" y1="5" x2="12" y2="19"></line><polyline points="19 12 12 19 5 12"></polyline></svg>
<?php } ?></th>
<th>Owner</th>
<th>Category
<?php if (!empty($_GET['sort']) && $_GET['sort'] == 'DESC_c') { ?>
<svg onclick="location.href = '<?php echo(Wo_LoadAdminLinkSettings('manage-pages?page-id=1').$sort_link."&sort=ASC_c") ?>'" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="#000000" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-arrow-up cursor-p"><line x1="12" y1="19" x2="12" y2="5"></line><polyline points="5 12 12 5 19 12"></polyline></svg>
<?php }else{ ?>
<svg onclick="location.href = '<?php echo(Wo_LoadAdminLinkSettings('manage-pages?page-id=1').$sort_link."&sort=DESC_c") ?>'" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="#000000" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-arrow-down cursor-p"><line x1="12" y1="5" x2="12" y2="19"></line><polyline points="19 12 12 19 5 12"></polyline></svg>
<?php } ?></th>
<th>Action</th>
</tr>
</thead>
<tbody>
<?php
foreach ($pages as $pagelist) {
$wo['pagelist'] = Wo_PageData($pagelist->page_id);
$wo['pagelist']['owner'] = Wo_UserData($pagelist->user_id);
echo Wo_LoadAdminPage('manage-pages/list');
}
?>
</tbody>
</table>
</div>
<div class="wo-admincp-feturepager">
<div class="pull-left">
<span>
<?php echo "Showing $page out of " . $db->totalPages; ?>
</span>
</div>
<div class="pull-right">
<nav>
<ul class="pagination">
<li>
<a href="<?php echo Wo_LoadAdminLinkSettings('manage-pages?page-id=1').$link; ?>" data-ajax="?path=manage-pages&page-id=1<?php echo($link); ?>" class="waves-effect" title='First Page'>
<i class="material-icons">first_page</i>
</a>
</li>
<?php if ($page > 1) { ?>
<li>
<a href="<?php echo Wo_LoadAdminLinkSettings('manage-pages?page-id=' . ($page - 1)).$link; ?>" data-ajax="?path=manage-pages&page-id=<?php echo($page - 1) ?><?php echo($link); ?>" 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 Wo_LoadAdminLinkSettings('manage-pages?page-id=' . ($i)).$link; ?>" data-ajax="?path=manage-pages&page-id=<?php echo($i) ?><?php echo($link); ?>" class="waves-effect">
<?php echo $i ?>
</a>
</li>
<?php } $nums++; }?>
<?php if ($db->totalPages > $page) { ?>
<li>
<a href="<?php echo Wo_LoadAdminLinkSettings('manage-pages?page-id=' . ($page + 1)).$link; ?>" data-ajax="?path=manage-pages&page-id=<?php echo($page + 1) ?><?php echo($link); ?>" class="waves-effect" title="Next Page">
<i class="material-icons">chevron_right</i>
</a>
</li>
<?php } ?>
<li>
<a href="<?php echo Wo_LoadAdminLinkSettings('manage-pages?page-id=' . ($db->totalPages)).$link; ?>" data-ajax="?path=manage-pages&page-id=<?php echo($db->totalPages) ?><?php echo($link); ?>" class="waves-effect" title='Last Page'>
<i class="material-icons">last_page</i>
</a>
</li>
</ul>
</nav>
</div>
<div class="clearfix"></div>
<div class="row">
<div class="col-lg-3 col-md-3">
<span> </span>
<button type="button" class="btn btn-info waves-effect delete-selected d-block" disabled>Delete Selected<span></span></button>
</div>
</div>
</div>
<div class="clearfix"></div>
</div>
</div>
</div>
<div class="clearfix"></div>
</div>
<!-- #END# Vertical Layout -->
<div class="modal fade" id="SelectedDeleteModal" tabindex="-1" role="dialog" aria-labelledby="exampleModal1Label" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModal1Label">Delete page?</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
Are you sure that you want to remove the selected page?
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
<button type="button" class="btn btn-primary" onclick="DeleteSelected()" data-dismiss="modal">Submit</button>
</div>
</div>
</div>
</div>
<div class="modal fade" id="DeleteModal" tabindex="-1" role="dialog" aria-labelledby="exampleModal1Label" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModal1Label">Delete page?</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
Are you sure you want to delete this page?
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
<button type="button" class="btn btn-primary" data-dismiss="modal">Delete</button>
</div>
</div>
</div>
</div>
<script>
$('.check-all').on('click', function(event) {
$('input:checkbox').not(this).prop('checked', this.checked);
});
$('.delete-checkbox, .check-all').change(function(event) {
$('.delete-selected').attr('disabled', false);
$('.delete-selected').find('span').text(' (' + $('.delete-checkbox:checked').length + ')');
});
$('.delete-selected').on('click', function(event) {
event.preventDefault();
$('#SelectedDeleteModal').modal('show');
});
function DeleteSelected() {
data = new Array();
$('td input:checked').parents('tr').each(function () {
data.push($(this).attr('data_selected'));
});
$('.delete-selected').attr('disabled', true);
$('.delete-selected').text('Please wait..');
$.post(Wo_Ajax_Requests_File()+"?f=admin_setting&s=remove_multi_page", {ids: data}, function () {
$.each( data, function( index, value ){
$("#PageID_"+value).remove();
});
$('.delete-selected').text('Delete Selected');
});
}
function Wo_DeletePage(page_id,type = 'show') {
if (type == 'hide') {
$('#DeleteModal').find('.btn-primary').attr('onclick', "Wo_DeletePage('"+page_id+"')");
$('#DeleteModal').modal('show');
return false;
}
hash_id = $('#hash_id').val();
$('#PageID_' + page_id).fadeOut(300, function() {
$(this).remove();
});
$.get(Wo_Ajax_Requests_File(),{f:'admin_setting',s:'delete_user_page',page_id: page_id, hash_id:hash_id});
}
</script>