Media: Date filtering does not need to be on for all contexts.
Affected areas include customizer upload controls and video playlist editing. props ocean90. fixes #32004. git-svn-id: https://develop.svn.wordpress.org/trunk@32228 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
e1c4ed6e32
commit
f846003ea7
@ -124,6 +124,7 @@ module.exports = CollectionAdd;
|
|||||||
* @param {string} attributes.menu Initial mode for the menu region. @todo this needs a better explanation.
|
* @param {string} attributes.menu Initial mode for the menu region. @todo this needs a better explanation.
|
||||||
* @param {boolean} [attributes.searchable=false] Whether the library is searchable.
|
* @param {boolean} [attributes.searchable=false] Whether the library is searchable.
|
||||||
* @param {boolean} [attributes.sortable=true] Whether the Attachments should be sortable. Depends on the orderby property being set to menuOrder on the attachments collection.
|
* @param {boolean} [attributes.sortable=true] Whether the Attachments should be sortable. Depends on the orderby property being set to menuOrder on the attachments collection.
|
||||||
|
* @param {boolean} [attributes.date=true] Whether to show the date filter in the browser's toolbar.
|
||||||
* @param {boolean} [attributes.describe=true] Whether to offer UI to describe the attachments - e.g. captioning images in a gallery.
|
* @param {boolean} [attributes.describe=true] Whether to offer UI to describe the attachments - e.g. captioning images in a gallery.
|
||||||
* @param {boolean} [attributes.dragInfo=true] Whether to show instructional text about the attachments being sortable.
|
* @param {boolean} [attributes.dragInfo=true] Whether to show instructional text about the attachments being sortable.
|
||||||
* @param {boolean} [attributes.dragInfoText] Instructional text about the attachments being sortable.
|
* @param {boolean} [attributes.dragInfoText] Instructional text about the attachments being sortable.
|
||||||
@ -147,6 +148,7 @@ CollectionEdit = Library.extend({
|
|||||||
defaults: {
|
defaults: {
|
||||||
multiple: false,
|
multiple: false,
|
||||||
sortable: true,
|
sortable: true,
|
||||||
|
date: false,
|
||||||
searchable: false,
|
searchable: false,
|
||||||
content: 'browse',
|
content: 'browse',
|
||||||
describe: true,
|
describe: true,
|
||||||
@ -835,6 +837,7 @@ module.exports = GalleryAdd;
|
|||||||
* @param {boolean} [attributes.multiple=false] Whether multi-select is enabled.
|
* @param {boolean} [attributes.multiple=false] Whether multi-select is enabled.
|
||||||
* @param {boolean} [attributes.searchable=false] Whether the library is searchable.
|
* @param {boolean} [attributes.searchable=false] Whether the library is searchable.
|
||||||
* @param {boolean} [attributes.sortable=true] Whether the Attachments should be sortable. Depends on the orderby property being set to menuOrder on the attachments collection.
|
* @param {boolean} [attributes.sortable=true] Whether the Attachments should be sortable. Depends on the orderby property being set to menuOrder on the attachments collection.
|
||||||
|
* @param {boolean} [attributes.date=true] Whether to show the date filter in the browser's toolbar.
|
||||||
* @param {string|false} [attributes.content=browse] Initial mode for the content region.
|
* @param {string|false} [attributes.content=browse] Initial mode for the content region.
|
||||||
* @param {string|false} [attributes.toolbar=image-details] Initial mode for the toolbar region.
|
* @param {string|false} [attributes.toolbar=image-details] Initial mode for the toolbar region.
|
||||||
* @param {boolean} [attributes.describe=true] Whether to offer UI to describe attachments - e.g. captioning images in a gallery.
|
* @param {boolean} [attributes.describe=true] Whether to offer UI to describe attachments - e.g. captioning images in a gallery.
|
||||||
@ -859,6 +862,7 @@ GalleryEdit = Library.extend({
|
|||||||
multiple: false,
|
multiple: false,
|
||||||
searchable: false,
|
searchable: false,
|
||||||
sortable: true,
|
sortable: true,
|
||||||
|
date: false,
|
||||||
display: false,
|
display: false,
|
||||||
content: 'browse',
|
content: 'browse',
|
||||||
toolbar: 'gallery-edit',
|
toolbar: 'gallery-edit',
|
||||||
@ -3680,16 +3684,16 @@ module.exports = Attachments;
|
|||||||
* @augments wp.Backbone.View
|
* @augments wp.Backbone.View
|
||||||
* @augments Backbone.View
|
* @augments Backbone.View
|
||||||
*
|
*
|
||||||
* @param {object} options
|
* @param {object} [options] The options hash passed to the view.
|
||||||
* @param {object} [options.filters=false] Which filters to show in the browser's toolbar.
|
* @param {boolean|string} [options.filters=false] Which filters to show in the browser's toolbar.
|
||||||
* Accepts 'uploaded' and 'all'.
|
* Accepts 'uploaded' and 'all'.
|
||||||
* @param {object} [options.search=true] Whether to show the search interface in the
|
* @param {boolean} [options.search=true] Whether to show the search interface in the
|
||||||
* browser's toolbar.
|
* browser's toolbar.
|
||||||
* @param {object} [options.date=true] Whether to show the date filter in the
|
* @param {boolean} [options.date=true] Whether to show the date filter in the
|
||||||
* browser's toolbar.
|
* browser's toolbar.
|
||||||
* @param {object} [options.display=false] Whether to show the attachments display settings
|
* @param {boolean} [options.display=false] Whether to show the attachments display settings
|
||||||
* view in the sidebar.
|
* view in the sidebar.
|
||||||
* @param {bool|string} [options.sidebar=true] Whether to create a sidebar for the browser.
|
* @param {boolean|string} [options.sidebar=true] Whether to create a sidebar for the browser.
|
||||||
* Accepts true, false, and 'errors'.
|
* Accepts true, false, and 'errors'.
|
||||||
*/
|
*/
|
||||||
var View = wp.media.View,
|
var View = wp.media.View,
|
||||||
@ -5956,6 +5960,7 @@ Select = MediaFrame.extend({
|
|||||||
sortable: state.get('sortable'),
|
sortable: state.get('sortable'),
|
||||||
search: state.get('searchable'),
|
search: state.get('searchable'),
|
||||||
filters: state.get('filterable'),
|
filters: state.get('filterable'),
|
||||||
|
date: state.get('date'),
|
||||||
display: state.has('display') ? state.get('display') : state.get('displaySettings'),
|
display: state.has('display') ? state.get('display') : state.get('displaySettings'),
|
||||||
dragInfo: state.get('dragInfo'),
|
dragInfo: state.get('dragInfo'),
|
||||||
|
|
||||||
|
@ -20,6 +20,7 @@
|
|||||||
* @param {string} attributes.menu Initial mode for the menu region. @todo this needs a better explanation.
|
* @param {string} attributes.menu Initial mode for the menu region. @todo this needs a better explanation.
|
||||||
* @param {boolean} [attributes.searchable=false] Whether the library is searchable.
|
* @param {boolean} [attributes.searchable=false] Whether the library is searchable.
|
||||||
* @param {boolean} [attributes.sortable=true] Whether the Attachments should be sortable. Depends on the orderby property being set to menuOrder on the attachments collection.
|
* @param {boolean} [attributes.sortable=true] Whether the Attachments should be sortable. Depends on the orderby property being set to menuOrder on the attachments collection.
|
||||||
|
* @param {boolean} [attributes.date=true] Whether to show the date filter in the browser's toolbar.
|
||||||
* @param {boolean} [attributes.describe=true] Whether to offer UI to describe the attachments - e.g. captioning images in a gallery.
|
* @param {boolean} [attributes.describe=true] Whether to offer UI to describe the attachments - e.g. captioning images in a gallery.
|
||||||
* @param {boolean} [attributes.dragInfo=true] Whether to show instructional text about the attachments being sortable.
|
* @param {boolean} [attributes.dragInfo=true] Whether to show instructional text about the attachments being sortable.
|
||||||
* @param {boolean} [attributes.dragInfoText] Instructional text about the attachments being sortable.
|
* @param {boolean} [attributes.dragInfoText] Instructional text about the attachments being sortable.
|
||||||
@ -43,6 +44,7 @@ CollectionEdit = Library.extend({
|
|||||||
defaults: {
|
defaults: {
|
||||||
multiple: false,
|
multiple: false,
|
||||||
sortable: true,
|
sortable: true,
|
||||||
|
date: false,
|
||||||
searchable: false,
|
searchable: false,
|
||||||
content: 'browse',
|
content: 'browse',
|
||||||
describe: true,
|
describe: true,
|
||||||
|
@ -18,6 +18,7 @@
|
|||||||
* @param {boolean} [attributes.multiple=false] Whether multi-select is enabled.
|
* @param {boolean} [attributes.multiple=false] Whether multi-select is enabled.
|
||||||
* @param {boolean} [attributes.searchable=false] Whether the library is searchable.
|
* @param {boolean} [attributes.searchable=false] Whether the library is searchable.
|
||||||
* @param {boolean} [attributes.sortable=true] Whether the Attachments should be sortable. Depends on the orderby property being set to menuOrder on the attachments collection.
|
* @param {boolean} [attributes.sortable=true] Whether the Attachments should be sortable. Depends on the orderby property being set to menuOrder on the attachments collection.
|
||||||
|
* @param {boolean} [attributes.date=true] Whether to show the date filter in the browser's toolbar.
|
||||||
* @param {string|false} [attributes.content=browse] Initial mode for the content region.
|
* @param {string|false} [attributes.content=browse] Initial mode for the content region.
|
||||||
* @param {string|false} [attributes.toolbar=image-details] Initial mode for the toolbar region.
|
* @param {string|false} [attributes.toolbar=image-details] Initial mode for the toolbar region.
|
||||||
* @param {boolean} [attributes.describe=true] Whether to offer UI to describe attachments - e.g. captioning images in a gallery.
|
* @param {boolean} [attributes.describe=true] Whether to offer UI to describe attachments - e.g. captioning images in a gallery.
|
||||||
@ -42,6 +43,7 @@ GalleryEdit = Library.extend({
|
|||||||
multiple: false,
|
multiple: false,
|
||||||
searchable: false,
|
searchable: false,
|
||||||
sortable: true,
|
sortable: true,
|
||||||
|
date: false,
|
||||||
display: false,
|
display: false,
|
||||||
content: 'browse',
|
content: 'browse',
|
||||||
toolbar: 'gallery-edit',
|
toolbar: 'gallery-edit',
|
||||||
|
@ -8,16 +8,16 @@
|
|||||||
* @augments wp.Backbone.View
|
* @augments wp.Backbone.View
|
||||||
* @augments Backbone.View
|
* @augments Backbone.View
|
||||||
*
|
*
|
||||||
* @param {object} options
|
* @param {object} [options] The options hash passed to the view.
|
||||||
* @param {object} [options.filters=false] Which filters to show in the browser's toolbar.
|
* @param {boolean|string} [options.filters=false] Which filters to show in the browser's toolbar.
|
||||||
* Accepts 'uploaded' and 'all'.
|
* Accepts 'uploaded' and 'all'.
|
||||||
* @param {object} [options.search=true] Whether to show the search interface in the
|
* @param {boolean} [options.search=true] Whether to show the search interface in the
|
||||||
* browser's toolbar.
|
* browser's toolbar.
|
||||||
* @param {object} [options.date=true] Whether to show the date filter in the
|
* @param {boolean} [options.date=true] Whether to show the date filter in the
|
||||||
* browser's toolbar.
|
* browser's toolbar.
|
||||||
* @param {object} [options.display=false] Whether to show the attachments display settings
|
* @param {boolean} [options.display=false] Whether to show the attachments display settings
|
||||||
* view in the sidebar.
|
* view in the sidebar.
|
||||||
* @param {bool|string} [options.sidebar=true] Whether to create a sidebar for the browser.
|
* @param {boolean|string} [options.sidebar=true] Whether to create a sidebar for the browser.
|
||||||
* Accepts true, false, and 'errors'.
|
* Accepts true, false, and 'errors'.
|
||||||
*/
|
*/
|
||||||
var View = wp.media.View,
|
var View = wp.media.View,
|
||||||
|
@ -131,6 +131,7 @@ Select = MediaFrame.extend({
|
|||||||
sortable: state.get('sortable'),
|
sortable: state.get('sortable'),
|
||||||
search: state.get('searchable'),
|
search: state.get('searchable'),
|
||||||
filters: state.get('filterable'),
|
filters: state.get('filterable'),
|
||||||
|
date: state.get('date'),
|
||||||
display: state.has('display') ? state.get('display') : state.get('displaySettings'),
|
display: state.has('display') ? state.get('display') : state.get('displaySettings'),
|
||||||
dragInfo: state.get('dragInfo'),
|
dragInfo: state.get('dragInfo'),
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user