debug.php 551 B

1234567891011121314151617181920
  1. <?php
  2. helper::import('../../control.php');
  3. class myIm extends im
  4. {
  5. /**
  6. * Debug xuanxuan.
  7. *
  8. * @access public
  9. * @return void
  10. */
  11. public function debug($source = 'x_php')
  12. {
  13. $this->view->title = $this->lang->im->debug;
  14. $this->view->source = $source;
  15. $this->view->xxdStatus = $this->im->getXxdStatus();
  16. $this->view->checkXXBConfig = $this->im->checkXXBConfig();
  17. $this->view->domain = $this->im->getServer('zentao');
  18. $this->display();
  19. }
  20. }