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
Wed, Aug 19, 10:32 (2 w, 6 d ago)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
3d/7f/16311e7c93db802504211f9832f8
Default Alt Text
DiffToolsHook.php (861 B)

Event Timeline