1 | <?php |
||
2 | /** |
||
3 | * Disqus plugin for Craft CMS 3.x |
||
4 | * |
||
5 | * Integrates the Disqus commenting system into Craft 3 websites, including |
||
6 | * Single Sign On (SSO) and custom login/logout URLs |
||
7 | * |
||
8 | * @link https://nystudio107.com |
||
0 ignored issues
–
show
Coding Style
introduced
by
![]() |
|||
9 | * @copyright Copyright (c) 2017 nystudio107 |
||
0 ignored issues
–
show
|
|||
10 | */ |
||
0 ignored issues
–
show
|
|||
11 | |||
12 | /** |
||
13 | * Disqus config.php |
||
14 | * |
||
15 | * This file exists only as a template for the Disqus settings. |
||
16 | * It does nothing on its own. |
||
17 | * |
||
18 | * Don't edit this file, instead copy it to 'craft/config' as 'disqus.php' |
||
19 | * and make your changes there to override default settings. |
||
20 | * |
||
21 | * Once copied to 'craft/config', this file will be multi-environment aware as |
||
22 | * well, so you can have different settings groups for each environment, just as |
||
23 | * you do for 'general.php' |
||
24 | */ |
||
25 | |||
26 | return [ |
||
27 | 'disqusShortname' => '', |
||
28 | 'useSSO' => false, |
||
29 | 'disqusPublicKey' => '', |
||
30 | 'disqusSecretKey' => '', |
||
31 | 'customLogin' => false, |
||
32 | 'loginName' => '', |
||
33 | 'loginButton' => '', |
||
34 | 'loginIcon' => '', |
||
35 | 'loginUrl' => '', |
||
36 | 'loginLogoutUrl' => '', |
||
37 | 'loginWidth' => '', |
||
38 | 'loginHeight' => '', |
||
39 | ]; |
||
40 |