コード例 #1
0
 public function __construct($config)
 {
     if (empty($config['api_host'])) {
         $config['api_host'] = 'http://www.kongregate.com/api';
     }
     $this->config = $config;
     self::$KREDS_ITEMS = $this->getGameItems();
 }
コード例 #2
0
ファイル: index.php プロジェクト: heavysixer/kompatible
<?php

error_reporting(E_ALL);
if (file_exists('config.json')) {
    $config = json_decode(file_get_contents('config.json'), true);
} else {
    print "put credentials in config.json";
    die;
}
if (isset($_REQUEST['platform']) && $_REQUEST['platform'] == "fb") {
    require_once "FacebookPlatform.php";
    $kompatible = new FacebookPlatform($config['facebook']);
} else {
    require_once "KongregatePlatform.php";
    $kompatible = new KongregatePlatform($config['kongregate']);
}
$user_id = $kompatible->login();
?>
<!doctype html>
<html xmlns:fb="http://www.facebook.com/2008/fbml">
<head>
	<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js" type="text/javascript"></script>
</head>
<?php 
echo $kompatible->loadLibraries();
?>
<body>
<?php 
echo $kompatible->displayHeader();
?>
<h1>Hello <?php