Page MenuHomeWickedGov Phorge

DiffToolsHook.php
No OneTemporary

Size
861 B
Referenced Files
None
Subscribers
None

DiffToolsHook.php

<?php
namespace MediaWiki\Diff\Hook;
use MediaWiki\Revision\RevisionRecord;
use MediaWiki\User\UserIdentity;
/**
* This is a hook handler interface, see docs/Hooks.md.
* Use the hook name "DiffTools" to register handlers implementing this interface.
*
* @stable to implement
* @ingroup Hooks
*/
interface DiffToolsHook {
/**
* Use this hook to override or extend the revision tools available from the
* diff view, i.e. undo, etc.
*
* @since 1.35
*
* @param RevisionRecord $newRevRecord New revision
* @param string[] &$links Array of HTML links
* @param RevisionRecord|null $oldRevRecord Old revision (may be null)
* @param UserIdentity $userIdentity Current user
* @return bool|void True or no return value to continue or false to abort
*/
public function onDiffTools( $newRevRecord, &$links, $oldRevRecord, $userIdentity );
}

File Metadata

Mime Type
text/x-php
Expires
Fri, Jul 3, 19:54 (1 d, 7 h)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
68/fa/11d7a0987102cfb041dd2ba569f3
Default Alt Text
DiffToolsHook.php (861 B)

Event Timeline