Puppet Class: role::relatedarticles

Defined in:
puppet/modules/role/manifests/relatedarticles.pp

Overview

Class: role::relatedarticles

Installs the RelatedArticles extension which shows some related articles (based on content similarity, can be overriden via a parser tag).



7
8
9
10
11
12
13
14
15
# File 'puppet/modules/role/manifests/relatedarticles.pp', line 7

class role::relatedarticles {
    mediawiki::extension { 'RelatedArticles':
        settings => {
            wgRelatedArticlesShowInSidebar   => false,
            wgRelatedArticlesShowInFooter    => true,
            wgRelatedArticlesUseCirrusSearch => true,
        }
    }
}