-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathisBankasiConf.php
40 lines (30 loc) · 1.14 KB
/
isBankasiConf.php
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
<?php
/**
*
*
* iş bankası sanal pos (3D pay hosting) kurulumu için gerekli ayarları barınıdır.
*
* @category Sanal Pos Kurulumu
* @author Hasan Kaya <info@hasankayaa.com>
* @copyright 2021 Buhusoft
* @license http://www.php.net/license/3_01.txt PHP License 3.01
*/
class isBankasiConfClass
{
/* Satıcı bilgileri */
public const clientid = ""; //iş bankası tarafından verilen clientid.
public const storekey = ""; //storekey değeriniz
public const islemTipi = "Auth"; //işlem tipi
public const returnURL = ""; //dönüş urlsi
public const storetype = "3d_pay_hosting";
public const postURL = "https://spos.isbank.com.tr/fim/est3Dgate";
/* Adres Faturalandırma İçin */
public const firmaAdresi = ""; //firma adresi
public const firmaSehir = ""; //firma şehir
public const firmaPostaKodu = ""; //firma posta kodu
public const ulkeKodu = "90"; //ülkenin kodu, 90 = TR
public const firmaTelefon = ""; //firma telefon numarası
public const firmaAdi = ""; //firma adı
public const firmaIlce = ""; //firma İlçe
}
?>