30 lines
1.1 KiB
PHP
30 lines
1.1 KiB
PHP
<?php
|
|
/**
|
|
* The deactivate view file of extension module of ZenTaoPMS.
|
|
*
|
|
* @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com)
|
|
* @license LGPL (http://www.gnu.org/licenses/lgpl.html)
|
|
* @author Chunsheng Wang <chunsheng@cnezsoft.com>
|
|
* @package extension
|
|
* @version $Id$
|
|
* @link http://www.zentao.net
|
|
*/
|
|
?>
|
|
<?php include '../../common/view/header.lite.html.php';?>
|
|
<div id='titlebar'>
|
|
<div class='heading'>
|
|
<span class='prefix' title='EXTENSION'><?php echo html::icon($lang->icons['extension']);?></span>
|
|
</div>
|
|
</div>
|
|
<div class='text-center with-padding'>
|
|
<h3 class='mgb-20'><?php echo $title;?></h3>
|
|
<?php if($removeCommands):?>
|
|
<p><strong><?php echo $lang->extension->unremovedFiles;?></strong></p>
|
|
<p><?php echo join($removeCommands, '<br />');?></p>
|
|
<?php endif;?>
|
|
<hr>
|
|
<p><?php echo html::commonButton($lang->extension->viewDeactivated, 'onclick=parent.location.href="' . inlink('browse', 'type=deactivated') . '"');?></p>
|
|
</div>
|
|
</body>
|
|
</html>
|