agent_index.php 747 B

1234567891011121314151617181920
  1. <?php
  2. // change the following paths if necessary
  3. $yii=dirname(__FILE__).'/../yii/framework/yii.php';
  4. $config=dirname(__FILE__).'/protected/config/main.php';
  5. // remove the following lines when in production mode
  6. defined('YII_DEBUG') or define('YII_DEBUG',true);
  7. // specify how many levels of call stack should be shown in each log message
  8. defined('YII_TRACE_LEVEL') or define('YII_TRACE_LEVEL',3);
  9. //这里是与乐外卖业务相关的一些定义
  10. defined('LEWAIMAI_DEBUG') or define('LEWAIMAI_DEBUG', true);
  11. defined('LEWAIMAI_VERSION') or define('LEWAIMAI_VERSION', "1.0.0.0");
  12. $define=dirname(__FILE__).'/protected/include/define.php';
  13. require_once($define);
  14. require_once($yii);
  15. Yii::createWebApplication($config)->run();