미디어 모달을 확장하려고하는데 관련 문서 / 자습서를 찾을 수 없습니다. 나도 백본의 주인이 아니야 ;-)
첨부 파일 게시물 유형에 첨부 된 각 분류 체계에 대해 선택 상자를 추가하고 싶습니다. 현재 하나의 선택 상자 만 표시됩니다.
이것이 제가 생각 해낸 것입니다. 기본 툴바를 대체한다는 점을 제외하고는 훌륭하게 작동합니다.
암호
/**
* Extended Filters dropdown with taxonomy term selection values
*/
jQuery.each(mediaTaxonomies,function(key,label){
media.view.AttachmentFilters[key] = media.view.AttachmentFilters.extend({
className: key,
createFilters: function() {
var filters = {};
_.each( mediaTerms[key] || {}, function( term ) {
var query = {};
query[key] = {
taxonomy: key,
term_id: parseInt( term.id, 10 ),
term_slug: term.slug
};
filters[ term.slug ] = {
text: term.label,
props: query
};
});
this.filters = filters;
}
});
/**
* Replace the media-toolbar with our own
*/
media.view.AttachmentsBrowser = media.view.AttachmentsBrowser.extend({
createToolbar: function() {
media.model.Query.defaultArgs.filterSource = 'filter-media-taxonomies';
this.toolbar = new media.view.Toolbar({
controller: this.controller
});
this.views.add( this.toolbar );
this.toolbar.set( 'terms', new media.view.AttachmentFilters[key]({
controller: this.controller,
model: this.collection.props,
priority: -80
}).render() );
}
});
});