Hook;
```lang=php
// Use the copy of revision ID in case this undocumented, shady hook tries to mess with internals.
$this->getHookRunner()->onSkinTemplateBuildNavUrlsNav_urlsAfterPermalink( $this, $modifiedNavUrls, $revid, $revid );
```
This hook only exists to aid using [[https://mediawiki.org/wiki/Special:MyLanguage/Manual:Hooks/BaseTemplateToolbox|BaseTemplateToolbox]], in a situation where the clientele needs to check the revision to decide whether to hook items into BaseTemplateToolbox or not. (for instance #CiteThisPage, previously used it to check if title exists, albeit there's a better way of doing so)
The hook it's supposed to provide rev id for will soon be deprecated (T253416), and so this helper hook should be deprecated too.
The replacement for BaseTemplateToolbox (SidebarBeforeOutput hook) is sufficient to provide what both hooks used to provide, already demonstrated in b9bdc3fc19f1 for CiteThisPage extension and in the yet-to-be merged [[https://gerrit.wikimedia.org/r/601942|r601942]]
for WikibaseRepo
====To do====
[] Remove in WikibaseRepo T253685
([[https://gerrit.wikimedia.org/r/601942|r601942]])
[] Remove in #Collection T254431
[] Deprecate