| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151 |
- <?php $url = $this->report->getSysURL();?>
- <?php include '../../common/view/mail.header.html.php';?>
- <tr>
- <td>
- <table cellpadding='0' cellspacing='0' style='width: 100%; border: none; border-collapse: collapse;'>
- <tr>
- <td style='padding: 10px; background-color: #F8FAFE; border: none; font-size: 14px; font-weight: 500; border-bottom: 1px solid #e5e5e5;'><?php echo date('Y-m-d') ?></td>
- <td style='width: 40px; text-align: right; background-color: #F8FAFE; border: none; vertical-align: top; padding: 10px; border-bottom: 1px solid #e5e5e5;'><?php echo html::a($url . $config->webRoot, $url . $config->webRoot, 'target="_blank"');?></td>
- </tr>
- </table>
- </td>
- </tr>
- <?php if(isset($mail->bugs)):?>
- <tr>
- <td style='padding: 10px; border: none;'>
- <h5 style='margin: 8px 0; font-size: 14px;'><?php echo rtrim(sprintf($lang->report->mailTitle->bug, count($mail->bugs)), ',') ?></h5>
- <table cellpadding='0' cellspacing='0' style='width: 100%; border: 1px solid #e5e5e5; margin-bottom: 15px; border-collapse: collapse; font-size: 13px;'>
- <tr>
- <th style='width: 50px; border: 1px solid #e5e5e5; background-color: #f5f5f5; padding: 5px;'><?php echo $lang->report->idAB;?></th>
- <th style='border: 1px solid #e5e5e5; background-color: #f5f5f5; padding: 5px;'><?php echo $lang->report->bugTitle;?></th>
- <th style='width: 100px; border: 1px solid #e5e5e5; background-color: #f5f5f5; padding: 5px;'><?php echo $lang->report->deadline;?></th>
- </tr>
- <?php foreach($mail->bugs as $bug):?>
- <tr>
- <td style='padding: 5px; text-align: center; border: 1px solid #e5e5e5;'><?php echo $bug->id;?></td>
- <td style='padding: 5px; border: 1px solid #e5e5e5;'>
- <?php
- $link = $this->createLink('bug', 'view', "bugID=$bug->id");
- if($config->requestType == 'GET' and strpos($link, 'ztcli') !== false) $link = str_replace($this->server->php_self, $config->webRoot, $link);
- echo html::a($url . $link, $bug->title);
- ?>
- </td>
- <td style='padding: 5px; text-align: center; border: 1px solid #e5e5e5;'><?php if(!helper::isZeroDate($bug->deadline)) echo $bug->deadline;?></td>
- </tr>
- <?php endforeach;?>
- </table>
- </td>
- </tr>
- <?php endif;?>
- <?php if(isset($mail->tasks)):?>
- <tr>
- <td style='padding: 10px; border: none;'>
- <h5 style='margin: 8px 0; font-size: 14px;'><?php echo rtrim(sprintf($lang->report->mailTitle->task, count($mail->tasks)), ',') ?></h5>
- <table cellpadding='0' cellspacing='0' style='width: 100%; border: 1px solid #e5e5e5; margin-bottom: 15px; border-collapse: collapse; font-size: 13px;'>
- <tr>
- <th style='width: 50px; border: 1px solid #e5e5e5; background-color: #f5f5f5; padding: 5px;'><?php echo $lang->report->idAB;?></th>
- <th style='border: 1px solid #e5e5e5; background-color: #f5f5f5; padding: 5px;'><?php echo $lang->report->taskName;?></th>
- <th style='width: 100px; border: 1px solid #e5e5e5; background-color: #f5f5f5; padding: 5px;'><?php echo $lang->report->deadline;?></th>
- </tr>
- <?php foreach($mail->tasks as $task):?>
- <tr>
- <td style='padding: 5px; text-align: center; border: 1px solid #e5e5e5;'><?php echo $task->id;?></td>
- <td style='padding: 5px; border: 1px solid #e5e5e5;'>
- <?php
- $link = $this->createLink('task', 'view', "taskID=$task->id");
- if($config->requestType == 'GET' and strpos($link, 'ztcli') !== false) $link = str_replace($this->server->php_self, $config->webRoot, $link);
- echo html::a($url . $link, $task->name);
- ?>
- </td>
- <td style='padding: 5px; text-align: center; border: 1px solid #e5e5e5;'><?php if(!helper::isZeroDate($task->deadline)) echo $task->deadline;?></td>
- </tr>
- <?php endforeach;?>
- </table>
- </td>
- </tr>
- <?php endif;?>
- <?php if(isset($mail->todos)):?>
- <tr>
- <td style='padding: 10px; border: none;'>
- <h5 style='margin: 8px 0; font-size: 14px;'><?php echo rtrim(sprintf($lang->report->mailTitle->todo, count($mail->todos)), ',') ?></h5>
- <table cellpadding='0' cellspacing='0' style='width: 100%; border: 1px solid #e5e5e5; margin-bottom: 15px; border-collapse: collapse; font-size: 13px;'>
- <tr>
- <th style='width: 50px; border: 1px solid #e5e5e5; background-color: #f5f5f5; padding: 5px;'><?php echo $lang->report->idAB;?></th>
- <th style='border: 1px solid #e5e5e5; background-color: #f5f5f5; padding: 5px;'><?php echo $lang->report->todoName;?></th>
- </tr>
- <?php foreach($mail->todos as $todo):?>
- <tr>
- <td style='padding: 5px; text-align: center; border: 1px solid #e5e5e5;'><?php echo $todo->id;?></td>
- <td style='padding: 5px; border: 1px solid #e5e5e5;'>
- <?php
- $link = $this->createLink('todo', 'view', "todoID=$todo->id");
- if($config->requestType == 'GET' and strpos($link, 'ztcli') !== false) $link = str_replace($this->server->php_self, $config->webRoot, $link);
- echo html::a($url . $link, $todo->name);
- ?>
- </td>
- </tr>
- <?php endforeach;?>
- </table>
- </td>
- </tr>
- <?php endif;?>
- <?php if(isset($mail->testTasks)):?>
- <tr>
- <td style='padding: 10px; border: none;'>
- <h5 style='margin: 8px 0; font-size: 14px;'><?php echo rtrim(sprintf($lang->report->mailTitle->testTask, count($mail->testTasks)), ',') ?></h5>
- <table cellpadding='0' cellspacing='0' style='width: 100%; border: 1px solid #e5e5e5; margin-bottom: 15px; border-collapse: collapse; font-size: 13px;'>
- <tr>
- <th style='width: 50px; border: 1px solid #e5e5e5; background-color: #f5f5f5; padding: 5px;'><?php echo $lang->report->idAB;?></th>
- <th style='border: 1px solid #e5e5e5; background-color: #f5f5f5; padding: 5px;'><?php echo $lang->report->testTaskName;?></th>
- </tr>
- <?php foreach($mail->testTasks as $testTask):?>
- <tr>
- <td style='padding: 5px; text-align: center; border: 1px solid #e5e5e5;'><?php echo $testTask->id;?></td>
- <td style='padding: 5px; border: 1px solid #e5e5e5;'>
- <?php
- $link = $this->createLink('testtask', 'view', "testtask=$testTask->id");
- if($config->requestType == 'GET' and strpos($link, 'ztcli') !== false) $link = str_replace($this->server->php_self, $config->webRoot, $link);
- echo html::a($url . $link, $testTask->name);
- ?>
- </td>
- </tr>
- <?php endforeach;?>
- </table>
- </td>
- </tr>
- <?php endif;?>
- <?php if(isset($mail->cards)):?>
- <tr>
- <td style='padding: 10px; border: none;'>
- <h5 style='margin: 8px 0; font-size: 14px;'><?php echo rtrim(sprintf($lang->report->mailTitle->card, count($mail->cards)), ',') ?></h5>
- <table cellpadding='0' cellspacing='0' style='width: 100%; border: 1px solid #e5e5e5; margin-bottom: 15px; border-collapse: collapse; font-size: 13px;'>
- <tr>
- <th style='width: 50px; border: 1px solid #e5e5e5; background-color: #f5f5f5; padding: 5px;'><?php echo $lang->report->idAB;?></th>
- <th style='border: 1px solid #e5e5e5; background-color: #f5f5f5; padding: 5px;'><?php echo $lang->report->cardName;?></th>
- <th style='width: 100px; border: 1px solid #e5e5e5; background-color: #f5f5f5; padding: 5px;'><?php echo $lang->report->deadline;?></th>
- </tr>
- <?php foreach($mail->cards as $card):?>
- <tr>
- <td style='padding: 5px; text-align: center; border: 1px solid #e5e5e5;'><?php echo $card->id;?></td>
- <td style='padding: 5px; border: 1px solid #e5e5e5;'>
- <?php
- $link = $this->createLink('kanban', 'view', "kanbanID=$card->kanban");
- if($config->requestType == 'GET' and strpos($link, 'ztcli') !== false) $link = str_replace($this->server->php_self, $config->webRoot, $link);
- echo html::a($url . $link, $card->name);
- ?>
- </td>
- <td style='padding: 5px; text-align: center; border: 1px solid #e5e5e5;'><?php echo $card->deadline;?></td>
- </tr>
- <?php endforeach;?>
- </table>
- </td>
- </tr>
- <?php endif;?>
- <?php include '../../common/view/mail.footer.html.php';?>
|