| 1 |
<?php |
|---|
| 2 |
define ("WRITELOG_QUERY",false); |
|---|
| 3 |
include_once (dirname(__FILE__)."/Class.A2Billing.php"); |
|---|
| 4 |
include_once (dirname(__FILE__)."/Class.Table.php"); |
|---|
| 5 |
|
|---|
| 6 |
require_once('adodb/adodb.inc.php'); |
|---|
| 7 |
|
|---|
| 8 |
$A2B = new A2Billing(); |
|---|
| 9 |
|
|---|
| 10 |
|
|---|
| 11 |
$A2B -> load_conf($agi, AST_CONFIG_DIR."a2billing.conf", 1); |
|---|
| 12 |
|
|---|
| 13 |
|
|---|
| 14 |
define ("HOST", isset($A2B->config['database']['hostname'])?$A2B->config['database']['hostname']:null); |
|---|
| 15 |
define ("PORT", isset($A2B->config['database']['port'])?$A2B->config['database']['port']:null); |
|---|
| 16 |
define ("USER", isset($A2B->config['database']['user'])?$A2B->config['database']['user']:null); |
|---|
| 17 |
define ("PASS", isset($A2B->config['database']['password'])?$A2B->config['database']['password']:null); |
|---|
| 18 |
define ("DBNAME", isset($A2B->config['database']['dbname'])?$A2B->config['database']['dbname']:null); |
|---|
| 19 |
define ("DB_TYPE", isset($A2B->config['database']['dbtype'])?$A2B->config['database']['dbtype']:null); |
|---|
| 20 |
|
|---|
| 21 |
define ("LEN_ALIASNUMBER", isset($A2B->config['global']['len_aliasnumber'])?$A2B->config['global']['len_aliasnumber']:null); |
|---|
| 22 |
define ("LEN_VOUCHER", isset($A2B->config['global']['len_voucher'])?$A2B->config['global']['len_voucher']:null); |
|---|
| 23 |
define ("BASE_CURRENCY", isset($A2B->config['global']['base_currency'])?$A2B->config['global']['base_currency']:null); |
|---|
| 24 |
define ("MANAGER_HOST", isset($A2B->config['global']['manager_host'])?$A2B->config['global']['manager_host']:null); |
|---|
| 25 |
define ("MANAGER_USERNAME", isset($A2B->config['global']['manager_username'])?$A2B->config['global']['manager_username']:null); |
|---|
| 26 |
define ("MANAGER_SECRET", isset($A2B->config['global']['manager_secret'])?$A2B->config['global']['manager_secret']:null); |
|---|
| 27 |
define ("SERVER_GMT", isset($A2B->config['global']['server_GMT'])?$A2B->config['global']['server_GMT']:null); |
|---|
| 28 |
define ("CUSTOMER_UI_URL", isset($A2B->config['global']['customer_ui_url'])?$A2B->config['global']['customer_ui_url']:null); |
|---|
| 29 |
define ("SMTP_SERVER", isset($A2B->config['global']['smtp_server'])?$A2B->config['global']['smtp_server']:null); |
|---|
| 30 |
define ("SMTP_HOST", isset($A2B->config['global']['smtp_host'])?$A2B->config['global']['smtp_host']:null); |
|---|
| 31 |
define ("SMTP_USERNAME", isset($A2B->config['global']['smtp_username'])?$A2B->config['global']['smtp_username']:null); |
|---|
| 32 |
define ("SMTP_PASSWORD", isset($A2B->config['global']['smtp_password'])?$A2B->config['global']['smtp_password']:null); |
|---|
| 33 |
|
|---|
| 34 |
|
|---|
| 35 |
define('PULL_DOWN_DEFAULT', 'Please Select'); |
|---|
| 36 |
define('TYPE_BELOW', 'Type Below'); |
|---|
| 37 |
define('TEXT_CCVAL_ERROR_INVALID_DATE', gettext('The expiry date entered for the credit card is invalid.')."<br>".gettext('Please check the date and try again.')); |
|---|
| 38 |
define('TEXT_CCVAL_ERROR_INVALID_NUMBER', gettext('The credit card number entered is invalid.')."<br>".gettext('Please check the number and try again.')); |
|---|
| 39 |
define('TEXT_CCVAL_ERROR_UNKNOWN_CARD', gettext('The first four digits of the number entered are').": %s<br>".gettext('If that number is correct, we do not accept that type of credit card.')."<br>".gettext('If it is wrong, please try again.')); |
|---|
| 40 |
|
|---|
| 41 |
define('REVIEW_TEXT_MIN_LENGTH', '10'); |
|---|
| 42 |
define('CC_OWNER_MIN_LENGTH', '2'); |
|---|
| 43 |
define('CC_NUMBER_MIN_LENGTH', '15'); |
|---|
| 44 |
|
|---|
| 45 |
|
|---|
| 46 |
define('JS_ERROR', gettext('Errors have occured during the process of your form.')."\n\n".gettext('Please make the following corrections:\n\n')); |
|---|
| 47 |
define('JS_REVIEW_TEXT', gettext('* The \'Review Text\' must have at least').' ' . REVIEW_TEXT_MIN_LENGTH .' '. gettext('characters').'.\n'); |
|---|
| 48 |
define('JS_REVIEW_RATING', '* '.gettext('You must rate the product for your review.').'\n'); |
|---|
| 49 |
define('JS_ERROR_NO_PAYMENT_MODULE_SELECTED', '* '.gettext('Please select a payment method for your order.').'\n'); |
|---|
| 50 |
define('JS_ERROR_SUBMITTED', gettext('This form has already been submitted. Please press Ok and wait for this process to be completed.')); |
|---|
| 51 |
define('ERROR_NO_PAYMENT_MODULE_SELECTED', gettext('Please select a payment method for your order.')); |
|---|
| 52 |
|
|---|
| 53 |
define('MODULE_PAYMENT_CC_TEXT_TITLE', gettext('Credit Card')); |
|---|
| 54 |
define('MODULE_PAYMENT_CC_TEXT_DESCRIPTION', gettext('Credit Card Test Info').':<br><br>CC#: 4111111111111111<br>'.gettext('Expiry: Any')); |
|---|
| 55 |
define('MODULE_PAYMENT_CC_TEXT_CREDIT_CARD_TYPE', gettext('Credit Card Type').':'); |
|---|
| 56 |
define('MODULE_PAYMENT_CC_TEXT_CREDIT_CARD_OWNER', gettext('Credit Card Owner').':'); |
|---|
| 57 |
define('MODULE_PAYMENT_CC_TEXT_CREDIT_CARD_NUMBER', gettext('Credit Card Number').':'); |
|---|
| 58 |
define('MODULE_PAYMENT_CC_TEXT_CREDIT_CARD_EXPIRES', gettext('Credit Card Expiry Date').':'); |
|---|
| 59 |
define('MODULE_PAYMENT_CC_TEXT_JS_CC_OWNER', gettext('* The owner\'s name of the credit card must be at least').' '. CC_OWNER_MIN_LENGTH .' '.gettext('characters').'.\n'); |
|---|
| 60 |
define('MODULE_PAYMENT_CC_TEXT_JS_CC_NUMBER', gettext('* The credit card number must be at least').' ' . CC_NUMBER_MIN_LENGTH . ' '.gettext('characters').'.\n'); |
|---|
| 61 |
define('MODULE_PAYMENT_CC_TEXT_ERROR', gettext('Credit Card Error!')); |
|---|
| 62 |
|
|---|
| 63 |
define('MODULE_PAYMENT_IPAYMENT_TEXT_TITLE', 'iPayment'); |
|---|
| 64 |
define('MODULE_PAYMENT_IPAYMENT_TEXT_DESCRIPTION', gettext('Credit Card Test Info').':<br><br>CC#: 4111111111111111<br>'.gettext('Expiry: Any')); |
|---|
| 65 |
define('IPAYMENT_ERROR_HEADING', gettext('There has been an error processing your credit card')); |
|---|
| 66 |
define('IPAYMENT_ERROR_MESSAGE', gettext('Please check your credit card details!')); |
|---|
| 67 |
define('MODULE_PAYMENT_IPAYMENT_TEXT_CREDIT_CARD_OWNER', gettext('Credit Card Owner:')); |
|---|
| 68 |
define('MODULE_PAYMENT_IPAYMENT_TEXT_CREDIT_CARD_NUMBER', gettext('Credit Card Number:')); |
|---|
| 69 |
define('MODULE_PAYMENT_IPAYMENT_TEXT_CREDIT_CARD_EXPIRES', gettext('Credit Card Expiry Date:')); |
|---|
| 70 |
define('MODULE_PAYMENT_IPAYMENT_TEXT_CREDIT_CARD_CHECKNUMBER', gettext('Credit Card Checknumber:')); |
|---|
| 71 |
define('MODULE_PAYMENT_IPAYMENT_TEXT_CREDIT_CARD_CHECKNUMBER_LOCATION', gettext('(located at the back of the credit card)')); |
|---|
| 72 |
define('MODULE_PAYMENT_IPAYMENT_TEXT_JS_CC_OWNER', gettext('* The owner\'s name of the credit card must be at least').' ' . CC_OWNER_MIN_LENGTH . ' '.gettext('characters.').'\n'); |
|---|
| 73 |
define('MODULE_PAYMENT_IPAYMENT_TEXT_JS_CC_NUMBER', gettext('* The credit card number must be at least').' ' . CC_NUMBER_MIN_LENGTH .' '.gettext('characters').'\n'); |
|---|
| 74 |
|
|---|
| 75 |
define ("EPAYMENT_PURCHASE_AMOUNT", isset($A2B->config['epayment_method']['purchase_amount'])?$A2B->config['epayment_method']['purchase_amount']:null); |
|---|
| 76 |
|
|---|
| 77 |
|
|---|
| 78 |
define ("EMAIL_ADMIN", isset($A2B->config['webui']['email_admin'])?$A2B->config['webui']['email_admin']:null); |
|---|
| 79 |
define ("NUM_MUSICONHOLD_CLASS", isset($A2B->config['webui']['num_musiconhold_class'])?$A2B->config['webui']['num_musiconhold_class']:null); |
|---|
| 80 |
define ("SHOW_HELP", isset($A2B->config['webui']['show_help'])?$A2B->config['webui']['show_help']:null); |
|---|
| 81 |
define ("MY_MAX_FILE_SIZE_IMPORT", isset($A2B->config['webui']['my_max_file_size_import'])?$A2B->config['webui']['my_max_file_size_import']:null); |
|---|
| 82 |
define ("MY_MAX_FILE_SIZE", isset($A2B->config['webui']['my_max_file_size'])?$A2B->config['webui']['my_max_file_size']:null); |
|---|
| 83 |
define ("DIR_STORE_MOHMP3",isset($A2B->config['webui']['dir_store_mohmp3'])?$A2B->config['webui']['dir_store_mohmp3']:null); |
|---|
| 84 |
define ("DIR_STORE_AUDIO", isset($A2B->config['webui']['dir_store_audio'])?$A2B->config['webui']['dir_store_audio']:null); |
|---|
| 85 |
define ("MY_MAX_FILE_SIZE_AUDIO", isset($A2B->config['webui']['my_max_file_size_audio'])?$A2B->config['webui']['my_max_file_size_audio']:null); |
|---|
| 86 |
$file_ext_allow = isset($A2B->config['webui']['file_ext_allow'])?$A2B->config['webui']['file_ext_allow']:null; |
|---|
| 87 |
$file_ext_allow_musiconhold = isset($A2B->config['webui']['file_ext_allow_musiconhold'])?$A2B->config['webui']['file_ext_allow_musiconhold']:null; |
|---|
| 88 |
define ("LINK_AUDIO_FILE", isset($A2B->config['webui']['link_audio_file'])?$A2B->config['webui']['link_audio_file']:null); |
|---|
| 89 |
define ("MONITOR_PATH", isset($A2B->config['webui']['monitor_path'])?$A2B->config['webui']['monitor_path']:null); |
|---|
| 90 |
define ("MONITOR_FORMATFILE", isset($A2B->config['webui']['monitor_formatfile'])?$A2B->config['webui']['monitor_formatfile']:null); |
|---|
| 91 |
define ("SHOW_ICON_INVOICE", isset($A2B->config['webui']['show_icon_invoice'])?$A2B->config['webui']['show_icon_invoice']:null); |
|---|
| 92 |
define ("SHOW_TOP_FRAME", isset($A2B->config['webui']['show_top_frame'])?$A2B->config['webui']['show_top_frame']:null); |
|---|
| 93 |
define ("ADVANCED_MODE", isset($A2B->config['webui']['advanced_mode'])?$A2B->config['webui']['advanced_mode']:null); |
|---|
| 94 |
define ("CURRENCY_CHOOSE", isset($A2B->config['webui']['currency_choose'])?$A2B->config['webui']['currency_choose']:null); |
|---|
| 95 |
|
|---|
| 96 |
|
|---|
| 97 |
define ("PAYPAL_EMAIL", isset($A2B->config['paypal']['paypal_email'])?$A2B->config['paypal']['paypal_email']:null); |
|---|
| 98 |
define ("PAYPAL_FROM_EMAIL",isset( $A2B->config['paypal']['from_email'])?$A2B->config['paypal']['from_email']:null); |
|---|
| 99 |
define ("PAYPAL_FROM_NAME", isset($A2B->config['paypal']['from_name'])?$A2B->config['paypal']['from_name']:null); |
|---|
| 100 |
define ("PAYPAL_COMPANY_NAME", isset($A2B->config['paypal']['company_name'])?$A2B->config['paypal']['company_name']:null); |
|---|
| 101 |
define ("PAYPAL_ERROR_EMAIL", isset($A2B->config['paypal']['error_email'])?$A2B->config['paypal']['error_email']:null); |
|---|
| 102 |
define ("PAYPAL_ITEM_NAME", isset($A2B->config['paypal']['item_name'])?$A2B->config['paypal']['item_name']:null); |
|---|
| 103 |
define ("PAYPAL_CURRENCY_CODE", isset($A2B->config['paypal']['currency_code'])?$A2B->config['paypal']['currency_code']:null); |
|---|
| 104 |
define ("PAYPAL_NOTIFY_URL", isset($A2B->config['paypal']['notify_url'])?$A2B->config['paypal']['notify_url']:null); |
|---|
| 105 |
define ("PAYPAL_PURCHASE_AMOUNT", isset($A2B->config['paypal']['purchase_amount'])?$A2B->config['paypal']['purchase_amount']:null); |
|---|
| 106 |
define ("PAYPAL_LOGFILE", isset($A2B->config['paypal']['paypal_logfile'])?$A2B->config['paypal']['paypal_logfile']:null); |
|---|
| 107 |
|
|---|
| 108 |
|
|---|
| 109 |
define ("SIGNUP_LINK", isset($A2B->config["webcustomerui"]['signup_page_url'])?$A2B->config["webcustomerui"]['signup_page_url']:null); |
|---|
| 110 |
define ("ACTIVATEDBYUSER", isset($A2B->config["signup"]['activatedbyuser'])?$A2B->config["signup"]['activatedbyuser']:null); |
|---|
| 111 |
define ("RETURN_URL_DISTANT_LOGIN", isset($A2B->config["webcustomerui"]['return_url_distant_login'])?$A2B->config["webcustomerui"]['return_url_distant_login']:null); |
|---|
| 112 |
define ("RETURN_URL_DISTANT_FORGETPASSWORD", isset($A2B->config["webcustomerui"]['return_url_distant_forgetpassword'])?$A2B->config["webcustomerui"]['return_url_distant_forgetpassword']:null); |
|---|
| 113 |
|
|---|
| 114 |
|
|---|
| 115 |
define ("FSROOT", substr(dirname(__FILE__),0,-3)); |
|---|
| 116 |
define ("LIBDIR", FSROOT."lib/"); |
|---|
| 117 |
include (FSROOT."lib/Misc.php"); |
|---|
| 118 |
include (FSROOT."lib/interface/constants.php"); |
|---|
| 119 |
|
|---|
| 120 |
|
|---|
| 121 |
include_once (FSROOT."lib/mail/class.phpmailer.php"); |
|---|
| 122 |
|
|---|
| 123 |
|
|---|
| 124 |
|
|---|
| 125 |
|
|---|
| 126 |
$PHP_SELF = $_SERVER["PHP_SELF"]; |
|---|
| 127 |
|
|---|
| 128 |
$CURRENT_DATETIME = date("Y-m-d H:i:s"); |
|---|
| 129 |
|
|---|
| 130 |
|
|---|
| 131 |
|
|---|
| 132 |
|
|---|
| 133 |
|
|---|
| 134 |
getpost_ifset(array('form_action', 'atmenu', 'action', 'stitle', 'sub_action', 'IDmanager', 'current_page', 'order', 'sens', 'mydisplaylimit', 'filterprefix', 'language', 'cssname', 'exporttype')); |
|---|
| 135 |
|
|---|
| 136 |
|
|---|
| 137 |
if (!isset($_SESSION)) { |
|---|
| 138 |
session_start(); |
|---|
| 139 |
} |
|---|
| 140 |
|
|---|
| 141 |
|
|---|
| 142 |
if (isset($language)) { |
|---|
| 143 |
$_SESSION["language"] = $language; |
|---|
| 144 |
} elseif (!isset($_SESSION["language"])) { |
|---|
| 145 |
$_SESSION["language"]='english'; |
|---|
| 146 |
} |
|---|
| 147 |
|
|---|
| 148 |
define ("LANGUAGE",$_SESSION["language"]); |
|---|
| 149 |
define ("BINDTEXTDOMAIN", '../common/cust_ui_locale'); |
|---|
| 150 |
require("languageSettings.php"); |
|---|
| 151 |
SetLocalLanguage(); |
|---|
| 152 |
|
|---|
| 153 |
|
|---|
| 154 |
|
|---|
| 155 |
|
|---|
| 156 |
|
|---|
| 157 |
|
|---|
| 158 |
function DbConnect($db= NULL) |
|---|
| 159 |
{ |
|---|
| 160 |
$ADODB_CACHE_DIR = '/tmp'; |
|---|
| 161 |
|
|---|
| 162 |
|
|---|
| 163 |
if (DB_TYPE == "postgres"){ |
|---|
| 164 |
$datasource = 'pgsql://'.USER.':'.PASS.'@'.HOST.'/'.DBNAME; |
|---|
| 165 |
}else{ |
|---|
| 166 |
$datasource = 'mysql://'.USER.':'.PASS.'@'.HOST.'/'.DBNAME; |
|---|
| 167 |
} |
|---|
| 168 |
|
|---|
| 169 |
$DBHandle = NewADOConnection($datasource); |
|---|
| 170 |
if (!$DBHandle) die("Connection failed"); |
|---|
| 171 |
|
|---|
| 172 |
return $DBHandle; |
|---|
| 173 |
} |
|---|
| 174 |
|
|---|
| 175 |
function DbDisconnect($DBHandle) |
|---|
| 176 |
{ |
|---|
| 177 |
$DBHandle ->disconnect(); |
|---|
| 178 |
} |
|---|
| 179 |
|
|---|
| 180 |
|
|---|
| 181 |
if(isset($cssname) && $cssname != "") |
|---|
| 182 |
{ |
|---|
| 183 |
if ($_SESSION["stylefile"]!=$cssname){ |
|---|
| 184 |
foreach (glob("./templates_c/*.*") as $filename) |
|---|
| 185 |
{ |
|---|
| 186 |
unlink($filename); |
|---|
| 187 |
} |
|---|
| 188 |
} |
|---|
| 189 |
$_SESSION["stylefile"] = $cssname; |
|---|
| 190 |
} |
|---|
| 191 |
|
|---|
| 192 |
if(!isset($_SESSION["stylefile"]) || $_SESSION["stylefile"]==''){ |
|---|
| 193 |
$_SESSION["stylefile"]='default'; |
|---|
| 194 |
} |
|---|
| 195 |
|
|---|
| 196 |
|
|---|
| 197 |
define ("HTTP_SERVER", isset($A2B->config["epayment_method"]['http_server'])?$A2B->config["epayment_method"]['http_server']:null); |
|---|
| 198 |
define ("HTTPS_SERVER", isset($A2B->config["epayment_method"]['https_server'])?$A2B->config["epayment_method"]['https_server']:null); |
|---|
| 199 |
define ("HTTP_COOKIE_DOMAIN", isset($A2B->config["epayment_method"]['http_cookie_domain'])?$A2B->config["epayment_method"]['http_cookie_domain']:null); |
|---|
| 200 |
define ("HTTPS_COOKIE_DOMAIN", isset($A2B->config["epayment_method"]['https_cookie_domain'])?$A2B->config["epayment_method"]['https_cookie_domain']:null); |
|---|
| 201 |
define ("HTTP_COOKIE_PATH", isset($A2B->config["epayment_method"]['http_cookie_path'])?$A2B->config["epayment_method"]['http_cookie_path']:null); |
|---|
| 202 |
define ("HTTPS_COOKIE_PATH", isset($A2B->config["epayment_method"]['https_cookie_path'])?$A2B->config["epayment_method"]['https_cookie_path']:null); |
|---|
| 203 |
define ("DIR_WS_HTTP_CATALOG", isset($A2B->config["epayment_method"]['dir_ws_http_catalog'])?$A2B->config["epayment_method"]['dir_ws_http_catalog']:null); |
|---|
| 204 |
define ("DIR_WS_HTTPS_CATALOG", isset($A2B->config["epayment_method"]['dir_ws_https_catalog'])?$A2B->config["epayment_method"]['dir_ws_https_catalog']:null); |
|---|
| 205 |
define ("ENABLE_SSL", isset($A2B->config["epayment_method"]['enable_ssl'])?$A2B->config["epayment_method"]['enable_ssl']:null); |
|---|
| 206 |
define ("EPAYMENT_TRANSACTION_KEY", isset($A2B->config["epayment_method"]['transaction_key'])?$A2B->config["epayment_method"]['transaction_key']:null); |
|---|
| 207 |
define ("PAYPAL_VERIFY_URL", isset($A2B->config["epayment_method"]['paypal_verify_url'])?$A2B->config["epayment_method"]['paypal_verify_url']:null); |
|---|
| 208 |
define ("MONEYBOOKERS_SECRETWORD", isset($A2B->config["epayment_method"]['moneybookers_secretword'])?$A2B->config["epayment_method"]['moneybookers_secretword']:null); |
|---|
| 209 |
|
|---|
| 210 |
|
|---|
| 211 |
define ("SIP_IAX_INFO_TRUNKNAME",isset($A2B->config['sip-iax-info']['sip_iax_info_trunkname'])?$A2B->config['sip-iax-info']['sip_iax_info_trunkname']:null); |
|---|
| 212 |
define ("SIP_IAX_INFO_ALLOWCODEC",isset($A2B->config['sip-iax-info']['sip_iax_info_allowcodec'])?$A2B->config['sip-iax-info']['sip_iax_info_allowcodec']:null); |
|---|
| 213 |
define ("SIP_IAX_INFO_HOST",isset($A2B->config['sip-iax-info']['sip_iax_info_host'])?$A2B->config['sip-iax-info']['sip_iax_info_host']:null); |
|---|
| 214 |
define ("IAX_ADDITIONAL_PARAMETERS",isset($A2B->config['sip-iax-info']['iax_additional_parameters'])?$A2B->config['sip-iax-info']['iax_additional_parameters']:null); |
|---|
| 215 |
define ("SIP_ADDITIONAL_PARAMETERS",isset($A2B->config['sip-iax-info']['sip_additional_parameters'])?$A2B->config['sip-iax-info']['sip_additional_parameters']:null); |
|---|
| 216 |
|
|---|
| 217 |
|
|---|
| 218 |
define ("Images_Path","./templates/".$_SESSION["stylefile"]."/images"); |
|---|
| 219 |
define ("Images_Path_Main","./templates/".$_SESSION["stylefile"]."/images"); |
|---|
| 220 |
define ("KICON_PATH","./templates/".$_SESSION["stylefile"]."/images/kicons"); |
|---|
| 221 |
define('DIR_WS_IMAGES', Images_Path.'/'); |
|---|
| 222 |
define ("INVOICE_IMAGE", isset($A2B->config["global"]['invoice_image'])?$A2B->config["global"]['invoice_image']:null); |
|---|
| 223 |
define ("ADMIN_EMAIL", isset($A2B->config["global"]['admin_email'])?$A2B->config["global"]['admin_email']:null); |
|---|
| 224 |
|
|---|
| 225 |
|
|---|
| 226 |
define ("WEBUI_DATE", 'Release : no date'); |
|---|
| 227 |
define ("WEBUI_VERSION", 'Asterisk2Billing - Version 1.4 - Trunk'); |
|---|
| 228 |
|
|---|
| 229 |
define ("TEXTCONTACT", gettext("This software has been created by Areski under GPL licence. For futher information, feel free to contact me:")); |
|---|
| 230 |
define ("EMAILCONTACT", "areski@gmail.com"); |
|---|
| 231 |
define ("COPYRIGHT", gettext(" This software is under GPL licence. For further information, please visit : <a href=\"http://www.asterisk2billing.org\" target=\"_blank\">asterisk2billing.org</a>")); |
|---|
| 232 |
define ("CCMAINTITLE", gettext("Asterisk2Billing : CallingCard & VOIP Billing system")); |
|---|
| 233 |
|
|---|
| 234 |
include ("help.php"); |
|---|
| 235 |
|
|---|
| 236 |
define ("ENABLE_LOG", 0); |
|---|
| 237 |
|
|---|
| 238 |
|
|---|