45 # Previous parameters:
46 # $file, $url, $width, $height, $path = false, $page = false
53 if ( is_array( $parameters ) ) {
54 $actualParams = $parameters + $defaults;
56 # Using old format, should convert. Later a warning could be added here.
57 $numArgs = func_num_args();
60 'height' => $parameters,
61 'page' => ( $numArgs > 5 ) ? func_get_arg( 5 ) :
false
63 $path = ( $numArgs > 4 ) ? func_get_arg( 4 ) :
false;
70 # These should be integers when they get here.
71 # If not, there's a bug somewhere. But let's at
72 # least produce valid HTML code regardless.
73 $this->
width = round( $actualParams[
'width'] );
74 $this->height = round( $actualParams[
'height'] );
76 $this->
page = $actualParams[
'page'];
77 $this->lang = $actualParams[
'lang'];
115 if ( count( func_get_args() ) == 2 ) {
116 throw new MWException( __METHOD__ .
' called in the old style' );
126 'decoding' =>
'async',
129 $elementTimingName =
'thumbnail';
132 && !self::$firstNonIconImageRendered
133 && $this->
width * $this->height > 100 * 100 ) {
134 self::$firstNonIconImageRendered =
true;
137 $elementTimingName =
'thumbnail-high';
141 $attribs[
'elementtiming'] = $elementTimingName;
144 if ( !empty(
$options[
'custom-url-link'] ) ) {
145 $linkAttribs = [
'href' =>
$options[
'custom-url-link'] ];
146 if ( !empty(
$options[
'title'] ) ) {
147 $linkAttribs[
'title'] =
$options[
'title'];
149 if ( !empty(
$options[
'custom-target-link'] ) ) {
150 $linkAttribs[
'target'] =
$options[
'custom-target-link'];
151 } elseif ( !empty(
$options[
'parser-extlink-target'] ) ) {
152 $linkAttribs[
'target'] =
$options[
'parser-extlink-target'];
154 if ( !empty(
$options[
'parser-extlink-rel'] ) ) {
155 $linkAttribs[
'rel'] =
$options[
'parser-extlink-rel'];
157 } elseif ( !empty(
$options[
'custom-title-link'] ) ) {
161 'href' =>
$title->getLinkURL(),
164 } elseif ( !empty(
$options[
'desc-link'] ) ) {
169 } elseif ( !empty(
$options[
'file-link'] ) ) {
170 $linkAttribs = [
'href' => $this->
file->getUrl() ];
172 $linkAttribs =
false;
173 if ( !empty(
$options[
'title'] ) ) {
178 if ( empty(
$options[
'no-dimensions'] ) ) {
182 if ( !empty(
$options[
'valign'] ) ) {
183 $attribs[
'style'] =
"vertical-align: {$options['valign']}";
185 if ( !empty(
$options[
'img-class'] ) ) {
188 if ( isset(
$options[
'override-height'] ) ) {
191 if ( isset(
$options[
'override-width'] ) ) {
202 Hooks::run(
'ThumbnailBeforeProduceHTML', [ $this, &
$attribs, &$linkAttribs ] );
bool $wgPriorityHints
Enable client-side Priority Hints.
bool $wgElementTiming
Enable Element Timing.
Media transform output for images.
__construct( $file, $url, $path=false, $parameters=[])
Get a thumbnail object from a file and parameters.
toHtml( $options=[])
Return HTML.
static $firstNonIconImageRendered
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped & $options
namespace and then decline to actually register it file or subcat img or subcat $title
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped noclasses just before the function returns a value If you return an< a > element with HTML attributes $attribs and contents $html will be returned If you return $ret will be returned and may include noclasses after processing & $attribs
Using a hook running we can avoid having all this option specific stuff in our mainline code Using the function We ve cleaned up the code here by removing clumps of infrequently used code and moving them off somewhere else It s much easier for someone working with this code to see what s _really_ going and make changes or fix bugs In we can take all the code that deals with the little used title reversing we can concentrate it all in an extension file
null for the local wiki Added should default to null in handler for backwards compatibility add a value to it if you want to add a cookie that have to vary cache options can modify $query
processing should stop and the error should be shown to the user * false
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php