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

50 lines
1.8 KiB
PHP

<?php
/**
* The category view file of entry module of XXB.
*
* @copyright Copyright 2009-2023 禅道软件(青岛)有限公司(ZenTao Software (Qingdao) Co., Ltd., www.zentao.net)
* @license ZOSL (https://zpl.pub/page/zoslv1.html)
* @author Gang Liu <liugang@cnezsoft.com>
* @package entry
* @version $Id$
* @link https://xuanim.com
*/
?>
<?php include '../../common/view/header.html.php';?>
<div class='panel'>
<div class='panel-heading'>
<strong><?php echo $lang->entry->category;?></strong>
</div>
<div class='panel-body'>
<form id='ajaxForm' method='post'>
<div class='col-xs-6 col-md-4 col-md-offset-1' id='categoryList'>
<?php
$maxOrder = 0;
foreach($children as $child)
{
if($child->order > $maxOrder) $maxOrder = $child->order;
echo "<div class='form-group'><div class='input-group'>";
echo html::input("children[$child->id]", $child->name, "class='form-control'");
echo "<span class='input-group-addon'>" . html::a(helper::createLink('tree', 'delete', "id={$child->id}"), "<i class='icon-remove'></i>", "class='deleteCategory'") . "</span>";
echo html::hidden("mode[$child->id]", 'update');
echo "</div></div>";
}
for($i = 0; $i < 5 ; $i ++)
{
echo "<div class='form-group'><div class='input-group'>";
echo html::input("children[]", '', "class='form-control' placeholder='{$lang->entry->category}'");
echo html::hidden('mode[]', 'new');
echo "</div></div>";
}
echo "<div class='form-group'>" . html::submitButton() . "</div>";
echo html::hidden('parent', 0);
echo html::hidden('maxOrder', $maxOrder);
?>
</div>
</form>
</div>
</div>
<?php include '../../common/view/footer.html.php';?>