Файл: oc-admin/themes/modern/items/index.php
Строк: 467
<?php if ( ! defined('OC_ADMIN')) exit('Direct access is not allowed.');
/*
* Copyright 2014 Osclass
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
osc_enqueue_script('jquery-validate');
function addHelp() {
echo '<p>' . __('Manage all the listings on your site: edit, delete or block the latest listings published. You can also filter by several parameters: user, region, city, etc.') . '</p>';
}
osc_add_hook('help_box','addHelp');
function customPageHeader() { ?>
<h1><?php _e('Listings'); ?>
<a href="<?php echo osc_admin_base_url(true); ?>?page=items&action=settings" class="btn ico ico-32 ico-engine float-right"></a>
<a href="#" class="btn ico ico-32 ico-help float-right"></a>
<a href="<?php echo osc_admin_base_url(true) . '?page=items&action=post'; ?>" class="btn btn-green ico ico-32 ico-add-white float-right"><?php _e('Add listing'); ?></a>
</h1>
<?php
}
osc_add_hook('admin_page_header','customPageHeader');
function customPageTitle($string) {
return sprintf(__('Manage listings » %s'), $string);
}
osc_add_filter('admin_title', 'customPageTitle');
//customize Head
function customHead() {
ItemForm::location_javascript_new('admin'); ?>
<script type="text/javascript">
// autocomplete users
$(document).ready(function(){
$('#filter-select').change( function () {
var option = $(this).find('option:selected').attr('value');
// clean values
$('#fPattern,#fUser,#fItemId').attr('value', '');
if(option == 'oPattern') {
$('#fPattern').removeClass('hide');
$('#fUser, #fItemId').addClass('hide');
} else if(option == 'oUser'){
$('#fUser').removeClass('hide');
$('#fPattern, #fItemId').addClass('hide');
} else {
$('#fItemId').removeClass('hide');
$('#fPattern, #fUser').addClass('hide');
}
});
$('input[name="user"]').attr( "autocomplete", "off" );
$('#user,#fUser').autocomplete({
source: "<?php echo osc_admin_base_url(true); ?>?page=ajax&action=userajax",
minLength: 0,
select: function( event, ui ) {
if(ui.item.id=='')
return false;
$('#userId').val(ui.item.id);
$('#fUserId').val(ui.item.id);
},
search: function() {
$('#userId').val('');
$('#fUserId').val('');
}
});
$('.ui-autocomplete').css('zIndex', 10000);
// dialog delete
$("#dialog-item-delete").dialog({
autoOpen: false,
modal: true,
title: '<?php echo osc_esc_js( osc_apply_filter( 'admin_dialog_elete_listing_title', __('Delete listing') ) ); ?>'
});
// dialog bulk actions
$("#dialog-bulk-actions").dialog({
autoOpen: false,
modal: true
});
$("#bulk-actions-submit").click(function() {
if($("#bulk-actions-submit").prop("clicked")==false) {
$("#bulk-actions-submit").prop("clicked", true);
$("#datatablesForm").submit();
}
});
$("#bulk-actions-cancel").click(function() {
$("#datatablesForm").attr('data-dialog-open', 'false');
$('#dialog-bulk-actions').dialog('close');
});
// dialog bulk actions function
$("#datatablesForm").submit(function() {
if( $("#bulk_actions option:selected").val() == "" ) {
return false;
}
if( $("#datatablesForm").attr('data-dialog-open') == "true" ) {
return true;
}
$("#dialog-bulk-actions .form-row").html($("#bulk_actions option:selected").attr('data-dialog-content'));
$("#bulk-actions-submit").html($("#bulk_actions option:selected").text());
$("#datatablesForm").attr('data-dialog-open', 'true');
$("#bulk-actions-submit").prop("clicked", false);
$("#dialog-bulk-actions").dialog('open');
return false;
});
// dialog filters
$('#display-filters').dialog({
autoOpen: false,
modal: true,
width: 700,
title: '<?php echo osc_esc_js( __('Filters') ); ?>'
});
$('#btn-display-filters').click(function(){
$('#display-filters').dialog('open');
return false;
});
// check_all bulkactions
$("#check_all").change(function(){
var isChecked = $(this).prop("checked");
$('.col-bulkactions input').each( function() {
if( isChecked == 1 ) {
this.checked = true;
} else {
this.checked = false;
}
});
});
});
// dialog delete function
function delete_dialog(item_id) {
$("#dialog-item-delete input[name='id[]']").attr('value', item_id);
$("#dialog-item-delete").dialog('open');
return false;
}
</script>
<?php
}
osc_add_hook('admin_header','customHead', 10);
$categories = __get('categories');
$withFilters = __get('withFilters');
$iDisplayLength = __get('iDisplayLength');
$aData = __get('aData');
$aRawRows = __get('aRawRows');
$sort = Params::getParam('sort');
$direction = Params::getParam('direction');
$columns = $aData['aColumns'];
$rows = $aData['aRows'];
osc_current_admin_theme_path( 'parts/header.php' ); ?>
<form method="get" action="<?php echo osc_admin_base_url(true); ?>" id="display-filters" class="has-form-actions hide nocsrf">
<input type="hidden" name="page" value="items" />
<input type="hidden" name="iDisplayLength" value="<?php echo $iDisplayLength;?>" />
<input type="hidden" name="sort" value="<?php echo $sort; ?>" />
<input type="hidden" name="direction" value="<?php echo $direction; ?>" />
<div class="form-horizontal">
<div class="grid-system">
<div class="grid-row grid-50">
<div class="row-wrapper">
<div class="form-row">
<div class="form-label">
<?php _e('Pattern'); ?>
</div>
<div class="form-controls">
<input type="text" name="sSearch" id="sSearch" value="<?php echo osc_esc_html(Params::getParam('sSearch')); ?>" />
</div>
</div>
<div class="form-row">
<div class="form-label">
<?php _e('Category'); ?>
</div>
<div class="form-controls">
<?php ManageItemsForm::category_select($categories, null, null, true); ?>
</div>
</div>
<div class="form-row">
<div class="form-label">
<?php _e('Country'); ?>
</div>
<div class="form-controls">
<?php ManageItemsForm::country_text(); ?>
</div>
</div>
<div class="form-row">
<div class="form-label">
<?php _e('Region'); ?>
</div>
<div class="form-controls">
<?php ManageItemsForm::region_text(); ?>
</div>
</div>
<div class="form-row">
<div class="form-label">
<?php _e('City'); ?>
</div>
<div class="form-controls">
<?php ManageItemsForm::city_text(); ?>
</div>
</div>
</div>
</div>
<div class="grid-row grid-50">
<div class="row-wrapper">
<div class="form-row">
<div class="form-label">
<?php _e('Email'); ?>
</div>
<div class="form-controls">
<input id="user" name="user" type="text" value="<?php echo osc_esc_html(Params::getParam('user')); ?>" />
<input id="userId" name="userId" type="hidden" value="<?php echo osc_esc_html(Params::getParam('userId')); ?>" />
</div>
</div>
<div class="form-row">
<div class="form-label">
<?php _e('Premium'); ?>
</div>
<div class="form-controls">
<select id="b_premium" name="b_premium">
<option value="" <?php echo ( (Params::getParam('b_premium') == '') ? 'selected="selected"' : '' )?>><?php _e('Choose an option'); ?></option>
<option value="1" <?php echo ( (Params::getParam('b_premium') == '1') ? 'selected="selected"' : '' )?>><?php _e('ON'); ?></option>
<option value="0" <?php echo ( (Params::getParam('b_premium') == '0') ? 'selected="selected"' : '' )?>><?php _e('OFF'); ?></option>
</select>
</div>
</div>
<div class="form-row">
<div class="form-label">
<?php _e('Active'); ?>
</div>
<div class="form-controls">
<select id="b_active" name="b_active">
<option value="" <?php echo ( (Params::getParam('b_active') == '') ? 'selected="selected"' : '' )?>><?php _e('Choose an option'); ?></option>
<option value="1" <?php echo ( (Params::getParam('b_active') == '1') ? 'selected="selected"' : '' )?>><?php _e('ON'); ?></option>
<option value="0" <?php echo ( (Params::getParam('b_active') == '0') ? 'selected="selected"' : '' )?>><?php _e('OFF'); ?></option>
</select>
</div>
</div>
<div class="form-row">
<div class="form-label">
<?php _e('Block'); ?>
</div>
<div class="form-controls">
<select id="b_enabled" name="b_enabled">
<option value="" <?php echo ( (Params::getParam('b_enabled') == '') ? 'selected="selected"' : '' )?>><?php _e('Choose an option'); ?></option>
<option value="0" <?php echo ( (Params::getParam('b_enabled') == '0') ? 'selected="selected"' : '' )?>><?php _e('ON'); ?></option>
<option value="1" <?php echo ( (Params::getParam('b_enabled') == '1') ? 'selected="selected"' : '' )?>><?php _e('OFF'); ?></option>
</select>
</div>
</div>
<div class="form-row">
<div class="form-label">
<?php _e('Spam'); ?>
</div>
<div class="form-controls">
<select id="b_spam" name="b_spam">
<option value="" <?php echo ( (Params::getParam('b_spam') == '') ? 'selected="selected"' : '' )?>><?php _e('Choose an option'); ?></option>
<option value="1" <?php echo ( (Params::getParam('b_spam') == '1') ? 'selected="selected"' : '' )?>><?php _e('ON'); ?></option>
<option value="0" <?php echo ( (Params::getParam('b_spam') == '0') ? 'selected="selected"' : '' )?>><?php _e('OFF'); ?></option>
</select>
</div>
</div>
</div>
</div>
<div class="clear"></div>
<?php osc_run_hook('filters_manage_item_search'); ?>
</div>
</div>
<div class="form-actions">
<div class="wrapper">
<input id="show-filters" type="submit" value="<?php echo osc_esc_html( __('Apply filters') ); ?>" class="btn btn-submit" />
<a class="btn" href="<?php echo osc_admin_base_url(true).'?page=items'; ?>"><?php _e('Reset filters'); ?></a>
</div>
</div>
</form>
<h2 class="render-title"><?php _e('Manage listings'); ?> <a href="<?php echo osc_admin_base_url(true) . '?page=items&action=post'; ?>" class="btn btn-mini"><?php _e('Add new'); ?></a></h2>
<div class="relative">
<div id="listing-toolbar">
<div class="float-right">
<form method="get" action="<?php echo osc_admin_base_url(true); ?>" class="inline nocsrf">
<?php foreach( Params::getParamsAsArray('get') as $key => $value ) { ?>
<?php if( $key != 'iDisplayLength' ) { ?>
<input type="hidden" name="<?php echo $key; ?>" value="<?php echo osc_esc_html($value); ?>" />
<?php } } ?>
<select name="iDisplayLength" class="select-box-extra select-box-medium float-left" onchange="this.form.submit();" >
<option value="10"><?php printf(__('%d Listings'), 10); ?></option>
<option value="25" <?php if( Params::getParam('iDisplayLength') == 25 ) echo 'selected'; ?> ><?php printf(__('%d Listings'), 25); ?></option>
<option value="50" <?php if( Params::getParam('iDisplayLength') == 50 ) echo 'selected'; ?> ><?php printf(__('%d Listings'), 50); ?></option>
<option value="100" <?php if( Params::getParam('iDisplayLength') == 100 ) echo 'selected'; ?> ><?php printf(__('%d Listings'), 100); ?></option>
</select>
</form>
<form method="get" action="<?php echo osc_admin_base_url(true); ?>" id="shortcut-filters" class="inline">
<input type="hidden" name="page" value="items" />
<input type="hidden" name="iDisplayLength" value="<?php echo $iDisplayLength;?>" />
<?php if($withFilters) { ?>
<a id="btn-hide-filters" class="btn" href="<?php echo osc_admin_base_url(true).'?page=items'; ?>"><?php _e('Reset filters'); ?></a>
<?php } ?>
<a id="btn-display-filters" href="#" class="btn <?php if($withFilters) { echo 'btn-red'; } ?>"><?php _e('Show filters'); ?></a>
<?php $opt = "oPattern"; if(Params::getParam('shortcut-filter') != '') { $opt = Params::getParam('shortcut-filter'); } ?>
<?php $classPattern = 'hide'; $classUser = 'hide'; $classItemId = 'hide'; ?>
<?php if($opt == 'oUser') { $classUser = ''; } ?>
<?php if($opt == 'oPattern') { $classPattern = ''; } ?>
<?php if($opt == 'oItemId') { $classItemId = ''; } ?>
<select id="filter-select" name="shortcut-filter" class="select-box-extra select-box-input">
<option value="oPattern" <?php if($opt == 'oPattern'){ echo 'selected="selected"'; } ?>><?php _e('Pattern'); ?></option>
<option value="oUser" <?php if($opt == 'oUser'){ echo 'selected="selected"'; } ?>><?php _e('Email'); ?></option>
<option value="oItemId" <?php if($opt == 'oItemId'){ echo 'selected="selected"'; } ?>><?php _e('Item ID'); ?></option>
</select><input
id="fPattern" type="text" name="sSearch"
value="<?php echo osc_esc_html(Params::getParam('sSearch')); ?>"
class="input-text input-actions input-has-select <?php echo $classPattern; ?>"/><input
id="fUser" name="user" type="text"
class="fUser input-text input-actions input-has-select <?php echo $classUser; ?>"
value="<?php echo osc_esc_html(Params::getParam('user')); ?>" /><input
id="fUserId" name="userId" type="hidden"
value="<?php echo osc_esc_html(Params::getParam('userId')); ?>" /><input
id="fItemId" type="text" name="itemId"
value="<?php echo osc_esc_html(Params::getParam('itemId')); ?>"
class="input-text input-actions input-has-select <?php echo $classItemId; ?>"/>
<input type="submit" class="btn submit-right" value="<?php echo osc_esc_html( __('Find') ); ?>">
</form>
</div>
</div>
<form class="" id="datatablesForm" action="<?php echo osc_admin_base_url(true); ?>" method="post" data-dialog-open="false">
<input type="hidden" name="page" value="items" />
<input type="hidden" name="action" value="bulk_actions" />
<div id="bulk-actions">
<label>
<?php osc_print_bulk_actions('bulk_actions', 'bulk_actions', __get('bulk_options'), 'select-box-extra'); ?>
<input type="submit" id="bulk_apply" class="btn" value="<?php echo osc_esc_html( __('Apply') ); ?>" />
</label>
</div>
<div class="table-contains-actions">
<table class="table" cellpadding="0" cellspacing="0">
<thead>
<tr>
<?php foreach($columns as $k => $v) {
echo '<th class="col-'.$k.' '.($sort==$k?($direction=='desc'?'sorting_desc':'sorting_asc'):'').'">'.$v.'</th>';
}; ?>
</tr>
</thead>
<tbody>
<?php if( count($rows) > 0 ) { ?>
<?php foreach($rows as $key => $row) { ?>
<tr class="<?php echo implode(' ', osc_apply_filter('datatable_listing_class', array(), $aRawRows[$key], $row)); ?>">
<?php foreach($row as $k => $v) { ?>
<td class="col-<?php echo $k; ?>"><?php echo $v; ?></td>
<?php }; ?>
</tr>
<?php }; ?>
<?php } else { ?>
<tr>
<td colspan="<?php echo count($columns); ?>" class="text-center">
<p><?php _e('No data available in table'); ?></p>
</td>
</tr>
<?php } ?>
</tbody>
</table>
<div id="table-row-actions"></div> <!-- used for table actions -->
</div>
</form>
</div>
<?php
function showingResults(){
$aData = __get("aData");
echo '<ul class="showing-results"><li><span>'.osc_pagination_showing((Params::getParam('iPage')-1)*$aData['iDisplayLength']+1, ((Params::getParam('iPage')-1)*$aData['iDisplayLength'])+count($aData['aRows']), $aData['iTotalDisplayRecords'], $aData['iTotalRecords']).'</span></li></ul>';
}
osc_add_hook('before_show_pagination_admin','showingResults');
osc_show_pagination_admin($aData);
?>
<form id="dialog-item-delete" method="get" action="<?php echo osc_admin_base_url(true); ?>" class="has-form-actions hide">
<input type="hidden" name="page" value="items" />
<input type="hidden" name="action" value="delete" />
<input type="hidden" name="id[]" value="" />
<div class="form-horizontal">
<div class="form-row">
<?php echo osc_apply_filter('admin_dialog_delete_listing_text', __('Are you sure you want to delete this listing?')); ?>
</div>
<div class="form-actions">
<div class="wrapper">
<a class="btn" href="javascript:void(0);" onclick="$('#dialog-item-delete').dialog('close');"><?php _e('Cancel'); ?></a>
<input id="item-delete-submit" type="submit" value="<?php echo osc_esc_html( __('Delete') ); ?>" class="btn btn-red" />
</div>
</div>
</div>
</form>
<div id="dialog-bulk-actions" title="<?php _e('Bulk actions'); ?>" class="has-form-actions hide">
<div class="form-horizontal">
<div class="form-row"></div>
<div class="form-actions">
<div class="wrapper">
<a id="bulk-actions-cancel" class="btn" href="javascript:void(0);"><?php _e('Cancel'); ?></a>
<a id="bulk-actions-submit" href="javascript:void(0);" class="btn btn-red" ><?php echo osc_esc_html( __('Delete') ); ?></a>
<div class="clear"></div>
</div>
</div>
</div>
</div>
<?php osc_current_admin_theme_path( 'parts/footer.php' ); ?>