1
0
Fork 0
mirror of https://github.com/DanielnetoDotCom/YouPHPTube synced 2025-10-03 17:59:55 +02:00
Oinktube/plugin/CustomizeAdvanced/menuLeft.php
2022-07-01 12:37:13 -03:00

31 lines
798 B
PHP

<?php
$obj = AVideoPlugin::getObjectDataIfEnabled('Subscription');
?>
<li>
<hr>
<strong class="text-danger">
<i class="fas fa-filter"></i> <?php echo __("R Rating"); ?>
</strong>
<ul style="margin: 0; padding-left: 15px; list-style-type: none;">
<?php
foreach (Video::$rratingOptions as $value) {
if (empty($value)) {
$label = __("Not Rated");
$value = 0;
} else {
$label = strtoupper($value);
}
?>
<li>
<a href="<?php echo $global['webSiteRootURL']; ?>?rrating=<?php echo $value; ?>">
<?php echo $label; ?>
</a>
</li>
<?php
}
?>
</ul>
</li>