MediaWiki  1.33.0
ThumbnailImage.php
Go to the documentation of this file.
1 <?php
30  private static $firstNonIconImageRendered = false;
31 
44  function __construct( $file, $url, $path = false, $parameters = [] ) {
45  # Previous parameters:
46  # $file, $url, $width, $height, $path = false, $page = false
47 
48  $defaults = [
49  'page' => false,
50  'lang' => false
51  ];
52 
53  if ( is_array( $parameters ) ) {
54  $actualParams = $parameters + $defaults;
55  } else {
56  # Using old format, should convert. Later a warning could be added here.
57  $numArgs = func_num_args();
58  $actualParams = [
59  'width' => $path,
60  'height' => $parameters,
61  'page' => ( $numArgs > 5 ) ? func_get_arg( 5 ) : false
62  ] + $defaults;
63  $path = ( $numArgs > 4 ) ? func_get_arg( 4 ) : false;
64  }
65 
66  $this->file = $file;
67  $this->url = $url;
68  $this->path = $path;
69 
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'] );
75 
76  $this->page = $actualParams['page'];
77  $this->lang = $actualParams['lang'];
78  }
79 
112  function toHtml( $options = [] ) {
114 
115  if ( count( func_get_args() ) == 2 ) {
116  throw new MWException( __METHOD__ . ' called in the old style' );
117  }
118 
119  $alt = $options['alt'] ?? '';
120 
121  $query = $options['desc-query'] ?? '';
122 
123  $attribs = [
124  'alt' => $alt,
125  'src' => $this->url,
126  'decoding' => 'async',
127  ];
128 
129  $elementTimingName = 'thumbnail';
130 
131  if ( $wgPriorityHints
132  && !self::$firstNonIconImageRendered
133  && $this->width * $this->height > 100 * 100 ) {
134  self::$firstNonIconImageRendered = true;
135 
136  $attribs['importance'] = 'high';
137  $elementTimingName = 'thumbnail-high';
138  }
139 
140  if ( $wgElementTiming ) {
141  $attribs['elementtiming'] = $elementTimingName;
142  }
143 
144  if ( !empty( $options['custom-url-link'] ) ) {
145  $linkAttribs = [ 'href' => $options['custom-url-link'] ];
146  if ( !empty( $options['title'] ) ) {
147  $linkAttribs['title'] = $options['title'];
148  }
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'];
153  }
154  if ( !empty( $options['parser-extlink-rel'] ) ) {
155  $linkAttribs['rel'] = $options['parser-extlink-rel'];
156  }
157  } elseif ( !empty( $options['custom-title-link'] ) ) {
159  $title = $options['custom-title-link'];
160  $linkAttribs = [
161  'href' => $title->getLinkURL(),
162  'title' => empty( $options['title'] ) ? $title->getFullText() : $options['title']
163  ];
164  } elseif ( !empty( $options['desc-link'] ) ) {
165  $linkAttribs = $this->getDescLinkAttribs(
166  empty( $options['title'] ) ? null : $options['title'],
167  $query
168  );
169  } elseif ( !empty( $options['file-link'] ) ) {
170  $linkAttribs = [ 'href' => $this->file->getUrl() ];
171  } else {
172  $linkAttribs = false;
173  if ( !empty( $options['title'] ) ) {
174  $attribs['title'] = $options['title'];
175  }
176  }
177 
178  if ( empty( $options['no-dimensions'] ) ) {
179  $attribs['width'] = $this->width;
180  $attribs['height'] = $this->height;
181  }
182  if ( !empty( $options['valign'] ) ) {
183  $attribs['style'] = "vertical-align: {$options['valign']}";
184  }
185  if ( !empty( $options['img-class'] ) ) {
186  $attribs['class'] = $options['img-class'];
187  }
188  if ( isset( $options['override-height'] ) ) {
189  $attribs['height'] = $options['override-height'];
190  }
191  if ( isset( $options['override-width'] ) ) {
192  $attribs['width'] = $options['override-width'];
193  }
194 
195  // Additional densities for responsive images, if specified.
196  // If any of these urls is the same as src url, it'll be excluded.
197  $responsiveUrls = array_diff( $this->responsiveUrls, [ $this->url ] );
198  if ( !empty( $responsiveUrls ) ) {
199  $attribs['srcset'] = Html::srcSet( $responsiveUrls );
200  }
201 
202  Hooks::run( 'ThumbnailBeforeProduceHTML', [ $this, &$attribs, &$linkAttribs ] );
203 
204  return $this->linkWrap( $linkAttribs, Xml::element( 'img', $attribs ) );
205  }
206 }
$wgElementTiming
bool $wgElementTiming
Enable Element Timing.
Definition: DefaultSettings.php:9017
ThumbnailImage
Media transform output for images.
Definition: ThumbnailImage.php:29
file
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
Definition: hooks.txt:91
MediaTransformOutput\$responsiveUrls
array $responsiveUrls
Associative array mapping optional supplementary image files from pixel density (eg 1....
Definition: MediaTransformOutput.php:33
false
processing should stop and the error should be shown to the user * false
Definition: hooks.txt:187
captcha-old.count
count
Definition: captcha-old.py:249
MediaTransformOutput\$file
File $file
Definition: MediaTransformOutput.php:36
page
target page
Definition: All_system_messages.txt:1267
ThumbnailImage\__construct
__construct( $file, $url, $path=false, $parameters=[])
Get a thumbnail object from a file and parameters.
Definition: ThumbnailImage.php:44
php
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
Definition: injection.txt:35
MediaTransformOutput\$url
string $url
URL path to the thumb.
Definition: MediaTransformOutput.php:45
MediaTransformOutput\linkWrap
linkWrap( $linkAttribs, $contents)
Wrap some XHTML text in an anchor tag with the given attributes.
Definition: MediaTransformOutput.php:230
$query
null for the 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
Definition: hooks.txt:1588
ThumbnailImage\toHtml
toHtml( $options=[])
Return HTML.
Definition: ThumbnailImage.php:112
MWException
MediaWiki exception.
Definition: MWException.php:26
$title
namespace and then decline to actually register it file or subcat img or subcat $title
Definition: hooks.txt:925
$attribs
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
Definition: hooks.txt:1985
Xml\element
static element( $element, $attribs=null, $contents='', $allowShortTag=true)
Format an XML element with given attributes and, optionally, text content.
Definition: Xml.php:41
$wgPriorityHints
bool $wgPriorityHints
Enable client-side Priority Hints.
Definition: DefaultSettings.php:9007
MediaTransformOutput\getDescLinkAttribs
getDescLinkAttribs( $title=null, $params=[])
Definition: MediaTransformOutput.php:243
MediaTransformOutput\$height
int $height
Image height.
Definition: MediaTransformOutput.php:42
MediaTransformOutput
Base class for the output of MediaHandler::doTransform() and File::transform().
Definition: MediaTransformOutput.php:29
MediaTransformOutput\$path
bool string $path
Filesystem path to the thumb.
Definition: MediaTransformOutput.php:51
$options
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
Definition: hooks.txt:1985
width
width
Definition: parserTests.txt:189
ThumbnailImage\$firstNonIconImageRendered
static $firstNonIconImageRendered
Definition: ThumbnailImage.php:30
MediaTransformOutput\$width
int $width
Image width.
Definition: MediaTransformOutput.php:39
Hooks\run
static run( $event, array $args=[], $deprecatedVersion=null)
Call hook functions defined in Hooks::register and $wgHooks.
Definition: Hooks.php:200