Merge "Fixed some @params documentation (includes/*)"
[lhc/web/wiklou.git] / maintenance / sqlite.php
index ef70d32..8a78524 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 /**
- * Performs some operations specific to SQLite database backend
+ * Performs some operations specific to SQLite database backend.
  *
  * 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
  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  * http://www.gnu.org/copyleft/gpl.html
  *
+ * @file
  * @ingroup Maintenance
  */
 
-require_once( dirname( __FILE__ ) . '/Maintenance.php' );
+require_once __DIR__ . '/Maintenance.php';
 
+/**
+ * Maintenance script that performs some operations specific to SQLite database backend.
+ *
+ * @ingroup Maintenance
+ */
 class SqliteMaintenance extends Maintenance {
        public function __construct() {
                parent::__construct();
@@ -35,26 +41,27 @@ class SqliteMaintenance extends Maintenance {
        /**
         * While we use database connection, this simple lie prevents useless --dbpass and
         * --dbuser options from appearing in help message for this script.
+        *
+        * @return int DB constant
         */
        public function getDbType() {
                return Maintenance::DB_NONE;
        }
 
        public function execute() {
-               global $wgDBtype;
-               
                // Should work even if we use a non-SQLite database
                if ( $this->hasOption( 'check-syntax' ) ) {
                        $this->checkSyntax();
-               }
-               
-               if ( $wgDBtype != 'sqlite' ) {
-                       $this->error( "This maintenance script requires a SQLite database.\n" );
                        return;
                }
 
                $this->db = wfGetDB( DB_MASTER );
 
+               if ( $this->db->getType() != 'sqlite' ) {
+                       $this->error( "This maintenance script requires a SQLite database.\n" );
+                       return;
+               }
+
                if ( $this->hasOption( 'vacuum' ) ) {
                        $this->vacuum();
                }
@@ -124,10 +131,10 @@ class SqliteMaintenance extends Maintenance {
                if ( $result === true ) {
                        $this->output( "SQL syntax check: no errors detected.\n" );
                } else {
-                       $this->error( "Error: $result\n" ); 
+                       $this->error( "Error: $result\n" );
                }
        }
 }
 
 $maintClass = "SqliteMaintenance";
-require_once( DO_MAINTENANCE );
\ No newline at end of file
+require_once RUN_MAINTENANCE_IF_MAIN;