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/admin/launcher/
File Upload :
Current File : /var/www/wordpress/wp-content/plugins/oxygen/plugin/admin/launcher/gutenberg.php

<?php

namespace Breakdance\Admin;

function gutenberg_launcher_scripts()
{
    if (!is_breakdance_available()) {
        return;
    }

    $url = BREAKDANCE_PLUGIN_URL . 'plugin/admin/launcher/js/gutenberg.js';
    /** @psalm-suppress UndefinedConstant */
    $version = (string) __BREAKDANCE_VERSION;

    wp_enqueue_script('breakdance-launcher-gutenberg', $url, ['breakdance-launcher-shared'], $version);
}
add_action('enqueue_block_editor_assets', 'Breakdance\Admin\gutenberg_launcher_scripts');

function add_launcher_as_block_template()
{
    global $pagenow;

    if (!is_breakdance_available()) {
        return;
    }

    if (!in_array($pagenow, array( 'post.php', 'post-new.php' ))) {
        return;
    }

    $screen = get_current_screen();

    if (!$screen) {
        return;
    }

    $post_type = get_post_type_object($screen->post_type);

    if (!$post_type) {
        return;
    }

    /**
     * @psalm-suppress UndefinedPropertyAssignment
     */
    $post_type->template = [
        ['breakdance/block-breakdance-launcher'],
    ];
}
add_action('current_screen', '\Breakdance\Admin\add_launcher_as_block_template');

OHA YOOO - Tarih: 2026-08-04 00:16:42