-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
16e2635
commit aebf4d7
Showing
2 changed files
with
109 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,86 @@ | ||
<?php | ||
|
||
/** | ||
* @author Félix Girault <felix.girault@gmail.com> | ||
* @license FreeBSD License (http://opensource.org/licenses/BSD-2-Clause) | ||
*/ | ||
namespace Multiplayer; | ||
|
||
|
||
|
||
/** | ||
* A set of generic parameters. | ||
*/ | ||
class Param { | ||
|
||
/** | ||
* Whether or not to start the video when it is loaded. | ||
* | ||
* @var string | ||
*/ | ||
const autoPlay = 'autoPlay'; | ||
|
||
|
||
|
||
/** | ||
* | ||
* | ||
* @var string | ||
*/ | ||
const showInfos = 'showInfos'; | ||
|
||
|
||
|
||
/** | ||
* | ||
* | ||
* @var string | ||
*/ | ||
const showBranding = 'showBranding'; | ||
|
||
|
||
|
||
/** | ||
* Whether or not to show related videos at the end. | ||
* | ||
* @var string | ||
*/ | ||
const showRelated = 'showRelated'; | ||
|
||
|
||
|
||
/** | ||
* Hex code of the player's background color. | ||
* | ||
* @var string | ||
*/ | ||
const backgroundColor = 'backgroundColor'; | ||
|
||
|
||
|
||
/** | ||
* Hex code of the player's foreground color. | ||
* | ||
* @var string | ||
*/ | ||
const foregroundColor = 'foregroundColor'; | ||
|
||
|
||
|
||
/** | ||
* Hex code of the player's highlight color. | ||
* | ||
* @var string | ||
*/ | ||
const highlightColor = 'highlightColor'; | ||
|
||
|
||
|
||
/** | ||
* The number of seconds at which the video must start. | ||
* | ||
* @var string | ||
*/ | ||
const start = 'start'; | ||
|
||
} |