37 lines
1.3 KiB
PHP
37 lines
1.3 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>
|
|
<strong><?php echo $title;?></strong>
|
|
<small class='text-success'><?php echo $lang->extension->activate;?> <?php echo html::icon($lang->icons['activate']);?></small>
|
|
</div>
|
|
</div>
|
|
<?php if(isset($error) and $error):?>
|
|
<div class='alert alert-danger'>
|
|
<i class='icon-info-sign'></i>
|
|
<div class='content'><?php $error;?></div>
|
|
</div>
|
|
<?php else:?>
|
|
<div class='alert alert-success'>
|
|
<i class='icon-ok-sign'></i>
|
|
<div class='content'>
|
|
<h3><?php echo $title;?></h3>
|
|
<p class='text-center'><?php echo html::commonButton($lang->extension->viewInstalled, 'onclick=parent.location.href="' . inlink('browse', 'type=installed') . '"');?></p>
|
|
</div>
|
|
</div>
|
|
<?php endif;?>
|
|
</body>
|
|
</html>
|