diff options
author | Timo Tijhof <krinklemail@gmail.com> | 2020-02-04 21:44:38 +0000 |
---|---|---|
committer | Timo Tijhof <krinklemail@gmail.com> | 2020-02-04 21:44:38 +0000 |
commit | bc1f601382874dc0c36a17162025ac0f297cddb3 (patch) | |
tree | db2a59ae3ef2b6408c0c7e21b3f5a042d7908040 /thumb.php | |
parent | 054dd94e97d679385c0a9c17297d089b5e1ff192 (diff) | |
download | mediawikicore-bc1f601382874dc0c36a17162025ac0f297cddb3.tar.gz mediawikicore-bc1f601382874dc0c36a17162025ac0f297cddb3.zip |
docs: Improve "Entry points" documentation page
Turn this into a doc group, and let the descriptions come
directly from the files in question. This makes the list easier
to maintain, and alsom means that the overview page becomes
discoverable whenever one is looking at the entry point file
as well. Previously the doc page pointed to the entry points,
but not the other way around. This is also fixed.
Bug: T244294
Change-Id: I891c5a37e17592edc1136d7367949927121c8bc8
Diffstat (limited to 'thumb.php')
-rw-r--r-- | thumb.php | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/thumb.php b/thumb.php index da2084529c7c..7b28f87c2d33 100644 --- a/thumb.php +++ b/thumb.php @@ -1,6 +1,9 @@ <?php /** - * PHP script to stream out an image thumbnail. + * The web entry point for retreiving media thumbnails. + * + * This script may also resize an image on-demand, if it isn't found in the + * configured FileBackend storage. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -19,6 +22,7 @@ * * @file * @ingroup Media + * @ingroup entrypoint */ use MediaWiki\Logger\LoggerFactory; |