0byt3m1n1
Path:
/
data
/
17
/
1
/
18
/
11
/
1670011
/
user
/
1801231
/
htdocs
/
affiliates_8mor
/
includes
/
[
Home
]
File: custom.comm.CUSTOM.php
<?php ##################################################################################### ## JROX.COM Affiliate Manager - custom.comm.php file ## Version 1.6.2 ## ## Author: Ryan Roxas(ryan@jrox.com) ## Homepage: http://jam.jrox.com ## Bug Reports: http://jam.jrox.com/bugzilla/ ## Release Notes: docs/READ_ME.txt ####################################################################################### ####################################################################################### ## COPYRIGHT NOTICE ## Copyright 2007 JROX Technologies, Inc. All Rights Reserved. ## ## This script may be only used and modified in accordance to the license ## agreement attached (license.txt) except where expressly noted within ## commented areas of the code body. This copyright notice and the ## comments above and below must remain intact at all times. By using this ## code you agree to indemnify JROX Technologies, Inc, its corporate agents ## and affiliates from any liability that might arise from its use. ## ## Selling the code for this program without prior written consent is ## expressly forbidden and in violation of Domestic and International ## copyright laws. ####################################################################################### ####################################################################################### ## This file is used for editing the commission amounts with other calculations ####################################################################################### if (!defined('JROX')) die('Error'); /* ===================================================================================== This file allows you to edit the actual commission amounts with any custom calculations that you need. Variables availabe here: $commission_level $commission_amount $sale_amount ===================================================================================== */ //Set JAM Variables //This is the secret word set in Settings > Signup Settings > Auto Signup Secret Word $JAM_Secret = "autosignupsecretword"; /* Examples of use: //To subtract 1.5 percent from affiliate commission: $commission_amount = $commission_amount - ($commission_amount * ".015"); //To subtract $2.99 from affiliate commission: $commission_amount = $commission_amount - "2.99"; */ ?>