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

28 lines
909 B
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 Yidong Wang <yidong@cnezsoft.com>
* @package block
* @version $Id$
* @link https://xuanim.com
*/
?>
<?php include '../../common/view/header.modal.html.php';?>
<table class='table table-form'>
<tr>
<th class='w-100px'><?php echo $lang->block->lblEntry; ?></th>
<?php
$entryID = '';
if($block) $entryID = $block->source != '' ? $block->source : $block->block;
?>
<td><?php echo html::select('allEntries', $allEntries, $entryID, "class='form-control'")?></td>
</tr>
<tr></tr>
</table>
<div id='blockParam'></div>
<?php js::set('index', $index)?>
<?php include '../../common/view/footer.modal.html.php';?>