65 lines
2.8 KiB
PHP
65 lines
2.8 KiB
PHP
<?php
|
|
/**
|
|
* The set style view 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 Tingting Dai <daitingting@xirangit.com>
|
|
* @package entry
|
|
* @version $Id$
|
|
* @link https://xuanim.com
|
|
*/
|
|
include '../../common/view/header.html.php';
|
|
?>
|
|
<div class='panel'>
|
|
<div class='panel-heading'>
|
|
<strong><i class='icon-magic'></i> <?php echo $lang->entry->style;?></strong>
|
|
</div>
|
|
<div class='panel-body'>
|
|
<form method='post' class='form' id='entryForm'>
|
|
<table class='table table-form'>
|
|
<tr>
|
|
<th><?php echo $lang->entry->logo;?></th>
|
|
<td><?php echo html::file('files', "class='form-control'");?></td>
|
|
<td colspan='2'><?php echo $lang->entry->note->logo;?></td>
|
|
</tr>
|
|
<tr>
|
|
<th class='w-100px'><?php echo $lang->entry->open;?></th>
|
|
<?php if($entry->buildin):?>
|
|
<td class='w-p50'><?php echo html::select('open', $lang->entry->openList, 'iframe', 'class="form-control disabled" disabled');?></td>
|
|
<?php else:?>
|
|
<td class='w-p50'><?php echo html::select('open', $lang->entry->openList, $entry->open, 'class="form-control"');?></td>
|
|
<?php endif;?>
|
|
<td></td><td></td>
|
|
</tr>
|
|
<tr>
|
|
<th><?php echo $lang->entry->control;?></th>
|
|
<td><?php echo html::select('control', $lang->entry->controlList, $entry->control, "class='form-control'");?></td>
|
|
<td></td><td></td>
|
|
</tr>
|
|
<tr>
|
|
<th><?php echo $lang->entry->size;?></th>
|
|
<td><?php echo html::select('size', $lang->entry->sizeList, $entry->size, "class='form-control'");?></td>
|
|
<td id='custom' class='w-200px'>
|
|
<div class='input-group'>
|
|
<div class='input-group-addon'><?php echo $lang->entry->width;?></div>
|
|
<?php echo html::input('width', isset($entry->width) ? $entry->width : '700', "class='form-control'");?>
|
|
<div class='input-group-addon'><?php echo $lang->entry->height;?></div>
|
|
<?php echo html::input('height', isset($entry->height) ? $entry->height : '538', "class='form-control'");?>
|
|
</div>
|
|
</td><td></td>
|
|
</tr>
|
|
<tr>
|
|
<th><?php echo $lang->entry->position;?></th>
|
|
<td><?php echo html::select('position', $lang->entry->positionList, $entry->position, "class='form-control'");?></td>
|
|
<td></td><td></td>
|
|
</tr>
|
|
<tr>
|
|
<th></th><td><?php echo html::submitButton() . ' ' . html::backButton();?></td><td></td>
|
|
</tr>
|
|
</table>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
<?php include '../../common/view/footer.html.php';?>
|