MediaWiki REL1_31
MysqlInstaller.php
Go to the documentation of this file.
1<?php
27
35
36 protected $globalNames = [
37 'wgDBserver',
38 'wgDBname',
39 'wgDBuser',
40 'wgDBpassword',
41 'wgDBprefix',
42 'wgDBTableOptions',
43 ];
44
45 protected $internalDefaults = [
46 '_MysqlEngine' => 'InnoDB',
47 '_MysqlCharset' => 'binary',
48 '_InstallUser' => 'root',
49 ];
50
51 public $supportedEngines = [ 'InnoDB', 'MyISAM' ];
52
53 public static $minimumVersion = '5.5.8';
54 protected static $notMiniumumVerisonMessage = 'config-mysql-old';
55
56 public $webUserPrivs = [
57 'DELETE',
58 'INSERT',
59 'SELECT',
60 'UPDATE',
61 'CREATE TEMPORARY TABLES',
62 ];
63
67 public function getName() {
68 return 'mysql';
69 }
70
74 public function isCompiled() {
75 return self::checkExtension( 'mysqli' );
76 }
77
81 public function getConnectForm() {
82 return $this->getTextBox(
83 'wgDBserver',
84 'config-db-host',
85 [],
86 $this->parent->getHelpBox( 'config-db-host-help' )
87 ) .
88 Html::openElement( 'fieldset' ) .
89 Html::element( 'legend', [], wfMessage( 'config-db-wiki-settings' )->text() ) .
90 $this->getTextBox( 'wgDBname', 'config-db-name', [ 'dir' => 'ltr' ],
91 $this->parent->getHelpBox( 'config-db-name-help' ) ) .
92 $this->getTextBox( 'wgDBprefix', 'config-db-prefix', [ 'dir' => 'ltr' ],
93 $this->parent->getHelpBox( 'config-db-prefix-help' ) ) .
94 Html::closeElement( 'fieldset' ) .
95 $this->getInstallUserBox();
96 }
97
98 public function submitConnectForm() {
99 // Get variables from the request.
100 $newValues = $this->setVarsFromRequest( [ 'wgDBserver', 'wgDBname', 'wgDBprefix' ] );
101
102 // Validate them.
103 $status = Status::newGood();
104 if ( !strlen( $newValues['wgDBserver'] ) ) {
105 $status->fatal( 'config-missing-db-host' );
106 }
107 if ( !strlen( $newValues['wgDBname'] ) ) {
108 $status->fatal( 'config-missing-db-name' );
109 } elseif ( !preg_match( '/^[a-z0-9+_-]+$/i', $newValues['wgDBname'] ) ) {
110 $status->fatal( 'config-invalid-db-name', $newValues['wgDBname'] );
111 }
112 if ( !preg_match( '/^[a-z0-9_-]*$/i', $newValues['wgDBprefix'] ) ) {
113 $status->fatal( 'config-invalid-db-prefix', $newValues['wgDBprefix'] );
114 }
115 if ( !$status->isOK() ) {
116 return $status;
117 }
118
119 // Submit user box
120 $status = $this->submitInstallUserBox();
121 if ( !$status->isOK() ) {
122 return $status;
123 }
124
125 // Try to connect
126 $status = $this->getConnection();
127 if ( !$status->isOK() ) {
128 return $status;
129 }
133 $conn = $status->value;
134
135 // Check version
136 return static::meetsMinimumRequirement( $conn->getServerVersion() );
137 }
138
142 public function openConnection() {
143 $status = Status::newGood();
144 try {
145 $db = Database::factory( 'mysql', [
146 'host' => $this->getVar( 'wgDBserver' ),
147 'user' => $this->getVar( '_InstallUser' ),
148 'password' => $this->getVar( '_InstallPassword' ),
149 'dbname' => false,
150 'flags' => 0,
151 'tablePrefix' => $this->getVar( 'wgDBprefix' ) ] );
152 $status->value = $db;
153 } catch ( DBConnectionError $e ) {
154 $status->fatal( 'config-connection-error', $e->getMessage() );
155 }
156
157 return $status;
158 }
159
160 public function preUpgrade() {
161 global $wgDBuser, $wgDBpassword;
162
163 $status = $this->getConnection();
164 if ( !$status->isOK() ) {
165 $this->parent->showStatusError( $status );
166
167 return;
168 }
172 $conn = $status->value;
173 $conn->selectDB( $this->getVar( 'wgDBname' ) );
174
175 # Determine existing default character set
176 if ( $conn->tableExists( "revision", __METHOD__ ) ) {
177 $revision = $this->escapeLikeInternal( $this->getVar( 'wgDBprefix' ) . 'revision', '\\' );
178 $res = $conn->query( "SHOW TABLE STATUS LIKE '$revision'", __METHOD__ );
179 $row = $conn->fetchObject( $res );
180 if ( !$row ) {
181 $this->parent->showMessage( 'config-show-table-status' );
182 $existingSchema = false;
183 $existingEngine = false;
184 } else {
185 if ( preg_match( '/^latin1/', $row->Collation ) ) {
186 $existingSchema = 'latin1';
187 } elseif ( preg_match( '/^utf8/', $row->Collation ) ) {
188 $existingSchema = 'utf8';
189 } elseif ( preg_match( '/^binary/', $row->Collation ) ) {
190 $existingSchema = 'binary';
191 } else {
192 $existingSchema = false;
193 $this->parent->showMessage( 'config-unknown-collation' );
194 }
195 if ( isset( $row->Engine ) ) {
196 $existingEngine = $row->Engine;
197 } else {
198 $existingEngine = $row->Type;
199 }
200 }
201 } else {
202 $existingSchema = false;
203 $existingEngine = false;
204 }
205
206 if ( $existingSchema && $existingSchema != $this->getVar( '_MysqlCharset' ) ) {
207 $this->setVar( '_MysqlCharset', $existingSchema );
208 }
209 if ( $existingEngine && $existingEngine != $this->getVar( '_MysqlEngine' ) ) {
210 $this->setVar( '_MysqlEngine', $existingEngine );
211 }
212
213 # Normal user and password are selected after this step, so for now
214 # just copy these two
215 $wgDBuser = $this->getVar( '_InstallUser' );
216 $wgDBpassword = $this->getVar( '_InstallPassword' );
217 }
218
224 protected function escapeLikeInternal( $s, $escapeChar = '`' ) {
225 return str_replace( [ $escapeChar, '%', '_' ],
226 [ "{$escapeChar}{$escapeChar}", "{$escapeChar}%", "{$escapeChar}_" ],
227 $s );
228 }
229
235 public function getEngines() {
236 $status = $this->getConnection();
237
241 $conn = $status->value;
242
243 $engines = [];
244 $res = $conn->query( 'SHOW ENGINES', __METHOD__ );
245 foreach ( $res as $row ) {
246 if ( $row->Support == 'YES' || $row->Support == 'DEFAULT' ) {
247 $engines[] = $row->Engine;
248 }
249 }
250 $engines = array_intersect( $this->supportedEngines, $engines );
251
252 return $engines;
253 }
254
260 public function getCharsets() {
261 return [ 'binary', 'utf8' ];
262 }
263
269 public function canCreateAccounts() {
270 $status = $this->getConnection();
271 if ( !$status->isOK() ) {
272 return false;
273 }
275 $conn = $status->value;
276
277 // Get current account name
278 $currentName = $conn->selectField( '', 'CURRENT_USER()', '', __METHOD__ );
279 $parts = explode( '@', $currentName );
280 if ( count( $parts ) != 2 ) {
281 return false;
282 }
283 $quotedUser = $conn->addQuotes( $parts[0] ) .
284 '@' . $conn->addQuotes( $parts[1] );
285
286 // The user needs to have INSERT on mysql.* to be able to CREATE USER
287 // The grantee will be double-quoted in this query, as required
288 $res = $conn->select( 'INFORMATION_SCHEMA.USER_PRIVILEGES', '*',
289 [ 'GRANTEE' => $quotedUser ], __METHOD__ );
290 $insertMysql = false;
291 $grantOptions = array_flip( $this->webUserPrivs );
292 foreach ( $res as $row ) {
293 if ( $row->PRIVILEGE_TYPE == 'INSERT' ) {
294 $insertMysql = true;
295 }
296 if ( $row->IS_GRANTABLE ) {
297 unset( $grantOptions[$row->PRIVILEGE_TYPE] );
298 }
299 }
300
301 // Check for DB-specific privs for mysql.*
302 if ( !$insertMysql ) {
303 $row = $conn->selectRow( 'INFORMATION_SCHEMA.SCHEMA_PRIVILEGES', '*',
304 [
305 'GRANTEE' => $quotedUser,
306 'TABLE_SCHEMA' => 'mysql',
307 'PRIVILEGE_TYPE' => 'INSERT',
308 ], __METHOD__ );
309 if ( $row ) {
310 $insertMysql = true;
311 }
312 }
313
314 if ( !$insertMysql ) {
315 return false;
316 }
317
318 // Check for DB-level grant options
319 $res = $conn->select( 'INFORMATION_SCHEMA.SCHEMA_PRIVILEGES', '*',
320 [
321 'GRANTEE' => $quotedUser,
322 'IS_GRANTABLE' => 1,
323 ], __METHOD__ );
324 foreach ( $res as $row ) {
325 $regex = $this->likeToRegex( $row->TABLE_SCHEMA );
326 if ( preg_match( $regex, $this->getVar( 'wgDBname' ) ) ) {
327 unset( $grantOptions[$row->PRIVILEGE_TYPE] );
328 }
329 }
330 if ( count( $grantOptions ) ) {
331 // Can't grant everything
332 return false;
333 }
334
335 return true;
336 }
337
344 protected function likeToRegex( $wildcard ) {
345 $r = preg_quote( $wildcard, '/' );
346 $r = strtr( $r, [
347 '%' => '.*',
348 '_' => '.'
349 ] );
350 return "/$r/s";
351 }
352
356 public function getSettingsForm() {
357 if ( $this->canCreateAccounts() ) {
358 $noCreateMsg = false;
359 } else {
360 $noCreateMsg = 'config-db-web-no-create-privs';
361 }
362 $s = $this->getWebUserBox( $noCreateMsg );
363
364 // Do engine selector
365 $engines = $this->getEngines();
366 // If the current default engine is not supported, use an engine that is
367 if ( !in_array( $this->getVar( '_MysqlEngine' ), $engines ) ) {
368 $this->setVar( '_MysqlEngine', reset( $engines ) );
369 }
370
371 $s .= Xml::openElement( 'div', [
372 'id' => 'dbMyisamWarning'
373 ] );
374 $myisamWarning = 'config-mysql-myisam-dep';
375 if ( count( $engines ) === 1 ) {
376 $myisamWarning = 'config-mysql-only-myisam-dep';
377 }
378 $s .= $this->parent->getWarningBox( wfMessage( $myisamWarning )->text() );
379 $s .= Xml::closeElement( 'div' );
380
381 if ( $this->getVar( '_MysqlEngine' ) != 'MyISAM' ) {
382 $s .= Xml::openElement( 'script' );
383 $s .= '$(\'#dbMyisamWarning\').hide();';
384 $s .= Xml::closeElement( 'script' );
385 }
386
387 if ( count( $engines ) >= 2 ) {
388 // getRadioSet() builds a set of labeled radio buttons.
389 // For grep: The following messages are used as the item labels:
390 // config-mysql-innodb, config-mysql-myisam
391 $s .= $this->getRadioSet( [
392 'var' => '_MysqlEngine',
393 'label' => 'config-mysql-engine',
394 'itemLabelPrefix' => 'config-mysql-',
395 'values' => $engines,
396 'itemAttribs' => [
397 'MyISAM' => [
398 'class' => 'showHideRadio',
399 'rel' => 'dbMyisamWarning'
400 ],
401 'InnoDB' => [
402 'class' => 'hideShowRadio',
403 'rel' => 'dbMyisamWarning'
404 ]
405 ]
406 ] );
407 $s .= $this->parent->getHelpBox( 'config-mysql-engine-help' );
408 }
409
410 // If the current default charset is not supported, use a charset that is
411 $charsets = $this->getCharsets();
412 if ( !in_array( $this->getVar( '_MysqlCharset' ), $charsets ) ) {
413 $this->setVar( '_MysqlCharset', reset( $charsets ) );
414 }
415
416 return $s;
417 }
418
422 public function submitSettingsForm() {
423 $this->setVarsFromRequest( [ '_MysqlEngine', '_MysqlCharset' ] );
424 $status = $this->submitWebUserBox();
425 if ( !$status->isOK() ) {
426 return $status;
427 }
428
429 // Validate the create checkbox
430 $canCreate = $this->canCreateAccounts();
431 if ( !$canCreate ) {
432 $this->setVar( '_CreateDBAccount', false );
433 $create = false;
434 } else {
435 $create = $this->getVar( '_CreateDBAccount' );
436 }
437
438 if ( !$create ) {
439 // Test the web account
440 try {
441 Database::factory( 'mysql', [
442 'host' => $this->getVar( 'wgDBserver' ),
443 'user' => $this->getVar( 'wgDBuser' ),
444 'password' => $this->getVar( 'wgDBpassword' ),
445 'dbname' => false,
446 'flags' => 0,
447 'tablePrefix' => $this->getVar( 'wgDBprefix' )
448 ] );
449 } catch ( DBConnectionError $e ) {
450 return Status::newFatal( 'config-connection-error', $e->getMessage() );
451 }
452 }
453
454 // Validate engines and charsets
455 // This is done pre-submit already so it's just for security
456 $engines = $this->getEngines();
457 if ( !in_array( $this->getVar( '_MysqlEngine' ), $engines ) ) {
458 $this->setVar( '_MysqlEngine', reset( $engines ) );
459 }
460 $charsets = $this->getCharsets();
461 if ( !in_array( $this->getVar( '_MysqlCharset' ), $charsets ) ) {
462 $this->setVar( '_MysqlCharset', reset( $charsets ) );
463 }
464
465 return Status::newGood();
466 }
467
468 public function preInstall() {
469 # Add our user callback to installSteps, right before the tables are created.
470 $callback = [
471 'name' => 'user',
472 'callback' => [ $this, 'setupUser' ],
473 ];
474 $this->parent->addInstallStep( $callback, 'tables' );
475 }
476
480 public function setupDatabase() {
481 $status = $this->getConnection();
482 if ( !$status->isOK() ) {
483 return $status;
484 }
486 $conn = $status->value;
487 $dbName = $this->getVar( 'wgDBname' );
488 if ( !$conn->selectDB( $dbName ) ) {
489 $conn->query(
490 "CREATE DATABASE " . $conn->addIdentifierQuotes( $dbName ) . "CHARACTER SET utf8",
491 __METHOD__
492 );
493 $conn->selectDB( $dbName );
494 }
495 $this->setupSchemaVars();
496
497 return $status;
498 }
499
503 public function setupUser() {
504 $dbUser = $this->getVar( 'wgDBuser' );
505 if ( $dbUser == $this->getVar( '_InstallUser' ) ) {
506 return Status::newGood();
507 }
508 $status = $this->getConnection();
509 if ( !$status->isOK() ) {
510 return $status;
511 }
512
513 $this->setupSchemaVars();
514 $dbName = $this->getVar( 'wgDBname' );
515 $this->db->selectDB( $dbName );
516 $server = $this->getVar( 'wgDBserver' );
517 $password = $this->getVar( 'wgDBpassword' );
518 $grantableNames = [];
519
520 if ( $this->getVar( '_CreateDBAccount' ) ) {
521 // Before we blindly try to create a user that already has access,
522 try { // first attempt to connect to the database
523 Database::factory( 'mysql', [
524 'host' => $server,
525 'user' => $dbUser,
526 'password' => $password,
527 'dbname' => false,
528 'flags' => 0,
529 'tablePrefix' => $this->getVar( 'wgDBprefix' )
530 ] );
531 $grantableNames[] = $this->buildFullUserName( $dbUser, $server );
532 $tryToCreate = false;
533 } catch ( DBConnectionError $e ) {
534 $tryToCreate = true;
535 }
536 } else {
537 $grantableNames[] = $this->buildFullUserName( $dbUser, $server );
538 $tryToCreate = false;
539 }
540
541 if ( $tryToCreate ) {
542 $createHostList = [
543 $server,
544 'localhost',
545 'localhost.localdomain',
546 '%'
547 ];
548
549 $createHostList = array_unique( $createHostList );
550 $escPass = $this->db->addQuotes( $password );
551
552 foreach ( $createHostList as $host ) {
553 $fullName = $this->buildFullUserName( $dbUser, $host );
554 if ( !$this->userDefinitelyExists( $host, $dbUser ) ) {
555 try {
556 $this->db->begin( __METHOD__ );
557 $this->db->query( "CREATE USER $fullName IDENTIFIED BY $escPass", __METHOD__ );
558 $this->db->commit( __METHOD__ );
559 $grantableNames[] = $fullName;
560 } catch ( DBQueryError $dqe ) {
561 if ( $this->db->lastErrno() == 1396 /* ER_CANNOT_USER */ ) {
562 // User (probably) already exists
563 $this->db->rollback( __METHOD__ );
564 $status->warning( 'config-install-user-alreadyexists', $dbUser );
565 $grantableNames[] = $fullName;
566 break;
567 } else {
568 // If we couldn't create for some bizzare reason and the
569 // user probably doesn't exist, skip the grant
570 $this->db->rollback( __METHOD__ );
571 $status->warning( 'config-install-user-create-failed', $dbUser, $dqe->getMessage() );
572 }
573 }
574 } else {
575 $status->warning( 'config-install-user-alreadyexists', $dbUser );
576 $grantableNames[] = $fullName;
577 break;
578 }
579 }
580 }
581
582 // Try to grant to all the users we know exist or we were able to create
583 $dbAllTables = $this->db->addIdentifierQuotes( $dbName ) . '.*';
584 foreach ( $grantableNames as $name ) {
585 try {
586 $this->db->begin( __METHOD__ );
587 $this->db->query( "GRANT ALL PRIVILEGES ON $dbAllTables TO $name", __METHOD__ );
588 $this->db->commit( __METHOD__ );
589 } catch ( DBQueryError $dqe ) {
590 $this->db->rollback( __METHOD__ );
591 $status->fatal( 'config-install-user-grant-failed', $dbUser, $dqe->getMessage() );
592 }
593 }
594
595 return $status;
596 }
597
604 private function buildFullUserName( $name, $host ) {
605 return $this->db->addQuotes( $name ) . '@' . $this->db->addQuotes( $host );
606 }
607
615 private function userDefinitelyExists( $host, $user ) {
616 try {
617 $res = $this->db->selectRow( 'mysql.user', [ 'Host', 'User' ],
618 [ 'Host' => $host, 'User' => $user ], __METHOD__ );
619
620 return (bool)$res;
621 } catch ( DBQueryError $dqe ) {
622 return false;
623 }
624 }
625
632 protected function getTableOptions() {
633 $options = [];
634 if ( $this->getVar( '_MysqlEngine' ) !== null ) {
635 $options[] = "ENGINE=" . $this->getVar( '_MysqlEngine' );
636 }
637 if ( $this->getVar( '_MysqlCharset' ) !== null ) {
638 $options[] = 'DEFAULT CHARSET=' . $this->getVar( '_MysqlCharset' );
639 }
640
641 return implode( ', ', $options );
642 }
643
649 public function getSchemaVars() {
650 return [
651 'wgDBTableOptions' => $this->getTableOptions(),
652 'wgDBname' => $this->getVar( 'wgDBname' ),
653 'wgDBuser' => $this->getVar( 'wgDBuser' ),
654 'wgDBpassword' => $this->getVar( 'wgDBpassword' ),
655 ];
656 }
657
658 public function getLocalSettings() {
659 $prefix = LocalSettingsGenerator::escapePhpString( $this->getVar( 'wgDBprefix' ) );
660 $tblOpts = LocalSettingsGenerator::escapePhpString( $this->getTableOptions() );
661
662 return "# MySQL specific settings
663\$wgDBprefix = \"{$prefix}\";
664
665# MySQL table options to use during installation or update
666\$wgDBTableOptions = \"{$tblOpts}\";";
667 }
668}
$wgDBuser
Database username.
$wgDBpassword
Database user's password.
Base class for DBMS-specific installation helper classes.
getWebUserBox( $noCreateMsg=false)
Get a standard web-user fieldset.
submitWebUserBox()
Submit the form from getWebUserBox().
static checkExtension( $name)
Convenience function.
Database $db
The database connection.
setVarsFromRequest( $varNames)
Convenience function to set variables based on form data.
getConnection()
Connect to the database using the administrative user/password currently defined in the session.
getVar( $var, $default=null)
Get a variable, taking local defaults into account.
getTextBox( $var, $label, $attribs=[], $helpData="")
Get a labelled text box to configure a local variable.
setVar( $name, $value)
Convenience alias for $this->parent->setVar()
submitInstallUserBox()
Submit a standard install user fieldset.
getInstallUserBox()
Get a standard install-user fieldset.
setupSchemaVars()
Set appropriate schema variables in the current database connection.
getRadioSet( $params)
Get a set of labelled radio buttons.
Class for setting up the MediaWiki database using MySQL.
likeToRegex( $wildcard)
Convert a wildcard (as used in LIKE) to a regex Slashes are escaped, slash terminators included.
userDefinitelyExists( $host, $user)
Try to see if the user account exists.
escapeLikeInternal( $s, $escapeChar='`')
getSchemaVars()
Get variables to substitute into tables.sql and the SQL patch files.
preInstall()
Allow DB installers a chance to make last-minute changes before installation occurs.
getEngines()
Get a list of storage engines that are available and supported.
canCreateAccounts()
Return true if the install user can create accounts.
preUpgrade()
Allow DB installers a chance to make checks before upgrade.
getTableOptions()
Return any table options to be applied to all tables that don't override them.
static $notMiniumumVerisonMessage
getCharsets()
Get a list of character sets that are available and supported.
submitConnectForm()
Set variables based on the request array, assuming it was submitted via the form returned by getConne...
buildFullUserName( $name, $host)
Return a formal 'User'@'Host' username for use in queries.
getLocalSettings()
Get the DBMS-specific options for LocalSettings.php generation.
Relational database abstraction object.
Definition Database.php:48
$res
Definition database.txt:21
design txt This is a brief overview of the new design More thorough and up to date information is available on the documentation wiki at etc Handles the details of getting and saving to the user table of the and dealing with sessions and cookies OutputPage Encapsulates the entire HTML page that will be sent in response to any server request It is used by calling its functions to add text
Definition design.txt:18
Status::newGood()` to allow deletion, and then `return false` from the hook function. Ensure you consume the 'ChangeTagAfterDelete' hook to carry out custom deletion actions. $tag:name of the tag $user:user initiating the action & $status:Status object. See above. 'ChangeTagsListActive':Allows you to nominate which of the tags your extension uses are in active use. & $tags:list of all active tags. Append to this array. 'ChangeTagsAfterUpdateTags':Called after tags have been updated with the ChangeTags::updateTags function. Params:$addedTags:tags effectively added in the update $removedTags:tags effectively removed in the update $prevTags:tags that were present prior to the update $rc_id:recentchanges table id $rev_id:revision table id $log_id:logging table id $params:tag params $rc:RecentChange being tagged when the tagging accompanies the action or null $user:User who performed the tagging when the tagging is subsequent to the action or null 'ChangeTagsAllowedAdd':Called when checking if a user can add tags to a change. & $allowedTags:List of all the tags the user is allowed to add. Any tags the user wants to add( $addTags) that are not in this array will cause it to fail. You may add or remove tags to this array as required. $addTags:List of tags user intends to add. $user:User who is adding the tags. 'ChangeUserGroups':Called before user groups are changed. $performer:The User who will perform the change $user:The User whose groups will be changed & $add:The groups that will be added & $remove:The groups that will be removed 'Collation::factory':Called if $wgCategoryCollation is an unknown collation. $collationName:Name of the collation in question & $collationObject:Null. Replace with a subclass of the Collation class that implements the collation given in $collationName. 'ConfirmEmailComplete':Called after a user 's email has been confirmed successfully. $user:user(object) whose email is being confirmed 'ContentAlterParserOutput':Modify parser output for a given content object. Called by Content::getParserOutput after parsing has finished. Can be used for changes that depend on the result of the parsing but have to be done before LinksUpdate is called(such as adding tracking categories based on the rendered HTML). $content:The Content to render $title:Title of the page, as context $parserOutput:ParserOutput to manipulate 'ContentGetParserOutput':Customize parser output for a given content object, called by AbstractContent::getParserOutput. May be used to override the normal model-specific rendering of page content. $content:The Content to render $title:Title of the page, as context $revId:The revision ID, as context $options:ParserOptions for rendering. To avoid confusing the parser cache, the output can only depend on parameters provided to this hook function, not on global state. $generateHtml:boolean, indicating whether full HTML should be generated. If false, generation of HTML may be skipped, but other information should still be present in the ParserOutput object. & $output:ParserOutput, to manipulate or replace 'ContentHandlerDefaultModelFor':Called when the default content model is determined for a given title. May be used to assign a different model for that title. $title:the Title in question & $model:the model name. Use with CONTENT_MODEL_XXX constants. 'ContentHandlerForModelID':Called when a ContentHandler is requested for a given content model name, but no entry for that model exists in $wgContentHandlers. Note:if your extension implements additional models via this hook, please use GetContentModels hook to make them known to core. $modeName:the requested content model name & $handler:set this to a ContentHandler object, if desired. 'ContentModelCanBeUsedOn':Called to determine whether that content model can be used on a given page. This is especially useful to prevent some content models to be used in some special location. $contentModel:ID of the content model in question $title:the Title in question. & $ok:Output parameter, whether it is OK to use $contentModel on $title. Handler functions that modify $ok should generally return false to prevent further hooks from further modifying $ok. 'ContribsPager::getQueryInfo':Before the contributions query is about to run & $pager:Pager object for contributions & $queryInfo:The query for the contribs Pager 'ContribsPager::reallyDoQuery':Called before really executing the query for My Contributions & $data:an array of results of all contribs queries $pager:The ContribsPager object hooked into $offset:Index offset, inclusive $limit:Exact query limit $descending:Query direction, false for ascending, true for descending 'ContributionsLineEnding':Called before a contributions HTML line is finished $page:SpecialPage object for contributions & $ret:the HTML line $row:the DB row for this line & $classes:the classes to add to the surrounding< li > & $attribs:associative array of other HTML attributes for the< li > element. Currently only data attributes reserved to MediaWiki are allowed(see Sanitizer::isReservedDataAttribute). 'ContributionsToolLinks':Change tool links above Special:Contributions $id:User identifier $title:User page title & $tools:Array of tool links $specialPage:SpecialPage instance for context and services. Can be either SpecialContributions or DeletedContributionsPage. Extensions should type hint against a generic SpecialPage though. 'ConvertContent':Called by AbstractContent::convert when a conversion to another content model is requested. Handler functions that modify $result should generally return false to disable further attempts at conversion. $content:The Content object to be converted. $toModel:The ID of the content model to convert to. $lossy: boolean indicating whether lossy conversion is allowed. & $result:Output parameter, in case the handler function wants to provide a converted Content object. Note that $result->getContentModel() must return $toModel. 'CustomEditor':When invoking the page editor Return true to allow the normal editor to be used, or false if implementing a custom editor, e.g. for a special namespace, etc. $article:Article being edited $user:User performing the edit 'DatabaseOraclePostInit':Called after initialising an Oracle database $db:the DatabaseOracle object 'DeletedContribsPager::reallyDoQuery':Called before really executing the query for Special:DeletedContributions Similar to ContribsPager::reallyDoQuery & $data:an array of results of all contribs queries $pager:The DeletedContribsPager object hooked into $offset:Index offset, inclusive $limit:Exact query limit $descending:Query direction, false for ascending, true for descending 'DeletedContributionsLineEnding':Called before a DeletedContributions HTML line is finished. Similar to ContributionsLineEnding $page:SpecialPage object for DeletedContributions & $ret:the HTML line $row:the DB row for this line & $classes:the classes to add to the surrounding< li > & $attribs:associative array of other HTML attributes for the< li > element. Currently only data attributes reserved to MediaWiki are allowed(see Sanitizer::isReservedDataAttribute). 'DeleteUnknownPreferences':Called by the cleanupPreferences.php maintenance script to build a WHERE clause with which to delete preferences that are not known about. This hook is used by extensions that have dynamically-named preferences that should not be deleted in the usual cleanup process. For example, the Gadgets extension creates preferences prefixed with 'gadget-', and so anything with that prefix is excluded from the deletion. &where:An array that will be passed as the $cond parameter to IDatabase::select() to determine what will be deleted from the user_properties table. $db:The IDatabase object, useful for accessing $db->buildLike() etc. 'DifferenceEngineAfterLoadNewText':called in DifferenceEngine::loadNewText() after the new revision 's content has been loaded into the class member variable $differenceEngine->mNewContent but before returning true from this function. $differenceEngine:DifferenceEngine object 'DifferenceEngineLoadTextAfterNewContentIsLoaded':called in DifferenceEngine::loadText() after the new revision 's content has been loaded into the class member variable $differenceEngine->mNewContent but before checking if the variable 's value is null. This hook can be used to inject content into said class member variable. $differenceEngine:DifferenceEngine object 'DifferenceEngineMarkPatrolledLink':Allows extensions to change the "mark as patrolled" link which is shown both on the diff header as well as on the bottom of a page, usually wrapped in a span element which has class="patrollink". $differenceEngine:DifferenceEngine object & $markAsPatrolledLink:The "mark as patrolled" link HTML(string) $rcid:Recent change ID(rc_id) for this change(int) 'DifferenceEngineMarkPatrolledRCID':Allows extensions to possibly change the rcid parameter. For example the rcid might be set to zero due to the user being the same as the performer of the change but an extension might still want to show it under certain conditions. & $rcid:rc_id(int) of the change or 0 $differenceEngine:DifferenceEngine object $change:RecentChange object $user:User object representing the current user 'DifferenceEngineNewHeader':Allows extensions to change the $newHeader variable, which contains information about the new revision, such as the revision 's author, whether the revision was marked as a minor edit or not, etc. $differenceEngine:DifferenceEngine object & $newHeader:The string containing the various #mw-diff-otitle[1-5] divs, which include things like revision author info, revision comment, RevisionDelete link and more $formattedRevisionTools:Array containing revision tools, some of which may have been injected with the DiffRevisionTools hook $nextlink:String containing the link to the next revision(if any) $status
Definition hooks.txt:1051
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped & $options
Definition hooks.txt:2001
either a unescaped string or a HtmlArmor object after in associative array form externallinks including delete and has completed for all link tables whether this was an auto creation default is conds Array Extra conditions for the No matching items in log is displayed if loglist is empty msgKey Array If you want a nice box with a set this to the key of the message First element is the message additional optional elements are parameters for the key that are processed with wfMessage() -> params() ->parseAsBlock() - offset Set to overwrite offset parameter in $wgRequest set to '' to unset offset - wrap String Wrap the message in html(usually something like "&lt;div ...>$1&lt;/div>"). - flags Integer display flags(NO_ACTION_LINK, NO_EXTRA_USER_LINKS) 'LogException':Called before an exception(or PHP error) is logged. This is meant for integration with external error aggregation services
returning false will NOT prevent logging $e
Definition hooks.txt:2176