- [misc] Remove unused view files.
This commit is contained in:
@@ -1,20 +0,0 @@
|
||||
<?php
|
||||
/**
|
||||
* The html template file of index method of my module of ZenTaoPMS.
|
||||
*
|
||||
* @copyright Copyright 2009-2023 禅道软件(青岛)有限公司(ZenTao Software (Qingdao) Co., Ltd. www.cnezsoft.com)
|
||||
* @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html)
|
||||
* @author Jianhua Wang <wangjianhua@easycorp.ltd>
|
||||
* @package my
|
||||
* @version $Id$
|
||||
* @link https://www.zentao.net
|
||||
*/
|
||||
?>
|
||||
<?php include $this->app->getModuleRoot() . '/common/view/header.html.php';?>
|
||||
<div id="mainContent" class="main-row">
|
||||
<div class="main-col col-12">
|
||||
<div class="panel"><?php include 'overviewblock.html.php';?></div>
|
||||
<div class="panel"><?php include 'instancesblock.html.php';?></div>
|
||||
</div>
|
||||
</div>
|
||||
<?php include $this->app->getModuleRoot() . '/common/view/footer.html.php';?>
|
||||
@@ -1,43 +0,0 @@
|
||||
<?php
|
||||
/**
|
||||
* The adminer view file of system module of ZenTaoPMS.
|
||||
*
|
||||
* @copyright Copyright 2009-2023 禅道软件(青岛)有限公司(ZenTao Software (Qingdao) Co., Ltd. www.cnezsoft.com)
|
||||
* @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html)
|
||||
* @author Jianhua Wang <wangjianhua@easycorp.ltd>
|
||||
* @package system
|
||||
* @version $Id$
|
||||
* @link https://www.zentao.net
|
||||
*/
|
||||
?>
|
||||
<?php include $this->app->getModuleRoot() . '/common/view/header.html.php';?>
|
||||
<div id='mainMenu' class='clearfix'>
|
||||
<div class='btn-toolbar pull-left'>
|
||||
<?php echo html::a($this->createLink('system', 'index'), "<i class='icon icon-back icon-sm'></i> " . $lang->goback, '', "class='btn btn-secondary'");?>
|
||||
</div>
|
||||
</div>
|
||||
<div id='mainContent' class='main-row'>
|
||||
<div class='main-col main-content'>
|
||||
<div class='main-header'>
|
||||
<h2><?php echo $lang->system->dbList;?></h2>
|
||||
</div>
|
||||
<table class='table table-bordered text-center'>
|
||||
<tr>
|
||||
<th><?php echo $lang->system->dbName;?></th>
|
||||
<th><?php echo $lang->system->dbType;?></th>
|
||||
<th><?php echo $lang->system->dbStatus;?></th>
|
||||
<th><?php echo $lang->system->action?></th>
|
||||
</tr>
|
||||
<?php foreach($dbList as $db):?>
|
||||
<tr>
|
||||
<td><?php echo $db->name;?></td>
|
||||
<td><?php echo $db->db_type?></td>
|
||||
<td><?php echo zget($lang->instance->statusList, $db->status);?></td>
|
||||
<td><?php $this->system->printDBAction($db);?></td>
|
||||
<tr>
|
||||
<?php endforeach;?>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
<?php include $this->app->getModuleRoot() . '/common/view/footer.html.php';?>
|
||||
|
||||
@@ -1,43 +0,0 @@
|
||||
<?php
|
||||
/**
|
||||
* The install domain view file of system module of ZenTaoPMS.
|
||||
*
|
||||
* @copyright Copyright 2009-2023 禅道软件(青岛)有限公司(ZenTao Software (Qingdao) Co., Ltd. www.cnezsoft.com)
|
||||
* @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html)
|
||||
* @author Jianhua Wang <wangjianhua@easycorp.ltd>
|
||||
* @package system
|
||||
* @version $Id$
|
||||
* @link https://www.zentao.net
|
||||
*/
|
||||
?>
|
||||
<?php include $this->app->getModuleRoot() . '/common/view/header.html.php';?>
|
||||
<div id='mainMenu' class='clearfix'>
|
||||
<div class='btn-toolbar pull-left'>
|
||||
<?php echo html::a($this->createLink('system', 'index'), "<i class='icon icon-back icon-sm'></i>" . $lang->goback, '', "class='btn btn-secondary'");?>
|
||||
</div>
|
||||
</div>
|
||||
<div id='mainContent' class='main-row'>
|
||||
<div class='main-col main-content'>
|
||||
<div class='main-header'>
|
||||
<h2><?php echo $lang->system->domain->common;?></h2>
|
||||
<div class='smtp-button-group btn-toolbar pull-right'>
|
||||
<?php echo html::a($this->inLink('editDomain'), $lang->system->domain->editDomain, '', "class='btn btn-primary'");?>
|
||||
</div>
|
||||
</div>
|
||||
<table class='table table-form'>
|
||||
<tbody>
|
||||
<tr>
|
||||
<th><?php echo $lang->system->domain->currentDomain;?></th>
|
||||
<td><?php echo zget($domainSettings, 'customDomain', '');?></td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th><?php echo $lang->system->domain->expiredDate;?></th>
|
||||
<td><?php echo zget($cert, 'expiredDate', '');?></td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
<?php include $this->app->getModuleRoot() . '/common/view/footer.html.php';?>
|
||||
@@ -1,97 +0,0 @@
|
||||
<?php
|
||||
/**
|
||||
* The edit domain view file of system module of chandao.net.
|
||||
*
|
||||
* @copyright Copyright 2009-2023 禅道软件(青岛)有限公司(ZenTao Software (Qingdao) Co., Ltd. www.cnezsoft.com)
|
||||
* @license ZPL (http://zpl.pub/page/zplv12.html)
|
||||
* @author Jianhua Wang <wangjianhua@easycorp.ltd>
|
||||
* @package system
|
||||
* @version $Id$
|
||||
* @link https://www.zentao.net
|
||||
*/
|
||||
?>
|
||||
<?php include $this->app->getModuleRoot() . '/common/view/header.html.php';?>
|
||||
<?php $ldapLinked = false;?>
|
||||
<?php js::set('errors', $lang->system->errors);?>
|
||||
<?php js::set('notices', $lang->system->notices);?>
|
||||
<div id='mainMenu' class='clearfix'>
|
||||
<div class='btn-toolbar pull-left'>
|
||||
<?php echo html::a($this->createLink('system', 'index'), "<i class='icon icon-back icon-sm'></i>" . $lang->goback, '', "class='btn btn-secondary'");?>
|
||||
</div>
|
||||
</div>
|
||||
<div id='mainContent' class='main-row'>
|
||||
<div class='main-col main-content'>
|
||||
<div class='main-header'>
|
||||
<h2><?php echo $lang->system->domain->config;?></h2>
|
||||
</div>
|
||||
<form id='domainForm' class='cell not-watch load-indicator main-form form-ajax'>
|
||||
<table class="table table-form">
|
||||
<tbody>
|
||||
<tr>
|
||||
<th><?php echo $lang->system->domain->oldDomain;?></th>
|
||||
<td><?php echo $this->loadModel('cne')->sysDomain();?> <span class='with-padding text-danger'><?php echo $lang->system->domain->notReuseOldDomain;?></span></td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th class='new-domain-label'><?php echo $lang->system->domain->newDomain;?></th>
|
||||
<td class='required'>
|
||||
<?php echo html::input('customDomain', zget($domainSettings, 'customDomain', ''), "class='form-control' placeholder=''");?>
|
||||
<div class='with-padding'>
|
||||
<span><?php echo $lang->system->domain->setDNS;?></span>
|
||||
<?php echo html::a('https://www.qucheng.com/book/Installation-manual/47.html', $lang->system->domain->dnsHelperLink, '_blank', "class='text-primary'");?>
|
||||
</div>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td>
|
||||
<h4>
|
||||
<?php $domainUsed = false;?>
|
||||
<?php echo html::checkbox('https', array('true' => $lang->system->domain->uploadCert), $domainSettings->https, ($domainUsed ? "onclick='return false;'" : ''));?>
|
||||
</h4>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<table id='cert-box' class="table table-form">
|
||||
<tbody>
|
||||
<tr>
|
||||
<th><?php echo $lang->system->certPem;?></th>
|
||||
<td class='required' colspan='2'><?php echo html::textarea('certPem', zget($domainSettings, 'certPem', ''), "class='form-control' rows='5'");?></td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th><?php echo $lang->system->certKey;?></th>
|
||||
<td class='required' colspan='2'><?php echo html::textarea('certKey', zget($domainSettings, 'certKey', ''), "class='form-control' rows='5'");?></td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td colspan='2' >
|
||||
<?php echo html::commonButton($lang->system->verify, "id='validateCertBtn'");?>
|
||||
<span class='with-padding' id='validateMsg'></span>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<div class='text-center'><?php echo html::commonButton($lang->save, "id='submitBtn'", "btn btn-primary");?></div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
<div class="modal fade" id="waiting" tabindex="-1" role="dialog" aria-hidden="true">
|
||||
<div class="modal-dialog w-400px">
|
||||
<div class="modal-content">
|
||||
<div class="modal-body">
|
||||
<h4><?php echo $lang->system->domain->updateInstancesDomain;?></h4>
|
||||
<div>
|
||||
<span id='message'><?php echo $lang->system->domain->updating;?></span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<?php include $this->app->getModuleRoot() . '/common/view/footer.html.php';?>
|
||||
|
||||
@@ -1,76 +0,0 @@
|
||||
<?php
|
||||
/**
|
||||
* The index view file of system module of ZenTaoPMS.
|
||||
*
|
||||
* @copyright Copyright 2009-2023 禅道软件(青岛)有限公司(ZenTao Software (Qingdao) Co., Ltd. www.cnezsoft.com)
|
||||
* @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html)
|
||||
* @author Jianhua Wang <wangjianhua@easycorp.ltd>
|
||||
* @package system
|
||||
* @version $Id$
|
||||
* @link https://www.zentao.net
|
||||
*/
|
||||
?>
|
||||
<?php include $this->app->getModuleRoot() . '/common/view/header.html.php';?>
|
||||
<div id='mainContent' class='main-row'>
|
||||
<div class='main-col'>
|
||||
<div class='row plug-container'>
|
||||
<div class='text-center col-xs-6 col-sm-3 col-md-2 col-lg-2'>
|
||||
<a class='cell' href='<?php echo helper::createLink('system', 'dashboard');?>'>
|
||||
<span class='logo'><i class='icon icon-info-dashboard'></i></span><br/>
|
||||
<span class='plug-title text-center'><?php echo $lang->system->common;?></span>
|
||||
</a>
|
||||
</div>
|
||||
<div class='text-center col-xs-6 col-sm-3 col-md-2 col-lg-2'>
|
||||
<a class='cell' href='<?php echo helper::createLink('backup', 'index');?>'>
|
||||
<span class='logo'><i class='icon icon-info-sign'></i></span><br/>
|
||||
<span class='plug-title text-center'><?php echo $lang->system->systemInfo;?></span>
|
||||
</a>
|
||||
</div>
|
||||
<div class='text-center col-xs-6 col-sm-3 col-md-2 col-lg-2'>
|
||||
<a class='cell' href='<?php echo helper::createLink('system', 'dblist');?>'>
|
||||
<span class='logo'><img class='logo' src='/theme/default/images/main/db_logo.svg' /></span><br/>
|
||||
<span class='plug-title text-center'><?php echo $lang->system->dbManagement;?></span>
|
||||
</a>
|
||||
</div>
|
||||
<div class='text-center col-xs-6 col-sm-3 col-md-2 col-lg-2'>
|
||||
<a class='cell' href='<?php echo helper::createLink('system', 'installLDAP');?>'>
|
||||
<span class='logo'><img src='/theme/default/images/main/ldap_logo.jpg' /></span><br/>
|
||||
<span class='plug-title text-center'><?php echo $lang->system->ldapManagement;?></span>
|
||||
</a>
|
||||
</div>
|
||||
<div class='text-center col-xs-6 col-sm-3 col-md-2 col-lg-2'>
|
||||
<a class='cell' href='<?php echo helper::createLink('system', 'ossview');?>'>
|
||||
<span class='logo'><img src='/theme/default/images/main/minio_logo.svg' /></span><br/>
|
||||
<span class='plug-title text-center'><?php echo $lang->system->oss->common;?></span>
|
||||
</a>
|
||||
</div>
|
||||
<div class='text-center col-xs-6 col-sm-3 col-md-2 col-lg-2'>
|
||||
<a class='cell' href='<?php echo helper::createLink('system', 'installSMTP');?>'>
|
||||
<span class='logo'><i class='icon icon-envelope-o'></i></span><br/>
|
||||
<span class='plug-title text-center'><?php echo $lang->system->SMTP->common;?></span>
|
||||
</a>
|
||||
</div>
|
||||
<div class='text-center col-xs-6 col-sm-3 col-md-2 col-lg-2'>
|
||||
<a class='cell' href='<?php echo helper::createLink('system', 'configDomain');?>'>
|
||||
<span class='logo'><i class='icon icon-globe'></i></span><br/>
|
||||
<span class='plug-title text-center'><?php echo $lang->system->domain->common;?></span>
|
||||
</a>
|
||||
</div>
|
||||
<div class='text-center col-xs-6 col-sm-3 col-md-2 col-lg-2'>
|
||||
<a class='cell' href='<?php echo helper::createLink('system', 'configSLB');?>'>
|
||||
<span class='logo'><i class='icon icon-treemap'></i></span><br/>
|
||||
<span class='plug-title text-center'><?php echo $lang->system->SLB->common;?></span>
|
||||
</a>
|
||||
</div>
|
||||
<?php if($config->edition == 'biz'):?>
|
||||
<div class='text-center col-xs-6 col-sm-3 col-md-2 col-lg-2'>
|
||||
<a class='cell' href='<?php echo helper::createLink('system', 'license');?>'>
|
||||
<span class='logo'><img src='/theme/default/images/main/license.svg' /></span><br/>
|
||||
<span class='plug-title text-center'><?php echo $lang->system->license;?></span>
|
||||
</a>
|
||||
</div>
|
||||
<?php endif;?>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<?php include $this->app->getModuleRoot() . '/common/view/footer.html.php';?>
|
||||
@@ -1,69 +0,0 @@
|
||||
<?php
|
||||
/**
|
||||
* The install ldap view file of system module of ZenTaoPMS.
|
||||
*
|
||||
* @copyright Copyright 2009-2023 禅道软件(青岛)有限公司(ZenTao Software (Qingdao) Co., Ltd. www.cnezsoft.com)
|
||||
* @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html)
|
||||
* @author Jianhua Wang <wangjianhua@easycorp.ltd>
|
||||
* @package system
|
||||
* @version $Id$
|
||||
* @link https://www.zentao.net
|
||||
*/
|
||||
?>
|
||||
<?php include $this->app->getModuleRoot() . '/common/view/header.html.php';?>
|
||||
<?php js::set('copySuccess', $lang->system->copySuccess);?>
|
||||
<div id='mainMenu' class='clearfix'>
|
||||
<div class='btn-toolbar pull-left'>
|
||||
<?php echo html::a($this->createLink('system', 'index'), "<i class='icon icon-back icon-sm'></i>" . $lang->goback, '', "class='btn btn-secondary'");?>
|
||||
</div>
|
||||
</div>
|
||||
<div id='mainContent' class='main-row'>
|
||||
<div class='main-col main-content'>
|
||||
<div class='main-header'>
|
||||
<h2><?php echo $lang->system->oss->common;?></h2>
|
||||
<div class='ldap-button-group btn-toolbar pull-right'>
|
||||
<?php echo html::commonButton($lang->system->oss->manage, "id='ossManage'", "btn label label-outline label-primary label-lg");?>
|
||||
</div>
|
||||
</div>
|
||||
<table class='table table-form instance-status'>
|
||||
<tbody>
|
||||
<tr>
|
||||
<th><?php echo $lang->system->oss->apiURL;?></th>
|
||||
<td><?php echo zget($ossDomain->extra_hosts, 'api', '');?></td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th><?php echo $lang->system->oss->accessKey;?></th>
|
||||
<td><?php echo $ossAccount->username;?></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th><?php echo $lang->system->oss->secretKey;?></th>
|
||||
<td>
|
||||
<input id='ossSK' class='hidden' value='<?php echo $ossAccount->password;?>' />
|
||||
<?php echo html::commonButton($lang->system->copy, "id='copySKBtn'");?>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
<div class="modal fade" id="ossAccountModal" tabindex="-1" role="dialog" aria-hidden="true">
|
||||
<div class="modal-dialog w-400px">
|
||||
<div class="modal-content">
|
||||
<div class="modal-body">
|
||||
<button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span></button>
|
||||
<h2 class="text-center"><?php echo $lang->system->accountInfo;?></h2>
|
||||
<p><?php echo $lang->system->oss->user;?>:<span id='ossAdmin'></span></p>
|
||||
<p>
|
||||
<?php echo $lang->system->oss->password;?>:<input id='ossPassword' class='hidden' readonly />
|
||||
<?php echo html::commonButton($lang->system->copy, "id='copyPassBtn'", 'btn btn-link');?>
|
||||
</p>
|
||||
<div class="text-center">
|
||||
<?php echo html::commonButton($lang->cancel, "data-dismiss='modal'", 'btn btn-wide');?>
|
||||
<?php echo html::a('#', $lang->system->visit, '_blank', "id='ossVisitUrl' class='btn btn-primary btn-wide'");?>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<?php include $this->app->getModuleRoot() . '/common/view/footer.html.php';?>
|
||||
Reference in New Issue
Block a user