xxb/module/block/view/set.html.php
2023-10-23 15:51:36 +08:00

45 lines
1.6 KiB
PHP

<?php
/**
* The set view file of block module of XXB.
*
* @copyright Copyright 2009-2023 禅道软件(青岛)有限公司(ZenTao Software (Qingdao) Co., Ltd., www.zentao.net)
* @license ZOSL (https://zpl.pub/page/zoslv1.html)
* @author Yidong Wang <yidong@cnezsoft.com>
* @package block
* @version $Id$
* @link https://xuanim.com
*/
?>
<?php
if($type == 'html')
{
$webRoot = $config->webRoot;
$jsRoot = $webRoot . "js/";
$themeRoot = $webRoot . "theme/";
include '../../common/view/kindeditor.html.php';
}
?>
<form method='post' id='blockForm' class='form form-horizontal' action='<?php echo $this->createLink('block', 'set', "index=$index&type=$type&blockID=$blockID")?>'>
<table class='table table-form'>
<tbody>
<?php include 'publicform.html.php';?>
<?php if($type == 'rss'):?>
<tr>
<th><?php echo $lang->block->lblRss?></th>
<td><?php echo html::input('params[link]', $block ? $block->params->link : '', "class='form-control'")?></td>
</tr>
<tr>
<th><?php echo $lang->block->lblNum?></th>
<td><?php echo html::input('params[num]', $block ? $block->params->num : 0, "class='form-control'")?></td>
</tr>
<?php elseif($type == 'html'):?>
<tr>
<th class='w-100px'><?php echo $lang->block->lblHtml;?></th>
<td><?php echo html::textarea('html', $block ? $block->params->html : '', "class='form-control' rows='10'")?></td>
</tr>
<?php endif;?>
</tbody>
<tfoot><tr><td colspan='2' class='text-center'><?php echo html::submitButton()?></td></tr></tfoot>
</table>
</form>