人人商城

defines.php 1.7KB

1234567891011121314151617181920212223242526
  1. <?php
  2. if (!(defined('IN_IA'))) {
  3. exit('Access Denied');
  4. }
  5. define('EWEI_SHOPV2_DEBUG', false);
  6. !(defined('EWEI_SHOPV2_PATH')) && define('EWEI_SHOPV2_PATH', IA_ROOT . '/addons/ewei_shopv2/');
  7. !(defined('EWEI_SHOPV2_CORE')) && define('EWEI_SHOPV2_CORE', EWEI_SHOPV2_PATH . 'core/');
  8. !(defined('EWEI_SHOPV2_DATA')) && define('EWEI_SHOPV2_DATA', EWEI_SHOPV2_PATH . 'data/');
  9. !(defined('EWEI_SHOPV2_VENDOR')) && define('EWEI_SHOPV2_VENDOR', EWEI_SHOPV2_PATH . 'vendor/');
  10. !(defined('EWEI_SHOPV2_CORE_WEB')) && define('EWEI_SHOPV2_CORE_WEB', EWEI_SHOPV2_CORE . 'web/');
  11. !(defined('EWEI_SHOPV2_CORE_MOBILE')) && define('EWEI_SHOPV2_CORE_MOBILE', EWEI_SHOPV2_CORE . 'mobile/');
  12. !(defined('EWEI_SHOPV2_CORE_SYSTEM')) && define('EWEI_SHOPV2_CORE_SYSTEM', EWEI_SHOPV2_CORE . 'system/');
  13. !(defined('EWEI_SHOPV2_PLUGIN')) && define('EWEI_SHOPV2_PLUGIN', EWEI_SHOPV2_PATH . 'plugin/');
  14. !(defined('EWEI_SHOPV2_PROCESSOR')) && define('EWEI_SHOPV2_PROCESSOR', EWEI_SHOPV2_CORE . 'processor/');
  15. !(defined('EWEI_SHOPV2_INC')) && define('EWEI_SHOPV2_INC', EWEI_SHOPV2_CORE . 'inc/');
  16. !(defined('EWEI_SHOPV2_URL')) && define('EWEI_SHOPV2_URL', $_W['siteroot'] . 'addons/ewei_shopv2/');
  17. !(defined('EWEI_SHOPV2_TASK_URL')) && define('EWEI_SHOPV2_TASK_URL', $_W['siteroot'] . 'addons/ewei_shopv2/core/task/');
  18. !(defined('EWEI_SHOPV2_LOCAL')) && define('EWEI_SHOPV2_LOCAL', '../addons/ewei_shopv2/');
  19. !(defined('EWEI_SHOPV2_STATIC')) && define('EWEI_SHOPV2_STATIC', EWEI_SHOPV2_URL . 'static/');
  20. !(defined('EWEI_SHOPV2_PREFIX')) && define('EWEI_SHOPV2_PREFIX', 'ewei_shop_');
  21. define("EWEI_SHOPV2_AUTH_WXAPP","http://www.pyjuhe.com");
  22. define('EWEI_SHOPV2_PLACEHOLDER', '../addons/ewei_shopv2/static/images/placeholder.png');
  23. ?>