Files
EasySoft-ZenTaoPMS/module/block/view/set.html.php
2018-09-26 10:43:33 +08:00

42 lines
1.3 KiB
PHP

<?php
/**
* The set view file of block 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 Yidong Wang <yidong@cnezsoft.com>
* @package block
* @version $Id$
* @link http://www.zentao.net
*/
?>
<?php
if($type != 'html')
{
include 'setmodule.html.php';
die();
}
if($type == 'html')
{
$webRoot = $config->webRoot;
$jsRoot = $webRoot . "js/";
$themeRoot = $webRoot . "theme/";
include '../../common/view/kindeditor.html.php';
}
?>
<?php include 'publicform.html.php';?>
<?php echo html::hidden('actionLink', $this->createLink('block', 'set', "id=$id&type=$type&source=$source"));?>
<?php if($type == 'html'):?>
<div class="form-group">
<label for="html" class="col-sm-3"><?php echo $lang->block->lblHtml;?></label>
<div class='col-sm-7'><?php echo html::textarea('html', $block ? $block->params->html : '', "class='form-control' rows='10'")?></div>
</div>
<?php endif;?>
<script>
$(function()
{
options = $('#modules').find("option").text();
if($('#title').val() == '') $('#title').val($('#modules').find("option:selected").text());
})
</script>