wiki.techinc.nl/includes/diff/Hook/DiffToolsHook.php
DannyS712 5abd50b925 Add HistoryTools and DiffTools hooks
Bug: T255494
Bug: T255495
Change-Id: Ib2ab2e26a95affdd1dfa6b945f752157580ea2d3
2020-06-23 17:30:22 -07:00

26 lines
725 B
PHP

<?php
namespace MediaWiki\Diff\Hook;
use MediaWiki\Revision\RevisionRecord;
use MediaWiki\User\UserIdentity;
/**
* @stable for implementation
* @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 );
}