Files
medicalalert-web-reloaded/wp/wp-content/plugins/wp-media-folder/class/pages/settings/image_compression.php
2024-07-16 13:57:46 +00:00

310 lines
17 KiB
PHP

<?php
/* Prohibit direct script loading */
defined('ABSPATH') || die('No direct script access allowed!');
$slug = 'imagerecycle-pdf-image-compression';
$plugin_file = 'imagerecycle-pdf-image-compression/wp-image-recycle.php';
if (isset($_GET['action'])) {
if (!file_exists(WP_PLUGIN_DIR . '/imagerecycle-pdf-image-compression')) {
$ac = 'install-plugin_' . $slug;
} else {
$ac = 'activate-plugin_' . $plugin_file;
}
if (empty($_GET['_wpnonce'])
|| !wp_verify_nonce($_GET['_wpnonce'], $ac)) {
die();
}
if (!defined('IFRAME_REQUEST') && in_array($_GET['action'], array(
'update-selected',
'activate-plugin',
'update-selected-themes'
))
) {
define('IFRAME_REQUEST', true);
}
require_once(ABSPATH . 'wp-admin/admin.php');
include_once(ABSPATH . 'wp-admin/includes/class-wp-upgrader.php');
$get_plugin = isset($_REQUEST['plugin']) ? trim($_REQUEST['plugin']) : '';
$act = isset($_REQUEST['action']) ? $_REQUEST['action'] : '';
if ('install-plugin' === $act) {
/**
* Filter check capability of current user to install plugin
*
* @param boolean The current user has the given capability
* @param string Action name
*
* @return boolean
*
* @ignore Hook already documented
*/
$wpmf_capability = apply_filters('wpmf_user_can', current_user_can('install_plugins'), 'install_imagerecycle_plugin');
if (!$wpmf_capability) {
wp_die(esc_html__('You do not have sufficient permissions to install plugins on this site.', 'wpmf'));
}
include_once(ABSPATH . 'wp-admin/includes/plugin-install.php'); //for plugins_api..
$setting_tab_value = 'wpmf-image-compression';
check_admin_referer('install-plugin_' . $get_plugin);
$api = plugins_api('plugin_information', array(
'slug' => $get_plugin,
'fields' => array(
'short_description' => false,
'sections' => false,
'requires' => false,
'rating' => false,
'ratings' => false,
'downloaded' => false,
'last_updated' => false,
'added' => false,
'tags' => false,
'compatibility' => false,
'homepage' => false,
'donate_link' => false,
),
));
if (is_wp_error($api)) {
// phpcs:ignore WordPress.Security.EscapeOutput -- Content already escaped in the method
wp_die($api);
}
// phpcs:disable WordPress.WP.GlobalVariablesOverride.Prohibited -- Use to merge params in Plugin_Installer_Skin construct
$title = __('Plugin Install', 'wpmf');
$parent_file = 'plugins.php';
$submenu_file = 'plugin-install.php';
$title = sprintf(__('Installing Plugin: %s', 'wpmf'), $api->name . ' ' . $api->version);
$nonce = 'install-plugin_' . $get_plugin;
$url = 'update.php?action=install-plugin&plugin=' . urlencode($get_plugin);
if (isset($_GET['from'])) {
$url .= '&from=' . urlencode(stripslashes($_GET['from']));
}
// phpcs:enable
$upgrader = new Plugin_Upgrader(new Plugin_Installer_Skin(compact('title', 'url', 'nonce', 'plugin', 'api')));
$upgrader->install($api->download_link);
} elseif ('activate' === $act) {
/**
* Filter check capability of current user to active plugin
*
* @param boolean The current user has the given capability
* @param string Action name
*
* @return boolean
*
* @ignore Hook already documented
*/
$wpmf_capability = apply_filters('wpmf_user_can', current_user_can('activate_plugins'), 'active_imagerecycle_plugin');
if (!$wpmf_capability) {
wp_die(esc_html__('You do not have sufficient permissions to activate plugins for this site.', 'wpmf'));
}
if (is_multisite() && !is_network_admin() && is_network_only_plugin($get_plugin)) {
wp_redirect(self_admin_url('plugins.php?plugin_status=' . $status . '&paged=' . $page . '&s=' . $s));
exit;
}
check_admin_referer('activate-plugin_' . $get_plugin);
$result = activate_plugin(
$get_plugin,
self_admin_url('plugins.php?error=true&plugin=' . $get_plugin),
is_network_admin()
);
if (is_wp_error($result)) {
if ('unexpected_output' === $result->get_error_code()) {
$u = 'plugins.php?error=true&charsout=' . strlen($result->get_error_data());
$u .= '&plugin=' . $get_plugin . '&plugin_status=' . $status . '&paged=' . $page . '&s=' . $s;
$redirect = self_admin_url($u);
wp_redirect(
add_query_arg(
'_error_nonce',
wp_create_nonce('plugin-activation-error_' . $get_plugin),
$redirect
)
);
exit;
} else {
// phpcs:ignore WordPress.Security.EscapeOutput -- Content already escaped in the method
wp_die($result);
}
}
if (!is_network_admin()) {
$recent = (array) get_option('recently_activated');
unset($recent[$get_plugin]);
update_option('recently_activated', $recent);
} else {
$recent = (array) get_site_option('recently_activated');
unset($recent[$get_plugin]);
update_site_option('recently_activated', $recent);
}
if (isset($_GET['from']) && 'import' === $_GET['from']) {
wp_redirect(self_admin_url('import.php?import=' . str_replace('-importer', '', dirname($get_plugin)))); // overrides the ?error=true one above and redirects to the Imports page, stripping the -importer suffix
} else {
// overrides the ?error=true one above
wp_redirect(
self_admin_url('options-general.php?page=option-folder')
);
}
}
}
?>
<div class="content-box content-wpmf-image-compression">
<?php if (file_exists(WP_PLUGIN_DIR . '/imagerecycle-pdf-image-compression') && is_plugin_active($plugin_file)) : ?>
<div class="main-presentation"
style="margin: 0 auto 20px;max-width: 1200px;font-family: helvetica,arial,sans-serif;">
<div class="main-textcontent" align="center">
<a href="https://www.imagerecycle.com/" target="_blank"> <img
src="https://www.imagerecycle.com/images/Notification-mail/logo-image-recycle.png"
alt="logo image recycle" width="500" height="84" class="CToWUd"
style="display: block; outline: medium none; text-decoration: none;
margin-left: auto; margin-right: auto; margin-top:15px;">
</a>
<p style="background-color: #ffffff; color: #445566; font-family: helvetica,arial,sans-serif;
font-size: 24px; line-height: 24px; padding-right: 10px; padding-left: 10px;"
align="center"><strong>Great! ImageRecycle is installed<br></strong></p>
<p style="background-color: #ffffff; color: #445566; font-family: helvetica,arial,sans-serif;
font-size: 14px; line-height: 22px; padding-left: 20px; padding-right: 20px; text-align: center;">
<strong>Speed optimization of your WordPress website is highly recommended for SEO. The image
compression is one of the tools that help to reduce your page size significantly while
preserving the image quality.<br/><br/>You can now manage all you images and compression from
the ImageRecycle plugin, menu Media > ImageRecycle.<br/><br/></strong> ImageRecycle got a
dedicated plugin for WordPress that run the images optimization automatically on your website &amp;
PDF
<br/>In order to start the optimization process, please install the WordPress plugin. Enjoy!</p>
<p></p>
<p>
<?php
echo '<a style="width: 250px; float: right; background: #554766;
line-height: 18px; text-align: center; margin-left:4px;color: #fff;
font-size: 14px;text-decoration: none; text-transform: uppercase;
padding: 8px 20px; font-weight:bold;"
class="edit" href="upload.php?page=wp-image-recycle-page"
aria-label="Activate ImageRecycle pdf &amp; image compression">
' . esc_html__('ImageRecycle is properly installed: manage images', 'wpmf') . '</a>';
?>
</p>
</div>
</div>
<?php else : ?>
<div class="main-presentation"
style="margin: 0 auto 0;max-width: 1200px; background-color:#fff;
font-family: helvetica,arial,sans-serif;">
<div class="main-textcontent" align="center">
<a href="https://www.imagerecycle.com/" target="_blank"> <img
src="https://www.imagerecycle.com/images/Notification-mail/logo-image-recycle.png"
alt="logo image recycle" width="500" height="84"
style="display: block; outline: medium none; text-decoration: none;
margin-left: auto; margin-right: auto; margin-top:15px;">
</a>
<p style="background-color: #ffffff; color: #445566;
font-family: helvetica,arial,sans-serif; font-size: 24px; line-height: 24px;
padding-right: 10px; padding-left: 10px;"
align="center"><strong>Get faster with lightweight images!<br></strong></p>
<p style="background-color: #ffffff; color: #445566;
font-family: helvetica,arial,sans-serif; font-size: 14px; line-height: 22px;
padding:20px; text-align: center;">
<strong>Speed optimization of your WordPress website is highly recommended for SEO. The image
compression is one of the tools that help to reduce your page size significantly while
preserving the image quality.<br><img
src="https://www.imagerecycle.com/images/No-compress/Optimization.gif"
alt="optimization"
style="display: block; outline: medium none; text-decoration: none;
margin-left: auto; margin-right: auto; margin-top:15px;"><br>WP
Media Folder is fully integrated with ImageRecycle service, you have a free trial with no
engagement and we provide a 20% OFF coupon! Use the coupon here: <a
href="https://www.imagerecycle.com/" target="_blank">www.imagerecycle.com</a></strong>
</p>
<div
style="background-color:#fafafa; border: 2px dashed #ccc; border-left: 5px solid #A1B660;
font-size: 30px; padding: 20px; line-height: 40px;">
ImageRecycle 20% OFF, apply on all memberships: WPMF-20
</div>
<p style="background-color: #ffffff; color: #445566; font-family: helvetica,arial,sans-serif;
font-size: 12px; line-height: 22px; padding-left: 20px; padding-right: 20px;
text-align: center; font-style: italic;">
ImageRecycle got a dedicated plugin for WordPress that run the images and PDF optimization
automatically on your website.
<br>In order to start the optimization process, please install the WordPress plugin. Enjoy!</p>
<p></p>
<p>
<?php
if (!file_exists(WP_PLUGIN_DIR . '/imagerecycle-pdf-image-compression')) {
$url = wp_nonce_url(
self_admin_url('options-general.php?page=option-folder&action=install-plugin&plugin=' . $slug),
'install-plugin_' . $slug
);
if (is_multisite()) {
/**
* Filter check capability of current user to check install plugins on multiple site
*
* @param boolean The current user has the given capability
* @param string Action name
*
* @return boolean
*
* @ignore Hook already documented
*/
$wpmf_capability = apply_filters('wpmf_user_can', current_user_can('manage_network_plugins'), 'install_network_imagerecycle_plugins');
if ($wpmf_capability) {
echo '<a style="float: right; background: #554766;line-height: 18px; text-align: center;
color: #fff;font-size: 14px;text-decoration: none; text-transform: uppercase;
padding: 5px 20px; font-weight:bold;"
target="_blank" class="edit" data-slug="imagerecycle-pdf-image-compression"
href="' . esc_html($url) . '" aria-label="Install ImageRecycle pdf &amp; image compression 2.1.1 now"
data-name="ImageRecycle pdf &amp; image compression 2.1.1">
' . esc_html__('Install ImageRecycle plugin', 'wpmf') . '</a>';
}
} else {
echo '<a style="float: right; background: #554766;line-height: 18px; text-align: center;
color: #fff;font-size: 14px;text-decoration: none;
text-transform: uppercase; padding: 5px 20px; font-weight:bold;"
target="_blank" class="edit" data-slug="imagerecycle-pdf-image-compression"
href="' . esc_html($url) . '" aria-label="Install ImageRecycle pdf &amp; image compression 2.1.1 now"
data-name="ImageRecycle pdf &amp; image compression 2.1.1">
' . esc_html__('Install ImageRecycle plugin', 'wpmf') . '</a>';
}
} else {
if (!is_plugin_active($plugin_file)) {
$url = wp_nonce_url(
'options-general.php?page=option-folder&action=activate&amp;plugin=' . $plugin_file,
'activate-plugin_' . $plugin_file
);
if (is_multisite()) {
/**
* Filter check capability of current user to check active plugins on multiple site
*
* @param boolean The current user has the given capability
* @param string Action name
*
* @return boolean
*
* @ignore Hook already documented
*/
$wpmf_capability = apply_filters('wpmf_user_can', current_user_can('manage_network_plugins'), 'activate_network_imagerecycle_plugins');
if ($wpmf_capability) {
echo '<a style="float: right; background: #554766;line-height: 18px;
text-align: center; color: #fff;font-size: 14px;text-decoration: none;
text-transform: uppercase; padding: 5px 20px; font-weight:bold;"
href="' . esc_html($url) . '" class="edit" aria-label="Activate ImageRecycle pdf &amp; image compression">
' . esc_html__('Activate Plugin', 'wpmf') . '</a>';
}
} else {
echo '<a style="float: right; background: #554766; line-height: 18px;
text-align: center;color: #fff;font-size: 14px;text-decoration: none;
text-transform: uppercase; padding: 5px 20px; font-weight:bold;"
href="' . esc_html($url) . '" class="edit" aria-label="Activate ImageRecycle pdf &amp; image compression">
' . esc_html__('Activate Plugin', 'wpmf') . '</a>';
}
}
}
?>
</p>
</div>
</div>
<?php endif; ?>
</div>