golden hour
/home/godaofbq/besthyperbaric.com/wp-content/plugins/oxygen/plugin/onboarding
⬆️ Go Up
Upload
File/Folder
Size
Actions
.htaccess
420 B
Del
OK
base.php
164 B
Del
OK
endpoints.php
4.62 KB
Del
OK
iframe.php
1.64 KB
Del
OK
loader.php
1 KB
Del
OK
manage-pages.php
4.45 KB
Del
OK
Edit: iframe.php
<?php /** * @psalm-ignore-file */ use function Breakdance\Admin\get_env; require_once __DIR__ . "/../loader/loader-utils.php"; $ajaxurl = admin_url('admin-ajax.php'); $envtype = get_env(); if ($envtype !== 'local') { $manifest = getProductionManifest(__DIR__ . '/../../builder/dist', plugin_dir_url(__BREAKDANCE_PLUGIN_FILE__) . 'builder/dist'); } $window_dot_breakdance_object_data = new stdClass(); $window_dot_breakdance_object_data->ajaxurl = $ajaxurl; $window_dot_breakdance_object_data->ajaxnonce = \Breakdance\AJAX\get_nonce_for_ajax_requests(); $window_dot_breakdance_object_data->subscriptionMode = \Breakdance\Subscription\getSubscriptionMode(); ?> <!DOCTYPE html> <html lang="en"> <head> <title>Breakdance Onboarding</title> <script> // This one does not implement BreakdanceWindowObject window.Breakdance = <?= json_encode($window_dot_breakdance_object_data); ?>; </script> <?php if ($envtype === 'local') { echo getDevelopmentHeadLinks('onboarding-app'); } else { echo getProductionHeadLinks($manifest, 'onboarding-app'); } ?> <link rel="preconnect" href="https://fonts.googleapis.com"> <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> <link href="https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap" rel="stylesheet"> </head> <body> <div id="onboarding-app"></div> <?php if ($envtype === 'local') { echo getDevelopmentFooterScripts('onboarding-app'); } else { echo getProductionFooterScripts($manifest, 'onboarding-app'); } ?> </body> </html>
Save