X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;ds=sidebyside;f=includes%2Flogging%2FLogPage.php;h=daaff07a1e42bf02d69b3fa958a600f679d458b0;hb=f43fa6f4f0e2cb60b8543daad661b48a3e0653a9;hp=2e289170077ceb5bb758d92c8d1e21e566d17b7b;hpb=4a883e2ec8dec91254b3232af298014121642d19;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/logging/LogPage.php b/includes/logging/LogPage.php index 2e28917007..daaff07a1e 100644 --- a/includes/logging/LogPage.php +++ b/includes/logging/LogPage.php @@ -97,7 +97,7 @@ class LogPage { // @todo FIXME private/protected/public property? $this->timestamp = $now = wfTimestampNow(); - $data = array( + $data = [ 'log_id' => $log_id, 'log_type' => $this->type, 'log_action' => $this->action, @@ -109,7 +109,7 @@ class LogPage { 'log_page' => $this->target->getArticleID(), 'log_comment' => $this->comment, 'log_params' => $this->params - ); + ]; $dbw->insert( 'logging', $data, __METHOD__ ); $newId = !is_null( $log_id ) ? $log_id : $dbw->insertId(); @@ -211,42 +211,6 @@ class LogPage { return in_array( $type, LogPage::validTypes() ); } - /** - * Get the name for the given log type - * - * @param string $type Log type - * @return string Log name - * @deprecated since 1.19, warnings in 1.21. Use getName() - */ - public static function logName( $type ) { - global $wgLogNames; - - wfDeprecated( __METHOD__, '1.21' ); - - if ( isset( $wgLogNames[$type] ) ) { - return str_replace( '_', ' ', wfMessage( $wgLogNames[$type] )->text() ); - } else { - // Bogus log types? Perhaps an extension was removed. - return $type; - } - } - - /** - * Get the log header for the given log type - * - * @todo handle missing log types - * @param string $type Logtype - * @return string Header text of this logtype - * @deprecated since 1.19, warnings in 1.21. Use getDescription() - */ - public static function logHeader( $type ) { - global $wgLogHeaders; - - wfDeprecated( __METHOD__, '1.21' ); - - return wfMessage( $wgLogHeaders[$type] )->parse(); - } - /** * Generate text for a log entry. * Only LogFormatter should call this function. @@ -261,7 +225,7 @@ class LogPage { * @return string HTML */ public static function actionText( $type, $action, $title = null, $skin = null, - $params = array(), $filterWikilinks = false + $params = [], $filterWikilinks = false ) { global $wgLang, $wgContLang, $wgLogActions; @@ -367,11 +331,11 @@ class LogPage { * * @return int The log_id of the inserted log entry */ - public function addEntry( $action, $target, $comment, $params = array(), $doer = null ) { + public function addEntry( $action, $target, $comment, $params = [], $doer = null ) { global $wgContLang; if ( !is_array( $params ) ) { - $params = array( $params ); + $params = [ $params ]; } if ( $comment === null ) { @@ -430,14 +394,14 @@ class LogPage { return false; // nothing } - $data = array(); + $data = []; foreach ( $values as $value ) { - $data[] = array( + $data[] = [ 'ls_field' => $field, 'ls_value' => $value, 'ls_log_id' => $logid - ); + ]; } $dbw = wfGetDB( DB_MASTER ); @@ -464,7 +428,7 @@ class LogPage { */ public static function extractParams( $blob ) { if ( $blob === '' ) { - return array(); + return []; } else { return explode( "\n", $blob ); }