Current path: home/webdevt/www/dev-uz-avocat/wp-content/plugins/wp-all-import/views/admin/manage/
?? Go up: /home/webdevt/www/dev-uz-avocat/wp-content/plugins/wp-all-import/views/admin
<h2></h2> <!-- Do not remove -->
<?php
// notify user
if (!PMXI_Plugin::getInstance()->getOption('dismiss_manage_bottom')) {
?>
<div class="updated_bottom">
<?php printf(
__('<span><a href="https://wordpress.org/support/view/plugin-reviews/wp-all-import#postform" target="_blank">If our plugin helped you, please rate us on WordPress.org. It would really help us!</a><a href="https://wordpress.org/support/view/plugin-reviews/wp-all-import#postform" class="pmxi_stars" target="_blank"></a></span><a href="javascript:void(0);" id="dismiss_manage_bottom">dismiss</a>', 'wp_all_import_plugin')
) ?>
</div>
<?php
}
?>
<div class="wpallimport-header" style="overflow:hidden; height: 70px; padding-top: 10px; margin-bottom: -15px;">
<div class="wpallimport-logo"></div>
<div class="wpallimport-title">
<h3><?php _e('Manage Imports', 'wp_all_import_plugin'); ?></h3>
</div>
</div>
<?php if ($this->errors->get_error_codes()): ?>
<?php $this->error() ?>
<?php endif ?>
<form method="get">
<input type="hidden" name="page" value="<?php echo esc_attr($this->input->get('page')) ?>" />
<p class="search-box">
<label for="search-input" class="screen-reader-text"><?php _e('Search Imports', 'wp_all_import_plugin') ?>:</label>
<input id="search-input" type="text" name="s" value="<?php echo esc_attr($s) ?>" />
<input type="submit" class="button" value="<?php _e('Search Imports', 'wp_all_import_plugin') ?>">
</p>
</form>
<?php
// define the columns to display, the syntax is 'internal name' => 'display name'
$columns = array(
'id' => __('ID', 'wp_all_import_plugin'),
'name' => __('File', 'wp_all_import_plugin'),
'actions' => '',
'summary' => __('Summary', 'wp_all_import_plugin'),
'info' => __('Info & Options', 'wp_all_import_plugin'),
);
$columns = apply_filters('pmxi_manage_imports_columns', $columns);
?>
<form method="post" id="import-list" action="<?php echo esc_url(remove_query_arg('pmxi_nt')); ?>">
<input type="hidden" name="action" value="bulk" />
<?php wp_nonce_field('bulk-imports', '_wpnonce_bulk-imports') ?>
<div class="tablenav">
<div class="alignleft actions">
<select name="bulk-action">
<option value="" selected="selected"><?php _e('Bulk Actions', 'wp_all_import_plugin') ?></option>
<option value="delete"><?php _e('Delete', 'wp_all_import_plugin') ?></option>
</select>
<input type="submit" value="<?php esc_attr_e('Apply', 'wp_all_import_plugin') ?>" name="doaction" id="doaction" class="button-secondary action" />
</div>
<?php if ($page_links): ?>
<div class="tablenav-pages">
<?php echo $page_links_html = sprintf(
'<span class="displaying-num">' . __('Displaying %s–%s of %s', 'wp_all_import_plugin') . '</span>%s',
number_format_i18n(($pagenum - 1) * $perPage + 1),
number_format_i18n(min($pagenum * $perPage, $list->total())),
number_format_i18n($list->total()),
wp_kses_post($page_links)
) ?>
</div>
<?php endif ?>
</div>
<div class="clear"></div>
<table class="widefat pmxi-admin-imports">
<thead>
<tr>
<th class="manage-column column-cb check-column" scope="col">
<input type="checkbox" />
</th>
<?php
$col_html = '';
foreach ($columns as $column_id => $column_display_name) {
if (in_array($column_id, array('id', 'name'))){
$column_link = "<a href='";
$order2 = 'ASC';
if ($order_by == $column_id)
$order2 = ($order == 'DESC') ? 'ASC' : 'DESC';
$column_link .= esc_url(add_query_arg(array('order' => $order2, 'order_by' => $column_id), $this->baseUrl));
$column_link .= "'>{$column_display_name}</a>";
$col_html .= '<th scope="col" class="column-' . $column_id . ' ' . ($order_by == $column_id ? $order : '') . '">' . $column_link . '</th>';
}
else $col_html .= '<th scope="col" class="column-' . $column_id . '">' . $column_display_name . '</th>';
}
echo wp_kses_post($col_html);
?>
</tr>
</thead>
<tfoot>
<tr>
<th class="manage-column column-cb check-column" scope="col">
<input type="checkbox" />
</th>
<?php echo wp_kses_post($col_html); ?>
</tr>
</tfoot>
<tbody id="the-pmxi-admin-import-list" class="list:pmxi-admin-imports">
<?php if ($list->isEmpty()): ?>
<tr>
<td colspan="<?php echo count($columns) + 1 ?>"><?php printf(__('No previous imports found. <a href="%s">Start a new import...</a>', 'wp_all_import_plugin'), esc_url(add_query_arg(array('page' => 'pmxi-admin-import'), admin_url('admin.php')))); ?></td>
</tr>
<?php else: ?>
<?php
$class = '';
?>
<?php foreach ($list as $item): ?>
<?php $class = ('alternate' == $class) ? '' : 'alternate'; ?>
<tr class="<?php echo esc_attr($class); ?>" valign="middle">
<th scope="row" class="check-column">
<input type="checkbox" id="item_<?php echo esc_attr($item['id']) ?>" name="items[]" value="<?php echo esc_attr($item['id']) ?>" />
</th>
<?php foreach ($columns as $column_id => $column_display_name): ?>
<?php
switch ($column_id):
case 'id':
?>
<th valign="top" scope="row">
<?php echo esc_html($item['id']) ?>
</th>
<?php
break;
case 'first_import':
?>
<td>
<?php if ('0000-00-00 00:00:00' == $item['first_import']): ?>
<em>never</em>
<?php else: ?>
<?php echo get_date_from_gmt($item['first_import'], 'Y/m/d g:i a'); ?>
<?php endif ?>
</td>
<?php
break;
case 'registered_on':
?>
<td>
<?php if ('0000-00-00 00:00:00' == $item['registered_on']): ?>
<em>never</em>
<?php else: ?>
<?php echo get_date_from_gmt($item['registered_on'], 'Y/m/d g:i a'); ?>
<?php endif ?>
</td>
<?php
break;
case 'name':
?>
<td>
<strong><?php echo esc_attr(apply_filters("pmxi_import_name", (!empty($item['friendly_name'])) ? $item['friendly_name'] : $item['name'], $item['id'])); ?></strong><br>
<?php if ($item['path']): ?>
<?php if ( in_array($item['type'], array('upload'))): ?>
<?php $item['path'] = wp_all_import_get_absolute_path($item['path']); ?>
<?php
$path = $item['path'];
$path_parts = pathinfo($item['path']);
if ( ! empty($path_parts['dirname'])){
$path_all_parts = explode('/', $path_parts['dirname']);
$dirname = array_pop($path_all_parts);
if ( wp_all_import_isValidMd5($dirname)){
$path = str_replace($dirname, preg_replace('%^(.{3}).*(.{3})$%', '$1***$2', $dirname), str_replace('temp/', '', $item['path']));
}
}
?>
<em><a href="<?php echo esc_url(add_query_arg(array('id' => $item['id'], 'action' => 'feed', '_wpnonce' => wp_create_nonce( '_wpnonce-download_feed' )), $this->baseUrl)); ?>" class="wp_all_import_show_path" rel="<?php echo esc_attr($item['path']); ?>"><?php echo preg_replace('%.*wp-content/%', 'wp-content/', $path); ?></a></em>
<?php elseif (in_array($item['type'], array('file'))):?>
<?php $item['path'] = wp_all_import_get_absolute_path($item['path']); ?>
<em><a href="<?php echo esc_url(add_query_arg(array('id' => $item['id'], 'action' => 'feed', '_wpnonce' => wp_create_nonce( '_wpnonce-download_feed' )), $this->baseUrl)); ?>" class="wp_all_import_show_path" rel="<?php echo esc_attr($item['path']); ?>"><?php echo preg_replace('%.*wp-content/%', 'wp-content/', $item['path']); ?></a></em>
<?php else: ?>
<em><?php echo esc_attr(str_replace("\\", '/', preg_replace('%^(\w+://[^:]+:)[^@]+@%', '$1*****@', $item['path']))); ?></em>
<?php endif; ?>
<?php endif ?>
<div class="row-actions">
<?php do_action('pmxi_import_menu', $item['id'], $this->baseUrl); ?>
<?php
$import_actions = array(
'import_template' => array(
'url' => ( ! $item['processing'] and ! $item['executing'] ) ? esc_url(add_query_arg(array('id' => $item['id'], 'action' => 'edit'), $this->baseUrl)) : '',
'title' => __('Edit Template', 'wp_all_import_plugin'),
'class' => 'edit'
),
'import_settings' => array(
'url' => ( ! $item['processing'] and ! $item['executing'] ) ? esc_url(add_query_arg(array('id' => $item['id'], 'action' => 'options'), $this->baseUrl)) : '',
'title' => __('Settings', 'wp_all_import_plugin'),
'class' => 'edit'
),
'delete' => array(
'url' => esc_url(add_query_arg(array('id' => $item['id'], 'action' => 'delete'), $this->baseUrl)),
'title' => __('Delete', 'wp_all_import_plugin'),
'class' => 'delete'
),
);
$import_actions = apply_filters('pmxi_import_actions', $import_actions, $item );
$ai = 1;
foreach ($import_actions as $key => $action) {
switch ($key) {
default:
?>
<span class="<?php echo esc_attr($action['class']); ?>">
<?php if ( ! empty($action['url']) ): ?>
<a class="<?php echo esc_attr($action['class']); ?>" href="<?php echo esc_url($action['url']); ?>"><?php echo esc_html($action['title']); ?></a>
<?php else: ?>
<span class="wpallimport-disabled"><?php echo esc_html($action['title']); ?></span>
<?php endif; ?>
</span> <?php if ($ai != count($import_actions)): ?>|<?php endif; ?>
<?php
break;
}
$ai++;
}
?>
</div>
</td>
<?php
break;
case 'summary':
?>
<td>
<?php
if ($item['triggered'] and ! $item['processing']){
_e('triggered with cron', 'wp_all_import_plugin');
if ($item['last_activity'] != '0000-00-00 00:00:00'){
$diff = ceil((time() - strtotime($item['last_activity']))/60);
?>
<br>
<span <?php if ($diff >= 10) echo 'style="color:red;"';?>>
<?php
printf(__('last activity %s ago', 'wp_all_import_plugin'), human_time_diff(strtotime($item['last_activity']), time()));
?>
</span>
<?php
}
}
elseif ($item['processing']){
_e('currently processing with cron', 'wp_all_import_plugin'); echo '<br/>';
printf('Records Processed %s', $item['imported']);
if ($item['last_activity'] != '0000-00-00 00:00:00'){
$diff = ceil((time() - strtotime($item['last_activity']))/60);
?>
<br>
<span <?php if ($diff >= 10) echo 'style="color:red;"';?>>
<?php
printf(__('last activity %s ago', 'wp_all_import_plugin'), human_time_diff(strtotime($item['last_activity']), time()));
?>
</span>
<?php
}
}
elseif($item['executing']){
_e('Import currently in progress', 'wp_all_import_plugin');
if ($item['last_activity'] != '0000-00-00 00:00:00'){
$diff = ceil((time() - strtotime($item['last_activity']))/60);
?>
<br>
<span <?php if ($diff >= 10) echo 'style="color:red;"';?>>
<?php
printf(__('last activity %s ago', 'wp_all_import_plugin'), human_time_diff(strtotime($item['last_activity']), time()));
?>
</span>
<?php
}
}
elseif($item['canceled'] and $item['canceled_on'] != '0000-00-00 00:00:00'){
printf(__('Import Attempt at %s', 'wp_all_import_plugin'), get_date_from_gmt($item['canceled_on'], "m/d/Y g:i a")); echo '<br/>';
_e('Import canceled', 'wp_all_import_plugin');
}
elseif($item['failed'] and $item['failed_on'] != '0000-00-00 00:00:00'){
printf(__('Import Attempt at %s', 'wp_all_import_plugin'), get_date_from_gmt($item['failed_on'], "m/d/Y g:i a")); echo '<br/>';
_e('Import failed, please check logs', 'wp_all_import_plugin');
}
else{
if (!empty($item['options']['custom_type'])){
$custom_type = get_post_type_object( $item['options']['custom_type'] );
$cpt_name = ( ! empty($custom_type)) ? $custom_type->label : '';
}
else{
$cpt_name = '';
}
printf(__('Last run: %s', 'wp_all_import_plugin'), ($item['registered_on'] == '0000-00-00 00:00:00') ? __('never', 'wp_all_import_plugin') : get_date_from_gmt($item['registered_on'], "m/d/Y g:i a")); echo '<br/>';
printf(__('%d %s created', 'wp_all_import_plugin'), esc_attr($item['created']), esc_attr($cpt_name)); echo '<br/>';
printf(__('%d updated, %d skipped, %d deleted'), esc_attr($item['updated']), esc_attr($item['skipped']), esc_attr($item['deleted']));
//printf(__('%d records', 'wp_all_import_plugin'), $item['post_count']);
}
if ($item['settings_update_on'] != '0000-00-00 00:00:00' and $item['last_activity'] != '0000-00-00 00:00:00' and strtotime($item['settings_update_on']) > strtotime($item['last_activity'])){
echo '<br/>';
?>
<strong><?php _e('settings edited since last run', 'wp_all_import_plugin'); ?></strong>
<?php
}
?>
</td>
<?php
break;
case 'info':
?>
<td>
<a href="#" class="scheduling-disabled"><?php _e('Scheduling Options', 'wp_all_import_plugin'); ?></a>
<a href="#help" class="wpallimport-help" style="position: relative; top: -2px; margin-left: 0;" title="<?php _e("To run this import on a schedule you must use the 'Download from URL' or 'Use existing file' option on the Import Settings page.", PMXI_Plugin::LANGUAGE_DOMAIN);?>">?</a>
<br/>
<a href="<?php echo esc_url(add_query_arg(array('page' => 'pmxi-admin-history', 'id' => $item['id']), remove_query_arg('pagenum', $this->baseUrl))); ?>"><?php _e('History Logs', 'wp_all_import_plugin'); ?></a>
</td>
<?php
break;
case 'actions':
?>
<td style="width: 130px;">
<?php if ( ! $item['processing'] and ! $item['executing'] ): ?>
<h2 style="float:left;"><a class="add-new-h2" href="<?php echo esc_url(add_query_arg(array('id' => $item['id'], 'action' => 'update'), remove_query_arg('pagenum', $this->baseUrl))); ?>"><?php _e('Run Import', 'wp_all_import_plugin'); ?></a></h2>
<?php elseif ($item['processing']) : ?>
<h2 style="float:left;"><a class="add-new-h2" href="<?php echo esc_url(add_query_arg(array('id' => $item['id'], 'action' => 'cancel', '_wpnonce' => wp_create_nonce( '_wpnonce-cancel_import' )), remove_query_arg('pagenum', $this->baseUrl))); ?>"><?php _e('Cancel Cron', 'wp_all_import_plugin'); ?></a></h2>
<?php elseif ($item['executing']) : ?>
<h2 style="float:left;"><a class="add-new-h2" href="<?php echo esc_url(add_query_arg(array('id' => $item['id'], 'action' => 'cancel', '_wpnonce' => wp_create_nonce( '_wpnonce-cancel_import' )), remove_query_arg('pagenum', $this->baseUrl))); ?>"><?php _e('Cancel', 'wp_all_import_plugin'); ?></a></h2>
<?php endif; ?>
</td>
<?php
break;
default:
?>
<td>
<?php do_action('pmxi_manage_imports_column', $column_id, $item); ?>
</td>
<?php
break;
endswitch;
?>
<?php endforeach; ?>
</tr>
<?php do_action('pmxi_manage_imports', $item, $class); ?>
<?php endforeach; ?>
<?php endif ?>
</tbody>
</table>
<div class="tablenav">
<?php if ($page_links): ?><div class="tablenav-pages"><?php echo wp_kses_post($page_links_html) ?></div><?php endif ?>
<div class="alignleft actions">
<select name="bulk-action2">
<option value="" selected="selected"><?php _e('Bulk Actions', 'wp_all_import_plugin') ?></option>
<?php if ( empty($type) or 'trash' != $type): ?>
<option value="delete"><?php _e('Delete', 'wp_all_import_plugin') ?></option>
<?php else: ?>
<option value="restore"><?php _e('Restore', 'wp_all_import_plugin')?></option>
<option value="delete"><?php _e('Delete Permanently', 'wp_all_import_plugin')?></option>
<?php endif ?>
</select>
<input type="submit" value="<?php esc_attr_e('Apply', 'wp_all_import_plugin') ?>" name="doaction2" id="doaction2" class="button-secondary action" />
</div>
</div>
<div class="clear"></div>
<div class="wpallimport-display-columns wpallimport-margin-top-forty">
<?php echo apply_filters('wpallimport_footer', ''); ?>
</div>
</form>