mediawiki-extensions-Discus.../DiscussionTools.magic.php
Ed Sanders 856b90fa3e Support hiding reply links in archived pages or sections
This can be done within sections using CSS:
* mw-archivedtalk

Or at a page level using a magic word:
* __ARCHIVEDTALK__

"archivedtalk" still detects the comments, but disables features
as appropriate for an archived conversion, i.e. the reply tool.

Bug: T295553
Bug: T249293
Change-Id: Ic47693e9a2f53f92563ccdd50203fb55c12d0493
2023-04-03 18:34:57 +02:00

8 lines
121 B
PHP

<?php
$magicWords = [];
/** English (English) */
$magicWords['en'] = [
'archivedtalk' => [ 0, '__ARCHIVEDTALK__' ],
];