Files
EasySoft-ZenTaoPMS/module/my/view/index.html.php
2012-12-16 03:12:29 +00:00

41 lines
1.8 KiB
PHP

<?php
/**
* The html template file of index method of index module of ZenTaoPMS.
*
* @copyright Copyright 2009-2012 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com)
* @license LGPL (http://www.gnu.org/licenses/lgpl.html)
* @author Chunsheng Wang <chunsheng@cnezsoft.com>
* @package ZenTaoPMS
* @version $Id: index.html.php 1947 2011-06-29 11:58:03Z wwccss $
*/
?>
<?php include '../../common/view/header.html.php';?>
<?php include '../../common/view/sparkline.html.php';?>
<?php include '../../common/view/colorize.html.php';?>
<?php css::import($defaultTheme . 'index.css', $config->version);?>
<table class='cont' id='row1'>
<tr valign='top'>
<td width='66%' style='padding-right:20px'>
<?php include './blockprojects.html.php';?> <br />
<?php include './blockproducts.html.php';?>
</td>
<td width='33%'><?php if(common::hasPriv('company', 'dynamic')) include './blockdynamic.html.php';?></td>
</tr>
</table>
<table class='cont' id='row2'>
<tr valign='top'>
<td width='33%' style='padding-right:20px'><?php include './blocktodoes.html.php';?></td>
<?php if(strpos('qa|qd', $app->user->role) !== false):?>
<td width='33%' style='padding-right:20px'><?php include './blockbugs.html.php';?></td>
<td width='33%'><?php include './blocktasks.html.php';?></td>
<?php elseif(strpos('po|pd', $app->user->role) !== false):?>
<td width='33%' style='padding-right:20px'><?php include './blockstories.html.php';?></td>
<td width='33%'><?php include './blockbugs.html.php';?></td>
<?php else:?>
<td width='33%' style='padding-right:20px'><?php include './blocktasks.html.php';?></td>
<td width='33%'><?php include './blockbugs.html.php';?></td>
<?php endif;?>
</tr>
</table>
<?php include '../../common/view/footer.html.php';?>