X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=includes%2Fspecials%2FSpecialMIMEsearch.php;h=defca7de3d0d1da5f67169f3b54ba92936c511af;hb=9ee6461287f5d2d6fae719ec62ae6465e0a3809d;hp=32344a84a8c0d9f6caa79a3f962583595c888179;hpb=12e8170dd287b129463b673f9f8b41cb5b6ecf57;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/specials/SpecialMIMEsearch.php b/includes/specials/SpecialMIMEsearch.php index 32344a84a8..defca7de3d 100644 --- a/includes/specials/SpecialMIMEsearch.php +++ b/includes/specials/SpecialMIMEsearch.php @@ -47,18 +47,18 @@ class MIMEsearchPage extends QueryPage { } function linkParameters() { - return array( 'mime' => "{$this->major}/{$this->minor}" ); + return [ 'mime' => "{$this->major}/{$this->minor}" ]; } public function getQueryInfo() { - $minorType = array(); + $minorType = []; if ( $this->minor !== '*' ) { // Allow wildcard searching $minorType['img_minor_mime'] = $this->minor; } - $qi = array( - 'tables' => array( 'image' ), - 'fields' => array( + $qi = [ + 'tables' => [ 'image' ], + 'fields' => [ 'namespace' => NS_FILE, 'title' => 'img_name', // Still have a value field just in case, @@ -69,12 +69,12 @@ class MIMEsearchPage extends QueryPage { 'img_height', 'img_user_text', 'img_timestamp' - ), - 'conds' => array( + ], + 'conds' => [ 'img_major_mime' => $this->major, // This is in order to trigger using // the img_media_mime index in "range" mode. - 'img_media_type' => array( + 'img_media_type' => [ MEDIATYPE_BITMAP, MEDIATYPE_DRAWING, MEDIATYPE_AUDIO, @@ -85,9 +85,9 @@ class MIMEsearchPage extends QueryPage { MEDIATYPE_TEXT, MEDIATYPE_EXECUTABLE, MEDIATYPE_ARCHIVE, - ), - ) + $minorType, - ); + ], + ] + $minorType, + ]; return $qi; } @@ -102,7 +102,7 @@ class MIMEsearchPage extends QueryPage { * @return array */ function getOrderFields() { - return array(); + return []; } /** @@ -111,7 +111,7 @@ class MIMEsearchPage extends QueryPage { function getPageHeader() { return Xml::openElement( 'form', - array( 'id' => 'specialmimesearch', 'method' => 'get', 'action' => wfScript() ) + [ 'id' => 'specialmimesearch', 'method' => 'get', 'action' => wfScript() ] ) . Xml::openElement( 'fieldset' ) . Html::hidden( 'title', $this->getPageTitle()->getPrefixedText() ) . @@ -178,7 +178,7 @@ class MIMEsearchPage extends QueryPage { */ protected static function isValidType( $type ) { // From maintenance/tables.sql => img_major_mime - $types = array( + $types = [ 'unknown', 'application', 'audio', @@ -189,7 +189,7 @@ class MIMEsearchPage extends QueryPage { 'model', 'multipart', 'chemical' - ); + ]; return in_array( $type, $types ); }