Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我写了一个扩展来MediaWiki为图像创建幻灯片。
MediaWiki
问题是,虽然图像在幻灯片中使用它并没有显示它正在文件页面上使用。如何将页面引用添加到File Usage部分?
File Usage
您需要将图像添加到 ParserOutput 对象中的图像列表中。您可以通过调用获取 ParserOutput 对象$parser->getOutput(),并使用 向其中添加图像$parserOutput->addImage( $name )。
$parser->getOutput()
$parserOutput->addImage( $name )