1
0
Fork 0
mirror of https://github.com/DanielnetoDotCom/YouPHPTube synced 2025-10-03 09:49:28 +02:00

Help to enable flash

This commit is contained in:
daniel 2017-09-21 23:34:56 -03:00
parent 8612c7c8be
commit 1b361034f0
2 changed files with 25 additions and 17 deletions

View file

@ -149,6 +149,21 @@ $vjsClass = "vjs-16-9";
<?php
$p->getChat($trasnmition['key']);
?>
<div class="alert alert-warning">
<?php echo __("For Live streaming is necessary enable flash on your browser."); ?>
<?php echo __("Make sure you enable flash on your browser. If you are not sure look those links:"); ?>
<a href="https://helpx.adobe.com/flash-player/kb/enabling-flash-player-chrome.html" target="_blank" class="btn btn-warning">
<i class="fa fa-chrome"></i> Chrome Users
</a>
<a href="https://helpx.adobe.com/flash-player/kb/enabling-flash-player-firefox.html" target="_blank" class="btn btn-warning">
<i class="fa fa-firefox"></i> Firefox users
</a>
<a href="https://helpx.adobe.com/flash-player/kb/install-flash-player-windows.html" target="_blank" class="btn btn-warning">
<i class="fa fa-internet-explorer"></i> IE Users
</a>
</div>
</div>
</div>
<?php

View file

@ -57,23 +57,16 @@ $video['creator'] = '<div class="pull-left"><img src="' . User::getPhoto($user_i
<div class="alert alert-warning">
<?php echo __("For Live streaming is necessary enable flash on your browser."); ?>
<?php echo __("Make sure you enable flash on your browser. If you are not sure look those links:"); ?>
<ul class="list-group">
<li class="list-group-item">
<a href="https://helpx.adobe.com/flash-player/kb/enabling-flash-player-chrome.html" target="_blank" class="btn btn-default">
<a href="https://helpx.adobe.com/flash-player/kb/enabling-flash-player-chrome.html" target="_blank" class="btn btn-warning">
<i class="fa fa-chrome"></i> Chrome Users
</a>
</li>
<li class="list-group-item">
<a href="https://helpx.adobe.com/flash-player/kb/enabling-flash-player-firefox.html" target="_blank" class="btn btn-default">
<a href="https://helpx.adobe.com/flash-player/kb/enabling-flash-player-firefox.html" target="_blank" class="btn btn-warning">
<i class="fa fa-firefox"></i> Firefox users
</a>
</li>
<li class="list-group-item">
<a href="https://helpx.adobe.com/flash-player/kb/install-flash-player-windows.html" target="_blank" class="btn btn-default">
<a href="https://helpx.adobe.com/flash-player/kb/install-flash-player-windows.html" target="_blank" class="btn btn-warning">
<i class="fa fa-internet-explorer"></i> IE Users
</a>
</li>
</ul>
</div>
<?php
include $global['systemRootPath'] . 'view/include/footer.php';