[UpDate] For my Premium System

03/14/2013 09:05 DexterSK#1
Hi epvp :D
Today i want release mini update for my Premium system for Hen! cms.


What it's is?

Button ,,Buy" for buy premium from ItemShop show when ,, your coins >= price"

Screen:
[Only registered and activated users can see links. Click Here To Register...]

How to?

Step 1: Open you'r bonus.php in pages folder.

Step 2: Find:

PHP Code:
<tr>
  <
td colspan="2" class="isBuy"><a href="index.php?s=bonus&id=1">Buy</a></td>
</
tr
Step 3: Replace With:

PHP Code:
<tr>
        <?php
        
if($_SESSION['user_coins'] >= $serverSettings['1'])
        {
            echo
'<td colspan="2" class="isBuy"><a href="index.php?s=bonus&id=1">Buy</a></td>';
        }
        else
        {
            echo
'<td colspan="2" class="isBuy"><a href="index.php?s=spenden">Buy Coins</a></td>';
        }
        
?>
        </tr>
Step 4: Find:

PHP Code:
<tr>
  <
td colspan="2" class="isBuy"><a href="index.php?s=bonus&id=2">Buy</a></td>
</
tr
Step: 5: Replace with:

PHP Code:
 <tr>
        <?php
        
if($_SESSION['user_coins'] >= $serverSettings['2'])
        {
            echo
'<td colspan="2" class="isBuy"><a href="index.php?s=bonus&id=2">Buy</a></td>';
        }
        else
        {
            echo
'<td colspan="2" class="isBuy"><a href="index.php?s=spenden">Buy Coins</a></td>';
        }
        
?>
        </tr>
etc,etc,etc.. :)

that's all :)

Sorry for my bad english.
03/14/2013 09:32 plechito#2
It fits, thanks :)