GIF94;
| Path : /var/www/wordpress/wp-content/plugins/oxygen/plugin/onboarding/ |
| Current File : /var/www/wordpress/wp-content/plugins/oxygen/plugin/onboarding/iframe.php |
<?php
/**
* @psalm-ignore-file
*/
use function Breakdance\Admin\get_env;
use function Breakdance\I18n\getLanguageAttribute;
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 <?php echo getLanguageAttribute(); ?>>
<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>