Файловый менеджер - Редактировать - /var/www/html/mediawiki-1.43.1/resources/src/mediawiki.widgets/MediaSearch/mw.widgets.MediaResourceQueue.js
Ðазад
/*! * MediaWiki Widgets - MediaResourceQueue class. * * @copyright 2011-2016 VisualEditor Team and others; see AUTHORS.txt * @license The MIT License (MIT); see LICENSE.txt */ ( function () { /** * @classdesc Media resource queue. * * @class * @extends mw.widgets.APIResultsQueue * * @constructor * @description Create an instance of `mw.widgets.MediaResourceQueue`. * @param {Object} [config] Configuration options * @param {number} config.maxHeight The maximum height of the media, used in the * search call to the API. */ mw.widgets.MediaResourceQueue = function MwWidgetsMediaResourceQueue( config ) { config = config || {}; // Parent constructor mw.widgets.MediaResourceQueue.super.call( this, config ); this.maxHeight = config.maxHeight || 200; }; /* Inheritance */ OO.inheritClass( mw.widgets.MediaResourceQueue, mw.widgets.APIResultsQueue ); /** * Fetch the file repos. * * @return {jQuery.Promise} Promise that resolves when the resources are set up */ mw.widgets.MediaResourceQueue.prototype.getFileRepos = function () { const defaultSource = [ { url: mw.util.wikiScript( 'api' ), local: '' } ]; if ( !this.fileRepoPromise ) { this.fileRepoPromise = new mw.Api().get( { action: 'query', meta: 'filerepoinfo' } ).then( ( resp ) => resp.query && resp.query.repos || defaultSource, () => $.Deferred().resolve( defaultSource ) ); } return this.fileRepoPromise; }; /** * Get image maximum height. * * @return {string} Image max height */ mw.widgets.MediaResourceQueue.prototype.getMaxHeight = function () { return this.maxHeight; }; }() );
| ver. 1.1 | |
.
| PHP 8.4.18 | Ð“ÐµÐ½ÐµÑ€Ð°Ñ†Ð¸Ñ Ñтраницы: 0 |
proxy
|
phpinfo
|
ÐаÑтройка