Wallos v0.9
This commit is contained in:
@@ -0,0 +1,100 @@
|
||||
<?php
|
||||
|
||||
function getBillingCycle($cycle, $frequency) {
|
||||
switch ($cycle) {
|
||||
case 1:
|
||||
return $frequency == 1 ? "Daily" : $frequency . " days";
|
||||
break;
|
||||
case 2:
|
||||
return $frequency == 1 ? "Weekly" : $frequency . " weeks";
|
||||
break;
|
||||
case 3:
|
||||
return $frequency == 1 ? "Monthly" : $frequency . " months";
|
||||
break;
|
||||
case 4:
|
||||
return $frequency == 1 ? "Yearly" : $frequency . " years";
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
function getPricePerMonth($cycle, $frequency, $price) {
|
||||
switch ($cycle) {
|
||||
case 1:
|
||||
$numberOfPaymentsPerMonth = (30 / $frequency);
|
||||
return $price * $numberOfPaymentsPerMonth;
|
||||
break;
|
||||
case 2:
|
||||
$numberOfPaymentsPerMonth = (4.35 / $frequency);
|
||||
return $price * $numberOfPaymentsPerMonth;
|
||||
break;
|
||||
case 3:
|
||||
$numberOfPaymentsPerMonth = (1 / $frequency);
|
||||
return $price * $numberOfPaymentsPerMonth;
|
||||
break;
|
||||
case 4:
|
||||
$numberOfPaymentsPerMonth = (0.083 / $frequency);
|
||||
return $price * $numberOfPaymentsPerMonth;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
function getPriceConverted($price, $currency, $database) {
|
||||
$query = "SELECT rate FROM currencies WHERE id = :currency";
|
||||
$stmt = $database->prepare($query);
|
||||
$stmt->bindParam(':currency', $currency, SQLITE3_INTEGER);
|
||||
$result = $stmt->execute();
|
||||
|
||||
$exchangeRate = $result->fetchArray(SQLITE3_ASSOC);
|
||||
if ($exchangeRate === false) {
|
||||
return $price;
|
||||
} else {
|
||||
$fromRate = $exchangeRate['rate'];
|
||||
return number_format($price * $fromRate, 2);
|
||||
}
|
||||
}
|
||||
|
||||
function printSubscriptons($subscriptions, $sort, $categories) {
|
||||
if ($sort === "price") {
|
||||
usort($subscriptions, function($a, $b) {
|
||||
return $a['price'] < $b['price'] ? 1 : -1;
|
||||
});
|
||||
}
|
||||
|
||||
$currentCategory = 0;
|
||||
foreach ($subscriptions as $subscription) {
|
||||
if ($sort == "category_id" && $subscription['category_id'] != $currentCategory) {
|
||||
?>
|
||||
<div class="subscription-list-title">
|
||||
<?= $categories[$subscription['category_id']]['name'] ?>
|
||||
</div>
|
||||
<?php
|
||||
$currentCategory = $subscription['category_id'];
|
||||
}
|
||||
?>
|
||||
<div class="subscription">
|
||||
<span class="logo <?= $subscription['hidelogo'] ?>"><img src="<?= $subscription['logo'] ?>"></span>
|
||||
<span class="name <?= $subscription['hidename'] ?> <?= $subscription['resizename'] ?>"><?= $subscription['name'] ?></span>
|
||||
<span class="cycle"><?= $subscription['billing_cycle'] ?></span>
|
||||
<span class="next"><?= $subscription['next_payment'] ?></span>
|
||||
<span class="price">
|
||||
<img src="<?= $subscription['payment_method_icon'] ?>" title="Payment Method: <?= $subscription['payment_method_name'] ?>"/>
|
||||
<?= $subscription['price'] ?><?= $subscription['currency'] ?>
|
||||
</span>
|
||||
<span class="actions">
|
||||
<button class="image-button medium" onClick="openEditSubscription(<?= $subscription['id'] ?>)" name="edit">
|
||||
<img src="images/siteicons/edit.png" title="Edit subscription">
|
||||
</button>
|
||||
</span>
|
||||
</div>
|
||||
<?php
|
||||
}
|
||||
}
|
||||
|
||||
$query = "SELECT main_currency FROM user WHERE id = 1";
|
||||
$stmt = $db->prepare($query);
|
||||
$result = $stmt->execute();
|
||||
$row = $result->fetchArray(SQLITE3_ASSOC);
|
||||
$mainCurrencyId = $row['main_currency'];
|
||||
|
||||
?>
|
||||
Reference in New Issue
Block a user