1
0
Fork 0
mirror of https://github.com/DanielnetoDotCom/YouPHPTube synced 2025-10-03 17:59:55 +02:00
Oinktube/admin/monetize_subscription.php
Caleb Mazalevskis 13eb33f6ea
Fix one typo and slightly improve readability.
- Fixes one typo ("Let users request ... must be done manually").
- Adjusts some odd array endings to slightly improve their readability.
2022-02-03 09:14:44 +08:00

17 lines
709 B
PHP

<div class="row">
<div class="col-md-12">
<div class="panel panel-default">
<div class="panel-heading"><i class="fa fa-cog"></i> Subscription Configuration </div>
<div class="panel-body" style="overflow: hidden;">
<?php
$filter = [
'displayTopBarSubscribeButton' => 'Show a button on the top to subscribe',
'displayLeftMenuSubscribeButton' => 'Show a button on the the left menu to subscribe',
'textSubscribe' => 'The button text label'
];
createTable("Subscription", $filter);
?>
</div>
</div>
</div>
</div>