Files
EasySoft-ZenTaoPMS/xuanxuan/module/im/ext/control/debug.php
T

21 lines
474 B
PHP

<?php
include '../../control.php';
class myIm extends im
{
/**
* Debug xuanxuan.
*
* @access public
* @return void
*/
public function debug($source = 'x_php')
{
$this->view->title = $this->lang->im->debug;
$this->view->source = $source;
$this->view->xxdStatus = $this->im->getXxdStatus();
$this->view->checkXXBConfig = $this->im->checkXXBConfig();
$this->display();
}
}