展开:我想利用相同的Modal代码/外观(如wp.media.Modal,wp.media.FocusManager中使用的那样)打开我自己的自定义对话框的模式,而不是Media Editor。过去,我曾使用thickbox进行此类操作,但wp.media.Modal似乎是模态技术的未来之路-更不用说它看起来很酷了。

我我对JS源代码进行了一些介绍,并提出了一些可能的解决方案:


“借用”代码media-views.js并在我的插件中使用它。
“扩展” wp.media.Modal(毕竟是Backbone View)。
创建自定义实现,jQueryUI等。
只需放弃并使用thickbox。

与使用wp.media.Model.extend({})相比,借阅似乎没有那么危险。 ,但很浪费。我不是jQueryUI模态的忠实拥护者,但是它将完成这项工作。同时,我可以对模式进行自定义实现(或基于另一个lib)。

感觉像我遗漏了一些明显的东西:是否还有其他人提出来?或者新的媒体库模式代码“太新”以至于无法重用?

评论

看起来您只是想尝试一下而已。我建议您选择#2:可能是最干净,最具挑战性/最有趣的事情,而且听起来您已经知道如何使用Backbone。

请分享您的发现!

有趣的插件/教程,位于github.com/ericandrewlewis/wp-media-javascript-guide-用于支持WP Media的Javascript交互式文档。

#1 楼

后期答案和编辑。免责声明:以下内容不是复制和粘贴的代码。

草绘

由于我从未尝试过将媒体模式用于其他任何用途,因此这里有一个简短的概述,由从我目前正在进行的项目中分解出一部分。这不是一个随时可以使用的示例,但它应该使您足够接近。只需仔细阅读注释并在您的对象中实现以下PHP。

PHP

在我们的构造函数中,我们注册脚本,添加包含信息的meta框和一个媒体按钮,过滤其他MIME类型(例如ZIP),并注意保存其他数据:

public function __construct()
{
    add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_scripts' ) );

    foreach( $this->post_types as $post_type )
        add_action( "add_meta_boxes_{$post_type}", array( $this, 'add_meta_box' ) );

    add_filter( 'media_view_settings', array( $this, 'filter_media_view_settings' ), 10, 2 );

    add_action( 'wp_insert_post_data', array( $this, 'wp_insert_post_data' ), 10, 2 );
}


请确保如果不需要特定页面。这样可以节省内存,节省时间并有助于保持安装清洁。

public function enqueue_scripts( $page )
{
    if (
        ! in_array( $page, array( 'post.php', 'post-new.php' ) )
        # Assuming that there's a class property array that holds post types we want to add to
        # OR ! in_array( get_current_screen()->post_type, array_keys( $this->post_types ) )
    )
        return;

    wp_enqueue_media();
    wp_enqueue_script(
        'wpse_media_modal',
        plugins_url( 'assets/js/media-modal.js', dirname( __FILE__ ) ),
        array(
            # 'jquery',
            'media-views'
        ),
        null,
        true
    );
    wp_localize_script(
        'wpse_media_modal',
        'wpse_obj',
        $this->get_media_props()
    );
}


然后我们添加了meta框。在函数内部,我们可以依赖$post对象post_type属性,该属性也将针对新帖子设置。由于我们已经在构造函数中将回调注册到了适当的上下文挂钩,因此我们可以轻松地采用任何附带的帖子类型。

public function add_meta_box( $post )
{
    add_meta_box(
        'wprd_upload',
        __( 'Upload', 'our_textdomain' ),
        array( $this, 'render_content' ),
        $post->post_type,
        'advanced',
        'default',
        array()
    );
}


其他MIME类型

简单地抛出一个数组,该数组会覆盖或添加到Media Modal的默认MIME类型。您也可以添加或覆盖其他设置。只需var_dump( $settings );即可查看回调提供了什么。另外请确保我们不要截取错误的帖子类型。

public function filter_media_view_settings( $settings, $post )
{
    if ( ! in_array( $post->post_type, array_keys( $this->post_types ) ) )
        return $settings;

    $settings['mimeTypes'] += array( 'application/zip' );

    return $settings;
}


呈现内容

public function render_content()
{
    $props = array(
        'modalTitle'      => __( 'Select ZIP Archives', 'our_textdomain' ),

        // The following data is what we will access later
        // SomeIDfromLocalizedScriptOBJ
        'buttonID'        => 'open-media-lib',
        'buttonClass'     => 'open-media-button',
        'buttonText'      => __( 'Add ZIP', 'our_textdomain' ),
        'buttonDataText'  => __( 'Select', 'our_textdomain' ),
        'buttonDataTitle' => __( 'Select Whatever', 'our_textdomain' ),

        'mimeTypes'       => array(
            $zip => __( 'ZIP Archive', 'our_textdomain' ),
        ),
    );

    wp_nonce_field( plugin_basename( __FILE__ ), $this->nonce_name );
    ?>
    <input type="button"
           class="button <?php echo $props['buttonClass']; ?>"
           id="<?php echo $props['buttonID']; ?>"
           value="<?php echo $props['buttonText']; ?>"
           data-title="<?php echo $props['buttonDataTitle']; ?>"
           data-button-text="<?php echo $props['buttonDataText']; ?>" />
}


>保存数据

最后,我们确保我们的数据已正确保存并会被检查。使用所有esc_*()函数,类型转换,随机数等。

public function wp_insert_post_data( $data, $post_array )
{
    if (
        ! in_array( $post_array['post_type'], array_keys( $this->post_types ) )
        # OR ( defined( 'DOING_AUTOSAVE' ) AND DOING_AUTOSAVE )
        OR ! isset( $_POST[ $this->nonce_name ] )
        OR ! wp_verify_nonce( $_POST[ $this->nonce_name ], plugin_basename( __FILE__ ) )
    )
        return $data;

    $post_array['zip'] = array_map( 'array_filter', $post_array['zip'] );

    $id = $post_array['ID'];
    update_post_meta(
        $id,
        'zip',
        $post_array['zip'],
        get_post_meta( $id, 'zip' )
    );

    return $data;
}


最后的注释,在转到JS示例之前:代码已从当前项目中分解出来。 。因此,正如已经提到的那样,默认情况下将不起作用!只是指南而已。

Javascript

JavaScript本身非常简单。不。但是正如您所看到的,我正在将jQuery作为自定义本地化脚本对象注入到函数中。从那里开始,您将必须添加所需的任何逻辑。提供了用于不同状态和回调的基本环境,并且存在console.log()

var ds = ds || {};

( function( $, obj ) {
    var media;

    ds.media = media = {};

    _.extend( media, {
        view: {},
        controller: {}
    } );

    media.buttonID    = '#' + obj.buttonID,

    _.extend( media, {
        frame: function() {
            if ( this._frame )
                return this._frame;

            var states = [
                new wp.media.controller.Library(),
                new wp.media.controller.Library( {
                    id:                 'image',
                    title:              'Images',
                    priority:           20,
                    searchable:         false,
                    library:            wp.media.query( { type: 'image' } ),
                    multiple:           true
                } ),
                /*new wp.media.controller.Library( {
                    id:                 'video',
                    title:              'Video',
                    priority:           40,
                    library:            wp.media.query( { type: 'video' } ),
                    multiple:           false,
                    contentUserSetting: false // Show the Upload Files tab.
                } ),*/
                new wp.media.controller.Library( {
                    id:                 obj.SomeIDfromLocalizedScriptOBJ,
                    title:              obj.SomeTitlefromLocalizedScriptOBJ,
                    priority:           30,
                    searchable:         true,
                    // filterable:         'uploaded',
                    library:            wp.media.query( { type: obj.SomeMIMETypesfromLocalizedScriptOBJ } ),
                    multiple:           true
                    // contentUserSetting: true
                } ),
            ];

            this._frame = wp.media( {
                // className: 'media-frame no-sidebar',
                states: states
                // frame: 'post'
            } );

            this._frame.on( 'open', this.open );

            this._frame.on( 'ready', this.ready );

            this._frame.on( 'close', this.close );

            this._frame.on( 'menu:render:default', this.menuRender );

            this._frame.state( 'library' ).on( 'select', this.select );
            this._frame.state( 'image' ).on( 'select', this.select );
            this._frame.state( obj.ZIPTabID ).on( 'select', this.select );

            return this._frame;
        },

        open: function() {
            console.log( 'Frame opened' );
        },

        ready: function() {
            console.log( 'Frame ready' );
        },

        close: function() {
            console.log( 'Frame closed' );
        },

        menuRender: function( view ) {
            /* view.unset( 'library-separator' );
            view.unset( 'embed' );
            view.unset( 'gallery' ); */
        },

        select: function() {
            var settings = wp.media.view.settings,
                selection = this.get( 'selection' );

            selection.map( media.showAttachmentDetails );
        },

        showAttachmentDetails: function( attachment ) {
            // This function normally is used to display attachments
            // Handle removal of rows
            media.removeAttachmentRow( /* some var */ );
        },

        removeAttachmentRow: function( row ) {
            // Remove stuff callback
        },

        init: function() {
            // Open media frame
            $( media.buttonID ).on( 'click.media_frame_open', function( e ) {
                e.preventDefault();

                media.frame().open();
            } );
        }
    } );

    $( media.init );
} )( jQuery, wpse_obj );


教程

Dominik Schilling-WP的作者3.5媒体管理器-编写了一组有关媒体模式的演示。您可以在GitHub上查看它们。