65 lines
2.5 KiB
PHP
65 lines
2.5 KiB
PHP
<?php
|
|
/**
|
|
* The admin 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 Hao Sun <catouse@me.com>
|
|
* @package block
|
|
* @version $Id$
|
|
* @link https://xuanim.com
|
|
*/
|
|
?>
|
|
<?php include "../../common/view/header.modal.html.php";?>
|
|
<?php include "../../../common/view/chosen.html.php";?>
|
|
<?php js::set('index', $index);?>
|
|
<table class='table table-form'>
|
|
<th class='w-100px'><?php echo $lang->block->lblBlock?></th>
|
|
<td><?php echo html::select('blocks', $blocks, $blockID, "class='form-control'")?></td>
|
|
</table>
|
|
<?php if($blockID or $params):?>
|
|
<form method='post' id='ajaxForm' action='<?php echo inlink('admin', "index=$index&blockID=$blockID")?>'>
|
|
<table class='table table-form'>
|
|
<tbody>
|
|
<?php include 'publicform.html.php';?>
|
|
<?php foreach($params as $key => $param):?>
|
|
<tr>
|
|
<th><?php echo $param['name']?></th>
|
|
<td>
|
|
<?php
|
|
if(!isset($param['control'])) $param['control'] = 'input';
|
|
if(!method_exists('html', $param['control'])) $param['control'] = 'input';
|
|
|
|
$control = $param['control'];
|
|
$attr = empty($param['attr']) ? '' : $param['attr'];
|
|
$default = $block ? (isset($block->params->$key) ? $block->params->$key : '') : (isset($param['default']) ? $param['default'] : '');
|
|
$options = isset($param['options']) ? $param['options'] : array();
|
|
if($control == 'select' or $control == 'radio' or $control == 'checkbox')
|
|
{
|
|
$chosen = $control == 'select' ? 'chosen' : '';
|
|
if(strpos($attr, 'multiple') !== false)
|
|
{
|
|
echo html::$control("params[$key][]", $options, $default, "class='form-control " . $chosen . "' $attr");
|
|
}
|
|
else
|
|
{
|
|
echo html::$control("params[$key]", $options, $default, "class='form-control " . $chosen . "' $attr");
|
|
}
|
|
}
|
|
else
|
|
{
|
|
echo html::$control("params[$key]", $default, "class='form-control' $attr");
|
|
}
|
|
?>
|
|
</td>
|
|
</tr>
|
|
<?php endforeach;?>
|
|
</tbody>
|
|
<tfoot>
|
|
<tr><th></th><td><?php echo html::submitButton() . html::hidden('block', $blockID);?></td></tr>
|
|
</tfoot>
|
|
</table>
|
|
</form>
|
|
<?php endif;?>
|
|
<?php include "../../../common/view/footer.modal.html.php";?>
|