X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=includes%2Fpage%2FWikiPage.php;h=173fdc6e97603bbb1a4af5830a2927dd87e67ad7;hb=9d37c792b2ee408b6a01b43a1a649e6074c11c34;hp=fdba6fb0651ad6deee1ee8aac2a9838d71107786;hpb=34bd6f0b6bd0f0af03b448deddb85cdea358e0fb;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/page/WikiPage.php b/includes/page/WikiPage.php index fdba6fb065..173fdc6e97 100644 --- a/includes/page/WikiPage.php +++ b/includes/page/WikiPage.php @@ -813,7 +813,7 @@ class WikiPage implements Page, IDBAccessObject { * * @since 1.21 */ - public function getContent( $audience = Revision::FOR_PUBLIC, User $user = null ) { + public function getContent( $audience = RevisionRecord::FOR_PUBLIC, User $user = null ) { $this->loadLastEdit(); if ( $this->mLastRevision ) { return $this->mLastRevision->getContent( $audience, $user ); @@ -851,7 +851,7 @@ class WikiPage implements Page, IDBAccessObject { * to the $audience parameter * @return int User ID for the user that made the last article revision */ - public function getUser( $audience = Revision::FOR_PUBLIC, User $user = null ) { + public function getUser( $audience = RevisionRecord::FOR_PUBLIC, User $user = null ) { $this->loadLastEdit(); if ( $this->mLastRevision ) { return $this->mLastRevision->getUser( $audience, $user ); @@ -870,7 +870,7 @@ class WikiPage implements Page, IDBAccessObject { * to the $audience parameter * @return User|null */ - public function getCreator( $audience = Revision::FOR_PUBLIC, User $user = null ) { + public function getCreator( $audience = RevisionRecord::FOR_PUBLIC, User $user = null ) { $revision = $this->getOldestRevision(); if ( $revision ) { $userName = $revision->getUserText( $audience, $user ); @@ -889,7 +889,7 @@ class WikiPage implements Page, IDBAccessObject { * to the $audience parameter * @return string Username of the user that made the last article revision */ - public function getUserText( $audience = Revision::FOR_PUBLIC, User $user = null ) { + public function getUserText( $audience = RevisionRecord::FOR_PUBLIC, User $user = null ) { $this->loadLastEdit(); if ( $this->mLastRevision ) { return $this->mLastRevision->getUserText( $audience, $user ); @@ -908,7 +908,7 @@ class WikiPage implements Page, IDBAccessObject { * @return string|null Comment stored for the last article revision, or null if the specified * audience does not have access to the comment. */ - public function getComment( $audience = Revision::FOR_PUBLIC, User $user = null ) { + public function getComment( $audience = RevisionRecord::FOR_PUBLIC, User $user = null ) { $this->loadLastEdit(); if ( $this->mLastRevision ) { return $this->mLastRevision->getComment( $audience, $user ); @@ -1176,7 +1176,7 @@ class WikiPage implements Page, IDBAccessObject { $conds[] = 'NOT(' . $actorMigration->getWhere( $dbr, 'rev_user', $user )['conds'] . ')'; // Username hidden? - $conds[] = "{$dbr->bitAnd( 'rev_deleted', Revision::DELETED_USER )} = 0"; + $conds[] = "{$dbr->bitAnd( 'rev_deleted', RevisionRecord::DELETED_USER )} = 0"; $jconds = [ 'user' => [ 'LEFT JOIN', $actorQuery['fields']['rev_user'] . ' = user_id' ], @@ -2695,7 +2695,7 @@ class WikiPage implements Page, IDBAccessObject { // we need to remember the old content so we can use it to generate all deletion updates. $revision = $this->getRevision(); try { - $content = $this->getContent( Revision::RAW ); + $content = $this->getContent( RevisionRecord::RAW ); } catch ( Exception $ex ) { wfLogWarning( __METHOD__ . ': failed to load content during deletion! ' . $ex->getMessage() ); @@ -2844,7 +2844,7 @@ class WikiPage implements Page, IDBAccessObject { // Bitfields to further suppress the content if ( $suppress ) { - $bitfield = Revision::SUPPRESSED_ALL; + $bitfield = RevisionRecord::SUPPRESSED_ALL; $revQuery['fields'] = array_diff( $revQuery['fields'], [ 'rev_deleted' ] ); } @@ -3768,7 +3768,7 @@ class WikiPage implements Page, IDBAccessObject { $slotContent = [ SlotRecord::MAIN => $rev ]; } else { $slotContent = array_map( function ( SlotRecord $slot ) { - return $slot->getContent( Revision::RAW ); + return $slot->getContent( RevisionRecord::RAW ); }, $rev->getSlots()->getSlots() ); }