config.php
上传用户:snow1005
上传日期:2015-11-10
资源大小:3151k
文件大小:1k
源码类别:

Ajax

开发平台:

JavaScript

  1. <?php
  2. /*
  3.  * qWikiOffice Desktop 0.8.1
  4.  * Copyright(c) 2007-2008, Integrated Technologies, Inc.
  5.  * licensing@qwikioffice.com
  6.  * 
  7.  * http://www.qwikioffice.com/license
  8.  */
  9. // If you want all Error Reporting on, use this:
  10. //ini_set('display_errors',1);
  11. //error_reporting(E_ALL|E_STRICT);
  12. // If you want to see Warning Messages and not Notice Messages, use this:
  13. //ini_set('display_errors',1);
  14. //error_reporting(E_ALL);
  15. // If you want all Error Reporting off, use this:
  16. error_reporting(0);
  17. class config {
  18. // document root
  19. public $DOCUMENT_ROOT = '';
  20. // directories
  21. public $MODULES_DIR = 'system/modules/';
  22. public $THEMES_DIR = 'resources/themes/';
  23. public $WALLPAPERS_DIR = 'resources/wallpapers/';
  24. // login url
  25. public $LOGIN_URL = 'login.html';
  26. // local database
  27. public $DB_HOST = 'localhost';
  28. public $DB_USERNAME = 'root';
  29. public $DB_PASSWORD = '';
  30. public $DB_NAME = 'qwikioffice-distro';
  31. public function __construct(){
  32. $_SERVER['DOCUMENT_ROOT'] = str_replace('\', '/', getcwd());
  33. $this->DOCUMENT_ROOT = $_SERVER['DOCUMENT_ROOT'].'/';
  34. }
  35. }
  36. ?>