Issues (199)

src/config.php (7 issues)

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
The tag in position 1 should be the @copyright tag
Loading history...
8
 * @copyright Copyright (c) 2019 nystudio107
0 ignored issues
show
@copyright tag must contain a year and the name of the copyright holder
Loading history...
9
 */
0 ignored issues
show
PHP version not specified
Loading history...
Missing @category tag in file comment
Loading history...
Missing @package tag in file comment
Loading history...
Missing @author tag in file comment
Loading history...
Missing @license tag in file comment
Loading history...
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