73 lines
3.4 KiB
PHP
73 lines
3.4 KiB
PHP
<?php
|
|
/**
|
|
* The browse view file of holiday module of ZenTao.
|
|
*
|
|
* @copyright Copyright 2009-2018 禅道软件(青岛)有限公司(ZenTao Software (Qingdao) Co., Ltd. www.cnezsoft.com)
|
|
* @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html)
|
|
* @author chujilu <chujilu@cnezsoft.com>
|
|
* @package holiday
|
|
* @version $Id$
|
|
* @link https://www.zentao.net
|
|
*/
|
|
?>
|
|
<?php include '../../common/view/header.html.php';?>
|
|
<div id='mainContent' class='main-row'>
|
|
<div class='side-col' id='sidebar'>
|
|
<div class='cell'>
|
|
<div class='nav list-group tab-menu'>
|
|
<?php if(common::hasPriv('custom', 'hours')):?>
|
|
<a href="<?php echo $this->createLink('custom', 'hours', 'type=hours')?>"><?php echo $lang->custom->setHours;?></a>
|
|
<a href="<?php echo $this->createLink('custom', 'hours', 'type=weekend')?>"><?php echo $lang->custom->setWeekend;?></a>
|
|
<?php endif;?>
|
|
<?php echo html::a($this->createLink('holiday', 'browse'), $lang->custom->setHoliday, '', "class='active'");?>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class='main-col main-content'>
|
|
<div id='mainMenu' class='clearfix'>
|
|
<div class='pull-left btn-toolbar'>
|
|
<div class='input-control'>
|
|
<span class="form-name"><strong><?php echo $lang->holiday->checkYear;?></strong></span>
|
|
<?php echo html::select('year', $yearList, $currentYear, "class='form-control chosen'");?>
|
|
</div>
|
|
</div>
|
|
<div class='pull-right'>
|
|
<?php common::printLink('holiday', 'create', "", "<i class='icon icon-plus'> </i>" . $lang->holiday->create, '', "class='btn btn-primary iframe'", '', true)?>
|
|
</div>
|
|
</div>
|
|
<table class='table has-sort-head'>
|
|
<thead <?php if(empty($holidays)) echo 'class="shadow-sm"';?>>
|
|
<tr>
|
|
<th class='c-name'><?php echo $lang->holiday->name;?></th>
|
|
<th class='c-time-limit'><?php echo $lang->holiday->holiday;?></th>
|
|
<th class='c-status'><?php echo $lang->holiday->type;?></th>
|
|
<th class='c-desc'><?php echo $lang->holiday->desc;?></th>
|
|
<th class='c-actions-2'><?php echo $lang->actions;?></th>
|
|
</tr>
|
|
</thead>
|
|
<?php if(!empty($holidays)):?>
|
|
<?php foreach($holidays as $holiday):?>
|
|
<tr>
|
|
<td><?php echo $holiday->name;?></td>
|
|
<td><?php echo formatTime($holiday->begin, DT_DATE1) . ' ~ ' . formatTime($holiday->end, DT_DATE1);?></td>
|
|
<td><?php echo zget($lang->holiday->typeList, $holiday->type);?></td>
|
|
<td><p class='c-desc' title='<?php echo $holiday->desc?>'><?php echo $holiday->desc;?></p></td>
|
|
<td class=" c-actions">
|
|
<?php common::printIcon('holiday', 'edit', "id=$holiday->id", $holiday, 'list', '', '', 'iframe', 'yes');?>
|
|
<?php common::printIcon('holiday', 'delete', "id=$holiday->id", $holiday, 'list', '', 'hiddenwin');?>
|
|
</td>
|
|
</tr>
|
|
<?php endforeach;?>
|
|
<?php endif;?>
|
|
</table>
|
|
<?php if(!common::checkNotCN() and common::hasPriv('holiday', 'import') and $currentYear >= date('Y')):?>
|
|
<div class="table-footer flex-center">
|
|
<div class="table-import shadow-sm">
|
|
<?php echo sprintf($lang->holiday->importTip, html::a(helper::createLink('holiday', 'import', "year=$currentYear", '', true), $lang->import, '', "class='text-primary iframe' data-width='400px'"));?>
|
|
</div>
|
|
</div>
|
|
<?php endif;?>
|
|
</div>
|
|
</div>
|
|
<?php include '../../common/view/footer.html.php';?>
|