X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;ds=sidebyside;f=includes%2Fmedia%2FXMPInfo.php;h=1d8d77719982d5f788867b7918d02d9b1df15867;hb=ee734d0d3c7533bd9a690dbd71f5151da55c32ad;hp=7e47ec14e352919ce124c47b92f37b0cde2b8fa5;hpb=914e7e2b5d34104bd9ae800f632c68ddc6eecef1;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/media/XMPInfo.php b/includes/media/XMPInfo.php index 7e47ec14e3..1d8d777199 100644 --- a/includes/media/XMPInfo.php +++ b/includes/media/XMPInfo.php @@ -31,18 +31,9 @@ class XMPInfo { * @return array XMP item configuration array. */ public static function getItems() { - if ( !self::$ranHooks ) { - // This is for if someone makes a custom metadata extension. - // For example, a medical wiki might want to decode DICOM xmp properties. - wfRunHooks( 'XMPGetInfo', array( &self::$items ) ); - self::$ranHooks = true; // Only want to do this once. - } - return self::$items; } - static private $ranHooks = false; - /** * XMPInfo::$items keeps a list of all the items * we are interested to extract, as well as @@ -57,7 +48,7 @@ class XMPInfo { * * mode - What type of item (self::MODE_SIMPLE usually, see above for * all values). * * validate - Method to validate input. Could also post-process the - * input. A string value is assumed to be a static method of + * input. A string value is assumed to be a method of * XMPValidate. Can also take a array( 'className', 'methodName' ). * * choices - Array of potential values (format of 'value' => true ). * Only used with validateClosed.