bhq@iemsoft.cn
2018-11-27 e2b48dac099e43f4b3243cdf19a7522e4b5eccbe
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<?php
 
/**
  余额支付插件
 * ============================================================================
 * * 
 
 * ----------------------------------------------------------------------------
 
 * ============================================================================
 
 * $Id: balance.php 17217 2011-01-19 06:29:08Z  $
 */
 
if (!defined('IN_ECS'))
{
    die('Hacking attempt');
}
 
$payment_lang = ROOT_PATH . 'languages/' .$GLOBALS['_CFG']['lang']. '/payment/balance.php';
 
if (file_exists($payment_lang))
{
    global $_LANG;
 
    include_once($payment_lang);
}
 
/* 模块的基本信息 */
if (isset($set_modules) && $set_modules == TRUE)
{
    $i = isset($modules) ? count($modules) : 0;
 
    /* 代码 */
    $modules[$i]['code']    = basename(__FILE__, '.php');
 
    /* 描述对应的语言项 */
    $modules[$i]['desc']    = 'balance_desc';
 
    /* 是否货到付款 */
    $modules[$i]['is_cod']  = '0';
 
    /* 是否支持在线支付 */
    $modules[$i]['is_online']  = '1';
 
    /* 作者 */
    $modules [$i] ['author'] = 'DM299';
    
    /* 网址 */
    $modules [$i] ['website'] = 'http://www.dm299.com';
 
    /* 版本号 */
    $modules[$i]['version'] = '1.0.0';
 
    /* 配置信息 */
    $modules[$i]['config']  = array();
 
    return;
}
 
/**
 * 类
 */
class balance
{
    /**
     * 构造函数
     *
     * @access  public
     * @param
     *
     * @return void
     */
    function balance()
    {
    }
 
    function __construct()
    {
        $this->balance();
    }
 
    /**
     * 提交函数
     */
    function get_code()
    {
        return '';
    }
 
    /**
     * 处理函数
     */
    function response()
    {
        return;
    }
}
 
?>