X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=includes%2Fgallery%2FImageGalleryBase.php;h=39da5972622e9c0a2fc68e8dcabc7c4dd4a5b272;hb=2b8254b2b5f5d1a698f298204410f22a393ab9fb;hp=befab157cda19f8c35c77bdd2a54f34418ff0044;hpb=2e040b99eda6c99cf472b3896f62d2f21315e808;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/gallery/ImageGalleryBase.php b/includes/gallery/ImageGalleryBase.php index befab157cd..39da597262 100644 --- a/includes/gallery/ImageGalleryBase.php +++ b/includes/gallery/ImageGalleryBase.php @@ -28,23 +28,39 @@ * @ingroup Media */ abstract class ImageGalleryBase extends ContextSource { - /** @var array Gallery images */ + /** + * @var array Gallery images + * @deprecated in 1.23 (was declared "var") and will be removed in 1.24 + */ public $mImages; - /** @var bool Whether to show the filesize in bytes in categories */ + /** + * @var bool Whether to show the filesize in bytes in categories + * @deprecated in 1.23 (was declared "var") and will be removed in 1.24 + */ public $mShowBytes; - /** @var bool Whether to show the filename. Default: true */ + /** + * @var bool Whether to show the filename. Default: true + * @deprecated in 1.23 (was declared "var") and will be removed in 1.24 + */ public $mShowFilename; - /** @var string Gallery mode. Default: traditional */ + /** + * @var string Gallery mode. Default: traditional + * @deprecated in 1.23 (was declared "var") and will be removed in 1.24 + */ public $mMode; - /** @var bool|string Gallery caption. Default: false */ + /** + * @var bool|string Gallery caption. Default: false + * @deprecated in 1.23 (was declared "var") and will be removed in 1.24 + */ public $mCaption = false; /** * @var bool Hide blacklisted images? + * @deprecated in 1.23 (was declared "var") and will be removed in 1.24 */ public $mHideBadImages;