Merge "Follow-up Idb1202579: Add special-characters-group-greekextended to RL module"
[lhc/web/wiklou.git] / includes / specials / SpecialMIMEsearch.php
index 6c7133f..defca7d 100644 (file)
@@ -34,8 +34,8 @@ class MIMEsearchPage extends QueryPage {
                parent::__construct( $name );
        }
 
-       function isExpensive() {
-               return false;
+       public function isExpensive() {
+               return true;
        }
 
        function isSyndicated() {
@@ -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() ) .
@@ -123,7 +123,7 @@ class MIMEsearchPage extends QueryPage {
                                        Xml::closeElement( 'form' );
        }
 
-       function execute( $par ) {
+       public function execute( $par ) {
                $this->mime = $par ? $par : $this->getRequest()->getText( 'mime' );
                $this->mime = trim( $this->mime );
                list( $this->major, $this->minor ) = File::splitMime( $this->mime );
@@ -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 );
        }