Merge "Follow-up I0b781c11 (2a55449): use User::getAutomaticGroups()."
[lhc/web/wiklou.git] / maintenance / storage / storageTypeStats.php
index 9db35e9..1afecc4 100644 (file)
@@ -1,6 +1,25 @@
 <?php
+/**
+ * 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
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License along
+ * with this program; if not, write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+ * http://www.gnu.org/copyleft/gpl.html
+ *
+ * @file
+ * @ingroup Maintenance ExternalStorage
+ */
 
-require_once( dirname(__FILE__).'/../Maintenance.php' );
+require_once( __DIR__ . '/../Maintenance.php' );
 
 class StorageTypeStats extends Maintenance {
        function execute() {
@@ -12,7 +31,6 @@ class StorageTypeStats extends Maintenance {
                        exit( 1 );
                }
 
-               $rangeStart = 0;
                $binSize = intval( pow( 10, floor( log10( $endId ) ) - 3 ) );
                if ( $binSize < 100 ) {
                        $binSize = 100;
@@ -33,7 +51,7 @@ class StorageTypeStats extends Maintenance {
                                                )
                                        )
                                ),
-                               IF(old_flags = 'object',
+                               IF(old_flags LIKE '%object%',
                                        TRIM('"' FROM SUBSTRING_INDEX(SUBSTRING_INDEX(old_text, ':', 3), ':', -1)),
                                        '[none]'
                                )
@@ -86,7 +104,7 @@ SQL;
                echo str_repeat( '-', 120 ) . "\n";
                foreach ( $stats as $flags => $flagStats ) {
                        foreach ( $flagStats as $class => $entry ) {
-                               printf( $format, $flags, $class, $entry['count'], 
+                               printf( $format, $flags, $class, $entry['count'],
                                        sprintf( "%-13d - %-13d", $entry['first'], $entry['last'] ) );
                        }
                }
@@ -94,5 +112,5 @@ SQL;
 }
 
 $maintClass = 'StorageTypeStats';
-require_once( DO_MAINTENANCE );
+require_once( RUN_MAINTENANCE_IF_MAIN );