xref: /plugin/bez/tpl/task.php (revision 47b323790618b97a55152bbe128d5971c880dd37)
1510f3b21Sghi<a name="z<?php echo $task['id'] ?>"></a>
2510f3b21Sghi<div id="z<?php echo $task['id'] ?>" class="task
3510f3b21Sghi	<?php
4510f3b21Sghi		switch($task['state']) {
5510f3b21Sghi			case $bezlang['task_opened']:
6510f3b21Sghi				echo 'opened';
7510f3b21Sghi				break;
8510f3b21Sghi			case $bezlang['task_done']:
9510f3b21Sghi				echo 'closed';
10510f3b21Sghi				break;
11510f3b21Sghi			case $bezlang['task_rejected']:
12510f3b21Sghi				echo 'rejected';
13510f3b21Sghi				break;
14510f3b21Sghi		}
15510f3b21Sghi	?>">
16510f3b21Sghi
17510f3b21Sghi<div class="bez_timebox">
18510f3b21Sghi	<span><strong><?php echo $bezlang['open'] ?>:</strong> <?php echo $helper->time2date($task['date']) ?></span>
19510f3b21Sghi	<?php if ($task['state'] != $bezlang['task_opened']): ?>
20510f3b21Sghi		<span>
21510f3b21Sghi			<strong><?php echo $task['state']?>:</strong>
22510f3b21Sghi			<?php echo $helper->time2date($task['close_date']) ?>
23510f3b21Sghi		</span>
24510f3b21Sghi	<?php endif ?>
25510f3b21Sghi</div>
26510f3b21Sghi
27510f3b21Sghi<h2>
2827712358Sghi	<a href="?id=<?php echo $this->id('issue_task', 'id', $template['issue']['id'], 'tid', $task['id']) ?>">
2927712358Sghi		#z<?php echo $task['id'] ?>
3027712358Sghi	</a>
31510f3b21Sghi	<?php echo lcfirst($task['action']) ?>
32510f3b21Sghi	(<?php echo lcfirst($task['state']) ?>)
33510f3b21Sghi</h2>
34510f3b21Sghi
35510f3b21Sghi<table>
36510f3b21Sghi<tr>
3727712358Sghi		<td>
3827712358Sghi			<strong><?php echo $bezlang['executor'] ?>:</strong>
3927712358Sghi			<?php echo $task['executor'] ?>
4027712358Sghi		</td>
41510f3b21Sghi
42510f3b21Sghi		<?php if ($task['cost'] != 0): ?>
4327712358Sghi			<td>
4427712358Sghi				<strong><?php echo $bezlang['cost'] ?>:</strong>
4527712358Sghi				<?php echo $task['cost'] ?>
4627712358Sghi			</td>
47510f3b21Sghi		<?php endif ?>
48510f3b21Sghi</tr>
49510f3b21Sghi</table>
50510f3b21Sghi
51510f3b21Sghi<?php echo $task['task'] ?>
52510f3b21Sghi
53*47b32379Sghi<?php if (isset($task['cause_text'])): ?>
54*47b32379Sghi	<h3>
55*47b32379Sghi		<a href="?id=<?php echo $this->id('issue_task', 'id', $template['issue']['id'], 'tid', $task['id']) ?>">
56*47b32379Sghi			#p<?php echo $task['cause_id'] ?>
57*47b32379Sghi		</a>
58*47b32379Sghi		<?php echo lcfirst($task[rootcause]) ?>
59*47b32379Sghi	</h3>
60*47b32379Sghi	<?php echo $task['cause_text'] ?>
61*47b32379Sghi<?php endif ?>
62*47b32379Sghi
63510f3b21Sghi<?php if ($task['rejected']): ?>
64510f3b21Sghi	<h3><?php echo $bezlang['reason'] ?></h3>
65510f3b21Sghi	<?php echo $task['reason'] ?>
66510f3b21Sghi<?php endif ?>
67510f3b21Sghi
6827712358Sghi<div class="bez_buttons">
6927712358Sghi	<a class="bds_inline_button" href="
70510f3b21Sghi		<?php echo $helper->mailto($task['executor_email'],
71510f3b21Sghi		$bezlang['task'].': #'.$task['issue'].' '.$template['issue']['title'].' | #z'.$task['id'].' '.$task['action'],
72510f3b21Sghi		$template['uri'].'#z'.$task['id']) ?>">
73510f3b21Sghi<?php echo $bezlang['send_mail'] ?>
74510f3b21Sghi	</a>
7527712358Sghi	<?php if ($template['issue'][raw_state] == 0 &&
7627712358Sghi	($task['executor_nick'] == $INFO['client'] || $helper->user_coordinator($template[issue][id]))): ?>
7727712358Sghi		<a class="bds_inline_button"
7827712358Sghi			href="?id=<?php echo $this->id('issue_show', $template['issue']['id'], 'edit', 'task', $task['id']) ?>#z_">
7927712358Sghi<?php echo $bezlang['edit'] ?>
80510f3b21Sghi	</a>
81510f3b21Sghi	<?php endif ?>
8227712358Sghi</div>
8327712358Sghi</div>
8427712358Sghi
85