bigintval(getConfig('wernis_min_payout')), 'min_withdraw' => bigintval(getConfig('wernis_min_withdraw')), 'api_id' => bigintval(getConfig('wernis_api_id')), 'api_md5' => getConfig('wernis_api_md5'), 'api_url' => getConfig('wernis_api_url'), 'refid' => bigintval(getConfig('wernis_refid')), 'payout_factor' => TRANSLATE_COMMA(getConfig('wernis_payout_factor')), 'withdraw_factor' => TRANSLATE_COMMA(getConfig('wernis_withdraw_factor')), 'payout_fee_percent' => TRANSLATE_COMMA(getConfig('wernis_payout_fee_percent')), 'withdraw_fee_percent' => TRANSLATE_COMMA(getConfig('wernis_withdraw_fee_percent')), 'payout_fee_fix' => bigintval(getConfig('wernis_payout_fee_fix')), 'withdraw_fee_fix' => bigintval(getConfig('wernis_withdraw_fee_fix')) ); // Prepare payout Y/N selection if (getConfig('wernis_payout_active') == "Y") { // Payout allowed define('__CFG_WERNIS_PAYOUT_ACTIVE_Y', " checked=\"checked\""); define('__CFG_WERNIS_PAYOUT_ACTIVE_N', ""); } else { // Payout disabled define('__CFG_WERNIS_PAYOUT_ACTIVE_Y', ""); define('__CFG_WERNIS_PAYOUT_ACTIVE_N', " checked=\"checked\""); } // Prepare withdraw Y/N selection if (getConfig('wernis_withdraw_active') == "Y") { // Payout allowed define('__CFG_WERNIS_WITHDRAW_ACTIVE_Y', " checked=\"checked\""); define('__CFG_WERNIS_WITHDRAW_ACTIVE_N', ""); } else { // Payout disabled define('__CFG_WERNIS_WITHDRAW_ACTIVE_Y', ""); define('__CFG_WERNIS_WITHDRAW_ACTIVE_N', " checked=\"checked\""); } // Load template LOAD_TEMPLATE("admin_config_wernis", false, $content); } // ?>