| 1 |
<?php |
| 2 |
|
| 3 |
namespace PXLBSAdminify\Inc\Admin\Frames; |
| 4 |
|
| 5 |
use PXLBSAdminify\Inc\Utils; |
| 6 |
|
| 7 |
// no direct access allowed |
| 8 |
if (!defined('ABSPATH')) { |
| 9 |
exit; |
| 10 |
} |
| 11 |
/** |
| 12 |
* WP Adminify |
| 13 |
* Frames Class |
| 14 |
* |
| 15 |
* @author Jewel Theme <support@jeweltheme.com> |
| 16 |
*/ |
| 17 |
|
| 18 |
if (!class_exists('Frames')) { |
| 19 |
class Frames |
| 20 |
{ |
| 21 |
public function __construct() |
| 22 |
{ |
| 23 |
$this->init_hooks(); |
| 24 |
} |
| 25 |
|
| 26 |
private function init_hooks() |
| 27 |
{ |
| 28 |
add_filter("language_attributes", [$this, "page_attribute"]); |
| 29 |
add_action('admin_enqueue_scripts', [$this, 'load_scripts']); |
| 30 |
|
| 31 |
// Reload the page after plugin activation/deactivation |
| 32 |
// phpcs:ignore WordPress.Security.NonceVerification.Recommended -- read-only check, no state change. |
| 33 |
if ( isset( $_GET['activate'] ) || isset( $_GET['activate-multi'] ) || isset( $_GET['deactivate'] ) || isset( $_GET['deactivate-multi'] ) ) { |
| 34 |
add_action('admin_footer', [$this, 'render_reload_script']); |
| 35 |
} |
| 36 |
} |
| 37 |
|
| 38 |
public static function render_reload_script() { |
| 39 |
self::custom_plugin_change_reload(); |
| 40 |
} |
| 41 |
|
| 42 |
/** |
| 43 |
* Break the current page out of the Adminify UI iframe. |
| 44 |
* |
| 45 |
* @param string|null $actual_link Optional. URL to send the parent window to. |
| 46 |
* When null, the parent simply reloads. |
| 47 |
* @return void |
| 48 |
*/ |
| 49 |
public static function custom_plugin_change_reload( $actual_link = null ) { |
| 50 |
if ( null !== $actual_link ) { |
| 51 |
// wp_json_encode(), not esc_js(): esc_js() turns "&" into "&", |
| 52 |
// which a classic <script> does not decode, breaking query args. |
| 53 |
echo '<script>parent.location.replace(' . wp_json_encode( |
| 54 |
esc_url_raw( $actual_link ), |
| 55 |
JSON_HEX_TAG | JSON_HEX_AMP | JSON_HEX_APOS | JSON_HEX_QUOT |
| 56 |
) . ');</script>'; |
| 57 |
|
| 58 |
// The reload() below would abort the replace() navigation above. |
| 59 |
return; |
| 60 |
} |
| 61 |
|
| 62 |
echo '<script>parent.location.reload();</script>'; |
| 63 |
} |
| 64 |
|
| 65 |
/** |
| 66 |
* Break out of the Adminify UI iframe, decided by the browser. |
| 67 |
* |
| 68 |
* Same job as custom_plugin_change_reload(), for requests that could not |
| 69 |
* be classified server-side because the environment strips Fetch Metadata |
| 70 |
* headers (see Utils::has_fetch_metadata()). The script checks the frame |
| 71 |
* it actually runs in, so a genuine top-level load is left alone. |
| 72 |
* |
| 73 |
* @param string $actual_link URL to send the parent window to. |
| 74 |
* @return void |
| 75 |
*/ |
| 76 |
public static function maybe_break_out_of_frame( $actual_link ) { |
| 77 |
$url = wp_json_encode( |
| 78 |
esc_url_raw( $actual_link ), |
| 79 |
JSON_HEX_TAG | JSON_HEX_AMP | JSON_HEX_APOS | JSON_HEX_QUOT |
| 80 |
); |
| 81 |
|
| 82 |
echo '<script>(function(){var f;try{f=window.frameElement;}catch(e){return;}' |
| 83 |
. 'if(!f||f.id!=="frame-adminify-app--iframe")return;' |
| 84 |
. 'parent.location.replace(' . $url . ');})();</script>'; |
| 85 |
} |
| 86 |
|
| 87 |
public function load_scripts() |
| 88 |
{ |
| 89 |
wp_enqueue_style('frame-adminify--frame', PXLBSADMINIFY_ASSETS . 'admin/css/frame' . Utils::assets_ext('.css'), [], PXLBSADMINIFY_VER); |
| 90 |
} |
| 91 |
|
| 92 |
public function page_attribute($attr) |
| 93 |
{ |
| 94 |
$attrs = [$attr]; |
| 95 |
$attrs[] = 'frame-adminify-iframe="true"'; |
| 96 |
return implode(' ', $attrs); |
| 97 |
} |
| 98 |
} |
| 99 |
|
| 100 |
} |
| 101 |
|