50 lines
1.9 KiB
PHP
50 lines
1.9 KiB
PHP
<?php
|
|
/**
|
|
* The html template file of deny method of user module of ZenTaoPMS.
|
|
*
|
|
* @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com)
|
|
* @license ZPL (http://zpl.pub/page/zplv12.html)
|
|
* @author Chunsheng Wang <chunsheng@cnezsoft.com>
|
|
* @package ZenTaoPMS
|
|
* @version $Id: deny.html.php 4129 2013-01-18 01:58:14Z wwccss $
|
|
*/
|
|
include '../../common/view/header.lite.html.php';
|
|
?>
|
|
<div class='container'>
|
|
<div class='modal-dialog'>
|
|
<div class='modal-header'><strong><?php echo $app->user->account, ' ', $lang->user->deny;?></strong></div>
|
|
<div class='modal-body'>
|
|
<div class='alert with-icon alert-pure'>
|
|
<i class='icon-info-sign'></i>
|
|
<div class='content'>
|
|
<?php
|
|
$moduleName = isset($lang->$module->common) ? $lang->$module->common: $module;
|
|
$methodName = isset($lang->$module->$method) ? $lang->$module->$method: $method;
|
|
|
|
/* find method name if method is lowercase letter. */
|
|
if(!isset($lang->$module->$method))
|
|
{
|
|
$tmpLang = array();
|
|
foreach($lang->$module as $key => $value)
|
|
{
|
|
$tmpLang[strtolower($key)] = $value;
|
|
}
|
|
$methodName = isset($tmpLang[$method]) ? $tmpLang[$method] : $method;
|
|
}
|
|
|
|
printf($lang->user->errorDeny, $moduleName, $methodName);
|
|
?>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class='modal-footer'>
|
|
<?php
|
|
echo html::a($this->createLink($config->default->module), $lang->my->common, '', "class='btn'");
|
|
if($refererBeforeDeny) echo html::a(helper::safe64Decode($refererBeforeDeny), $lang->user->goback, '', "class='btn'");
|
|
echo html::a($this->createLink('user', 'logout', "referer=" . helper::safe64Encode($denyPage)), $lang->user->relogin, '', "class='btn btn-primary'");
|
|
?></div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|