for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* YouTube Live Embed plugin for Craft CMS
*
* This plugin allows you to embed a YouTube live stream and/or live chat on your webpage
* @link https://nystudio107.com
* @copyright Copyright (c) 2019 nystudio107
*/
namespace nystudio107\youtubeliveembed\models;
use craft\base\Model;
* @author nystudio107
* @package YoutubeLiveEmbed
* @since 1.0.0
class Settings extends Model
{
// Public Properties
// =========================================================================
* @var string
public $youtubeChannelId = '';
* @var bool
public $isLive = false;
// Public Methods
* @inheritdoc
public function rules()
return [
['youtubeChannelId', 'string'],
['youtubeChannelId', 'default', 'value' => ''],
['isLive', 'boolean'],
];
}