如何在UploadWizard中设置默认许可证

时间:2019-02-01 00:36:33

标签: php mediawiki mediawiki-extensions mediawiki-uploadwizard

我正在使用uploadWizard并拥有我现在想要的所有内容,但是我需要为上传器设置一个默认的许可证。我已经设置好配置

$wgUploadWizardConfig = array(
    'tutorial' => [
        'skip' => true
    ],  // Set skipTutorial to true to always skip tutorial step
    'licensing' => array(
        'ownWorkDefault' => 'own',
        'ownWork' => array(
            'type' => 'or',
            'template' => 'Template:Gwart_Creative_License', // this adds a link to Template:Licensing to the file info page
            'licenses' => array(
                'generic',
            )
        ),
    ),

);

使用我当前的默认许可证。

但这只会显示“这是我的作品”,而不显示模板Gwart_Creative_License

0 个答案:

没有答案