Unfinished website for an EVE-online corporation
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

common.php 387B

12345678910
  1. <?PHP
  2. require_once(dirname(dirname(__FILE__)) . '/modules/pheal/Pheal.php');
  3. spl_autoload_register("Pheal::classload");
  4. PhealConfig::getInstance()->api_base = 'https://api.eveonline.com/';
  5. PhealConfig::getInstance()->cache = new PhealFileCache(dirname(dirname(__FILE__)) . '/cache/');
  6. PhealConfig::getInstance()->log = new PhealFileLog(dirname(dirname(__FILE__)) . '/logs/');
  7. ?>