?>
</td>
		<td><?php 
echo $task->getLongName($result['task_id']);
?>
</td>
		<td><?php 
echo $ic->getCodeName($result['item_code_id']);
?>
</td>
		<td><?php 
echo date('Y-m-d H:i', $result['start_ts']) . ' - ' . date('H:i', $result['end_ts']);
?>
</td>
		<td><?php 
echo $user->getUserName($result['user_id']);
?>
</td>
		<td><?php 
echo $result['message'];
?>
</td>
	</tr>
<? } ?>
	</table>
	</div></div>
<? } ?>
</td></tr>
<tr>
  <td>
  	<input type="submit" name="restart" class="button" value="Restart" />
Beispiel #2
0
				if(!$project->hasRights(PROJECT_RIGHT_FULL)){
					fatal_error('Insufficent access rights to add users!');
				}
				if($project->addUserRight($_POST['right_user_id'], $_POST['right_level']) === FALSE){
					$error_msg .= "Error adding user access to project!\n";
					debug_message($project->getLastError());
				}else{
					$activities[] = "Added user right level {$_POST['right_level']} to ".SI_User::getUserName($_POST['right_user_id']);
				}
			}
			if(isset($_POST['new_cc_id']) && $_POST['new_cc_id'] > 0){
				if($project->addCC($_POST['new_cc_id']) === FALSE){
					$error_msg .= "Error adding new CC to project!\n";
					debug_message($project->getLastError());
				}else{
					$activities[] = "Added ".SI_User::getUserName($_POST['new_cc_id'])." to project CC list";
				}
			}

			if($project->sendUpdateNotification($activities) === FALSE){
				$error_msg .= "Error sending update notification!\n";
				debug_message($project->getLastError());
			}

			if(empty($error_msg) && $_POST['save'] == "Save"){
				goBack();
			}
		}else{
			$error_msg .= "Error updating Project!\n";
			debug_message($project->getLastError());
		}