1
0
Fork 0
mirror of https://github.com/DanielnetoDotCom/YouPHPTube synced 2025-10-05 02:39:46 +02:00

Add option to swap video content.

Basically it changes the filename of 2 videos.
This commit is contained in:
daniel 2020-03-27 12:35:21 -03:00
parent 08b49d1601
commit 3693b8ecaa
18 changed files with 423 additions and 80 deletions

View file

@ -37,6 +37,7 @@ class CustomizeAdvanced extends PluginAbstract {
$obj->encoderNetworkLabel = "";
$obj->doNotShowUploadMP4Button = true;
$obj->disablePDFUpload = false;
$obj->disableMP4Upload = false;
$obj->uploadMP4ButtonLabel = "";
$obj->doNotShowImportMP4Button = true;
$obj->importMP4ButtonLabel = "";
@ -110,6 +111,7 @@ class CustomizeAdvanced extends PluginAbstract {
$obj->doNotDisplayGroupsTags = false;
$obj->doNotDisplayPluginsTags = false;
$obj->showNotRatedLabel = false;
$obj->showShareMenuOpenByDefault = false;
$obj->askRRatingConfirmationBeforePlay_G = false;
$obj->askRRatingConfirmationBeforePlay_PG = false;
$obj->askRRatingConfirmationBeforePlay_PG13 = false;
@ -144,6 +146,7 @@ class CustomizeAdvanced extends PluginAbstract {
$obj->enableOldPassHashCheck = true;
$obj->disableHTMLDescription = false;
$obj->disableTopMenusInsideIframe = true;
$obj->disableVideoSwap = false;
return $obj;
}