File: /home/cafsindia/public_html/wp-content/plugins/content-aware-sidebars/admin/sidebar-overview.php
<?php
/**
* @package Content Aware Sidebars
* @author Joachim Jensen <joachim@dev.institute>
* @license GPLv3
* @copyright 2022 by Joachim Jensen
*/
defined('ABSPATH') || exit;
final class CAS_Sidebar_Overview extends CAS_Admin
{
/**
* Sidebar table
* @var CAS_Sidebar_List_Table
*/
public $table;
/**
* Add filters and actions for admin dashboard
* e.g. AJAX calls
*
* @since 3.5
* @return void
*/
public function admin_hooks()
{
$this->add_filter('set-screen-option', 'set_screen_option', 10, 3);
}
/**
* Setup admin menus and get current screen
*
* @since 3.4
* @return string
*/
public function get_screen()
{
$post_type_object = $this->get_sidebar_type();
$notification_label = $this->notification_count ? sprintf(' <span class="awaiting-mod">%d</span>', $this->notification_count) : '';
add_menu_page(
$post_type_object->labels->name,
__('Content Aware', 'content-aware-sidebars') . $notification_label,
$post_type_object->cap->edit_posts,
CAS_App::BASE_SCREEN,
[$this,'render_screen'],
$post_type_object->menu_icon,
60 //after Appearance
);
return add_submenu_page(
CAS_App::BASE_SCREEN,
$post_type_object->labels->name,
$post_type_object->labels->all_items,
$post_type_object->cap->edit_posts,
CAS_App::BASE_SCREEN,
[$this,'render_screen']
);
}
/**
* @since 3.5
*
* @return bool
*/
public function authorize_user()
{
return current_user_can($this->get_sidebar_type()->cap->edit_posts);
}
/**
* @since 3.4
*
* @return void
*/
public function prepare_screen()
{
add_screen_option('per_page', [
'default' => 20,
'option' => 'cas_sidebars_per_page'
]);
$this->table = new CAS_Sidebar_List_Table();
$this->process_actions();//todo:add func to table to actions
$this->table->prepare_items();
}
/**
* Render screen
*
* @since 3.4
* @return void
*/
public function render_screen()
{
$post_type_object = $this->get_sidebar_type();
echo '<div class="wrap">';
echo '<h1>';
echo esc_html($post_type_object->labels->name);
if (current_user_can($post_type_object->cap->create_posts)) {
echo ' <a href="' . esc_url(admin_url('admin.php?page=wpcas-edit')) . '" class="add-new-h2 page-title-action">' . esc_html($post_type_object->labels->add_new) . '</a>';
}
if (current_user_can('edit_theme_options')) {
echo ' <a href="' . esc_url(admin_url('widgets.php')) . '" class="page-title-action add-new-h2">' . __('Manage Widgets', 'content-aware-sidebars') . '</a>';
}
if (isset($_REQUEST['s']) && strlen($_REQUEST['s'])) {
/* translators: %s: search keywords */
printf(' <span class="subtitle">' . __('Search results for “%s”') . '</span>', get_search_query());
}
echo '</h1>';
echo '<hr class="wp-header-end">';
$this->bulk_messages();
$_SERVER['REQUEST_URI'] = remove_query_arg(['locked', 'skipped', 'deleted', 'trashed', 'untrashed'], $_SERVER['REQUEST_URI']);
$this->table->views();
echo '<form id="posts-filter" method="get">';
$this->table->search_box($post_type_object->labels->search_items, 'post');
echo '<input type="hidden" name="page" value="wpcas" />';
echo '<input type="hidden" name="post_status" class="post_status_page" value="' . (!empty($_REQUEST['post_status']) ? esc_attr($_REQUEST['post_status']) : 'all') . '" />';
$this->table->display();
echo '</form></div>';
}
/**
* Process actions
*
* @since 3.4
* @return void
*/
public function process_actions()
{
$doaction = $this->table->current_action();
if ($doaction) {
check_admin_referer('bulk-sidebars');
$pagenum = $this->table->get_pagenum();
$sendback = remove_query_arg(['activated','deactivated','trashed', 'untrashed', 'deleted', 'locked', 'ids'], wp_get_referer());
$sendback = add_query_arg('paged', $pagenum, $sendback);
if ('delete_all' == $doaction) {
global $wpdb;
$post_ids = $wpdb->get_col($wpdb->prepare("SELECT ID FROM $wpdb->posts WHERE post_type=%s AND post_status = %s", CAS_App::TYPE_SIDEBAR, 'trash'));
$doaction = 'delete';
} elseif (isset($_REQUEST['ids'])) {
$post_ids = explode(',', $_REQUEST['ids']);
} elseif (!empty($_REQUEST['post'])) {
$post_ids = array_map('intval', $_REQUEST['post']);
}
if (!isset($post_ids)) {
wp_redirect($sendback);
exit;
}
$post_ids = (array)$post_ids;
$handled = 0;
switch ($doaction) {
case 'activate':
case 'deactivate':
$locked = 0;
foreach ($post_ids as $post_id) {
if (!current_user_can('edit_post', $post_id)) {
wp_die(__('You are not allowed to update this item.'));
}
if (wp_check_post_lock($post_id)) {
$locked++;
continue;
}
if ($doaction == 'activate') {
$data = [
'ID' => $post_id,
'post_status' => CAS_App::STATUS_ACTIVE,
'post_date' => current_time('mysql'),
'post_date_gmt' => current_time('mysql', true)
];
} else {
$data = [
'ID' => $post_id,
'post_status' => CAS_App::STATUS_INACTIVE
];
}
if (!wp_update_post($data)) {
wp_die(__('Error in updating status.'));
}
$handled++;
}
$sendback = add_query_arg([$doaction . 'd' => $handled, 'ids' => join(',', $post_ids), 'locked' => $locked], $sendback);
break;
case 'trash':
$locked = 0;
foreach ($post_ids as $post_id) {
if (!current_user_can('delete_post', $post_id)) {
wp_die(__('You are not allowed to move this item to the Trash.'));
}
if (wp_check_post_lock($post_id)) {
$locked++;
continue;
}
if (!wp_trash_post($post_id)) {
wp_die(__('Error in moving to Trash.'));
}
$handled++;
}
$sendback = add_query_arg(['trashed' => $handled, 'ids' => join(',', $post_ids), 'locked' => $locked], $sendback);
break;
case 'untrash':
foreach ($post_ids as $post_id) {
if (!current_user_can('delete_post', $post_id)) {
wp_die(__('You are not allowed to restore this item from the Trash.'));
}
if (!wp_untrash_post($post_id)) {
wp_die(__('Error in restoring from Trash.'));
}
$handled++;
}
$sendback = add_query_arg('untrashed', $handled, $sendback);
break;
case 'delete':
foreach ($post_ids as $post_id) {
if (!current_user_can('delete_post', $post_id)) {
wp_die(__('You are not allowed to delete this item.'));
}
if (!wp_delete_post($post_id)) {
wp_die(__('Error in deleting.'));
}
$handled++;
}
$sendback = add_query_arg('deleted', $handled, $sendback);
break;
default:
break;
}
$sendback = remove_query_arg(['action', 'action2', 'post_status', 'post', 'bulk_edit'], $sendback);
wp_safe_redirect($sendback);
exit;
}
if (!empty($_REQUEST['_wp_http_referer'])) {
wp_safe_redirect(remove_query_arg(['_wp_http_referer', '_wpnonce'], wp_unslash($_SERVER['REQUEST_URI'])));
exit;
}
}
/**
* Set screen options on save
*
* @since 3.4
* @param string $status
* @param string $option
* @param string $value
*/
public function set_screen_option($status, $option, $value)
{
if ($option == 'cas_sidebars_per_page') {
return $value;
}
return $status;
}
public function bulk_messages()
{
$bulk_messages = [
'updated' => _n_noop('%s sidebar updated.', '%s sidebars updated.', 'content-aware-sidebars'),
'locked' => _n_noop('%s sidebar not updated, somebody is editing it.', '%s sidebars not updated, somebody is editing them.', 'content-aware-sidebars'),
'activated' => _n_noop('%s sidebar activated.', '%s sidebars activated.', 'content-aware-sidebars'),
'deactivated' => _n_noop('%s sidebar deactivated.', '%s sidebars deactivated.', 'content-aware-sidebars'),
'deleted' => _n_noop('%s sidebar permanently deleted.', '%s sidebars permanently deleted.', 'content-aware-sidebars'),
'trashed' => _n_noop('%s sidebar moved to the Trash.', '%s sidebars moved to the Trash.', 'content-aware-sidebars'),
'untrashed' => _n_noop('%s sidebar restored from the Trash.', '%s sidebars restored from the Trash.', 'content-aware-sidebars'),
];
$bulk_messages = apply_filters('cas/admin/bulk_messages', $bulk_messages);
$messages = [];
foreach ($bulk_messages as $key => $message) {
if (isset($_REQUEST[$key])) {
$count = absint($_REQUEST[$key]);
if ($count) {
$messages[] = sprintf(
translate_nooped_plural($message, $count),
number_format_i18n($count)
);
if ($key == 'trashed' && isset($_REQUEST['ids'])) {
$ids = preg_replace('/[^0-9,]/', '', $_REQUEST['ids']);
$messages[] = '<a href="' . esc_url(wp_nonce_url("admin.php?page=wpcas&doaction=undo&action=untrash&ids=$ids", 'bulk-sidebars')) . '">' . __('Undo') . '</a>';
}
}
}
}
if ($messages) {
echo '<div id="message" class="updated notice is-dismissible"><p>' . join(' ', $messages) . '</p></div>';
}
}
/**
* Register and enqueue scripts styles
* for screen
*
* @since 3.4
*/
public function add_scripts_styles()
{
}
}