REDROOM
PHP 8.2.31
Path:
Logout
Edit File
Size: 1.64 KB
Close
//home/nshryvcy/radiantskinclinics.org/wp-content/plugins/extendify_old/app/PluginNotifications/AdminPage.php
Text
Base64
<?php namespace Extendify\PluginNotifications; defined('ABSPATH') || die('No direct access.'); class AdminPage { public static function handleActions() { // phpcs:ignore WordPress.Security.NonceVerification.Recommended if (sanitize_text_field(wp_unslash($_REQUEST['page'] ?? '')) !== 'extendify-notifications') { return; } // phpcs:ignore WordPress.Security.NonceVerification.Recommended $action = sanitize_text_field(wp_unslash($_REQUEST['extendify_action'] ?? '')); if (empty($action)) { return; } check_admin_referer('extendify_notifications_action', '_extendify_nonce'); if ($action === 'dismiss') { $id = sanitize_text_field(wp_unslash($_REQUEST['notice_id'] ?? '')); if ($id) { Admin::dismissNotice($id); } } if ($action === 'dismiss-all') { Admin::dismissAll(); } \wp_safe_redirect(\admin_url('index.php?page=extendify-notifications')); exit; } public static function render() { if (!class_exists('WP_List_Table')) { require_once ABSPATH . 'wp-admin/includes/class-wp-list-table.php'; } $table = new NotificationsListTable(); $table->prepare_items(); echo '<div class="wrap">'; echo '<h1>' . esc_html__('Plugin Notifications', 'extendify-local') . '</h1>'; $table->views(); echo '<form method="post">'; \wp_nonce_field('extendify_notifications_bulk', '_extendify_nonce'); $table->display(); echo '</form>'; echo '</div>'; } }
Save
Close
Exit & Reset
Text mode: syntax highlighting auto-detects file type.
Directory Contents
Dirs: 1 × Files: 3
Delete Selected
Select All
Select None
Sort:
Name
Size
Modified
Enable drag-to-move
Name
Size
Perms
Modified
Actions
Controllers
DIR
-
drwxr-xr-x
2026-04-28 02:40:01
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
Admin.php
9.45 KB
lrw-r--r--
2026-04-09 23:45:00
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
AdminPage.php
1.64 KB
lrw-r--r--
2026-03-24 18:55:54
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
NotificationsListTable.php
7.40 KB
lrw-r--r--
2026-03-19 23:35:18
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
Zip Selected
If ZipArchive is unavailable, a
.tar
will be created (no compression).