1
0
Fork 0
mirror of https://github.com/DanielnetoDotCom/YouPHPTube synced 2025-10-06 03:50:04 +02:00
Oinktube/plugin/CustomizeAdvanced/managerVideosEdit.php

18 lines
No EOL
547 B
PHP

<?php
if (Permissions::canAdminVideos()) {
?>
<br>
<div class="clearfix"></div>
<ul class="list-group">
<li class="list-group-item">
<i class="fas fa-photo-video"></i>
<?php echo __('Do NOT Show Video Ads on this video'); ?>
<div class="material-switch pull-right">
<input id="doNotShowAdsOnThisVideo" type="checkbox" value="">
<label for="doNotShowAdsOnThisVideo" class="label-danger"></label>
</div>
</li>
</ul>
<?php
}
?>