Subversion-Projekte lars-tiefland.php_share

Revision

Details | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
1 lars 1
<?PHP
2
$devId  = '';
3
 
4
$appId  = '';
5
 
6
$certId = '';
7
 
8
$username = '';
9
 
10
$password = '';
11
 
12
$token = '';
13
 
14
if ($devId === '') {
15
    if (file_exists('config-local.php')) {
16
    	require_once 'config-local.php';
17
    }
18
}
19
if ($devId === '') {
20
 
21
    echo 'In order to use Services_Ebay, you must specify devId, appId, certId and a token.<br />';
22
    echo 'Please register at <a href="http://developer.ebay.com">http://developer.ebay.com</a> to get this IDs and then modify examples/config.php<br />';
23
    exit();
24
}
25
?>