1 | <?php |
||
2 | /** |
||
3 | * YouTube Live Embed plugin for Craft CMS |
||
4 | * |
||
5 | * This plugin allows you to embed a YouTube live stream and/or live chat on your webpage |
||
6 | * |
||
7 | * @link https://nystudio107.com |
||
0 ignored issues
–
show
Coding Style
introduced
by
![]() |
|||
8 | * @copyright Copyright (c) 2019 nystudio107 |
||
0 ignored issues
–
show
|
|||
9 | */ |
||
0 ignored issues
–
show
|
|||
10 | |||
11 | /** |
||
12 | * YouTube Live Embed config.php |
||
13 | * |
||
14 | * This file exists only as a template for the YouTube Live Embed settings. |
||
15 | * It does nothing on its own. |
||
16 | * |
||
17 | * Don't edit this file, instead copy it to 'craft/config' as 'youtubeliveembed.php' |
||
18 | * and make your changes there to override default settings. |
||
19 | * |
||
20 | * Once copied to 'craft/config', this file will be multi-environment aware as |
||
21 | * well, so you can have different settings groups for each environment, just as |
||
22 | * you do for 'general.php' |
||
23 | */ |
||
24 | |||
25 | return [ |
||
26 | // YouTube Channel ID |
||
27 | "youtubeChannelId" => '', |
||
28 | "isLive" => false, |
||
29 | ]; |
||
30 |