Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
peter-mw committed Sep 24, 2021
1 parent 934e3ff commit 2223679
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 2 deletions.
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.35
0.36
21 changes: 20 additions & 1 deletion views/white_label.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,18 +31,37 @@
<?php if (isset($key_data) and isset($key_data['status'])): ?>
<div class="callout callout-cpanel">
<?php if ($key_data['status'] == 'active'): ?>
<p><b><?php echo $key_data['rel_name']; ?></b></p>

<?php if(isset($key_data['rel_name'])) { ?>
<p><b><?php echo $key_data['rel_name']; ?></b></p>
<?php } ?>




<p>

<?php if(isset($key_data['registered_name'])) { ?>
<b><?php echo $key_data['registered_name']; ?></b>,
<?php } ?>
<?php if(isset($key_data['company_name'])) { ?>
<?php echo $key_data['company_name']; ?>
<?php } ?>


</p>
<p>
License active from
<b><?php echo date('d M Y', strtotime($key_data['reg_on'])); ?></b>
to
<b><?php echo date('d M Y', strtotime($key_data['due_on'])); ?></b>
</p>

<?php if(isset($key_data['billing_cycle'])) { ?>
<p>Billing cycle: <?php echo $key_data['billing_cycle']; ?></p>
<?php } ?>


<button name="download_userfiles" value="download_userfiles" class="btn btn-primary">Update Premium Templates</button>
<?php else: ?>
<b>
Expand Down

0 comments on commit 2223679

Please sign in to comment.