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

55 lines
No EOL
2.3 KiB
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 channel'); ?>
<div class="material-switch pull-right">
<input id="doNotShowAdsOnThisChannel" type="checkbox" value="">
<label for="doNotShowAdsOnThisChannel" class="label-danger"></label>
</div>
</li>
<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>
<div class="clearfix"></div>
<div class="row">
<div class="col-sm-3">
<label for="created"><?php echo __("Created date and time"); ?></label>
<input type="text" id="created" class="form-control" placeholder="<?php echo __("YYYY-MM-DD HH:MM:SS"); ?>">
<small>YYYY-MM-DD hh:mm:ss</small>
</div>
<script>
$(document).ready(function () {
setupMySQLInput('#created');
});
</script>
<div class="col-sm-3">
<label for="redirectVideoCode" ><?php echo __("Redirect video code"); ?></label>
<select class="form-control last" id="redirectVideoCode" >
<option value='0'><?php echo __('Do not redirect'); ?></option>
<option value='301'>(301) <?php echo __('Moved Permanently'); ?></option>
<option value='307'>(307) <?php echo __('Temporary Redirect'); ?></option>
<option value='308'>(308) <?php echo __('Permanent Redirect'); ?></option>
</select>
</div>
<div class="col-sm-6">
<label for="redirectVideoURL"><?php echo __("Redirect URL"); ?></label>
<input type="url" id="redirectVideoURL" class="form-control" placeholder="<?php echo __("Redirect URL"); ?>">
</div>
</div>
<br>
<div class="clearfix"></div>
<?php
}
?>