commit initial
[mw_actions_logs] / app / out / default / views / admin / actions_logs / historique.php
1 <h2>Historique des actions</h2>
2
3 <ul class="buttons">
4   <li><a href="<?php echo $this->url("admin/actions_logs/del_historique"); ?>"
5        class="del"
6        onclick="return confirm('Vider l hitorique ?')">Vider l'historique <img src="<?php echo $this->out_url("icons/del.gif"); ?>"/></a></li>
7 </ul>
8
9 <?php if($this->out["historique"]["list"]) : ?>
10
11 <?php $items = "historique"; $legend = "logs"; require $this->out_file("views/navig.php"); ?>
12
13 <table class="admin">
14   <tr>
15     <th>Date</th>
16     <th>Action</th>
17     <th>Login</th>
18     <th>GET</th>
19     <th>POST</th>
20   </tr>
21 <?php foreach($this->out["historique"]["list"] as $i => $log) : ?>
22   <tr>
23     <td class="small"><?php echo $log["date_log"]; ?></td>
24     <td class="small"><?php echo $log["action"]; ?></td>
25     <td class="small"><?php echo $log["login"]; ?></td>
26     <td class="log_params_td">
27       <?php if($log["get"]) : ?>
28       <div class="log_params_content" id="get_content_<?php echo $i; ?>">
29         <table>
30           <?php foreach($log["get"] as $key => $value) : ?>
31           <tr>
32             <th><?php echo $key; ?></th>
33             <td><?php echo $value; ?></td>
34           </tr>
35           <?php endforeach; ?>
36         </table>
37       </div>
38       <a class="see_get_content" id="see_get_content_<?php echo $i; ?>" href="#">voir</a>
39       <?php endif; ?>
40     </td>
41     <td class="log_params_td">
42       <?php if($log["post"]) : ?>
43       <div class="log_params_content" id="post_content_<?php echo $i; ?>">
44         <table>
45           <?php foreach($log["post"] as $key => $value) : ?>
46           <tr>
47             <th><?php echo $key; ?></th>
48             <td><?php echo $value; ?></td>
49           </tr>
50           <?php endforeach; ?>
51         </table>
52       </div>
53       <a class="see_post_content" id="see_post_content_<?php echo $i; ?>" href="#">voir</a>
54       <?php endif; ?>
55     </td>
56   </tr>
57 <?php endforeach; ?>
58 </table>
59
60 <?php $items = "historique"; $legend = "logs"; require $this->out_file("views/navig.php"); ?>
61
62 <?php else : ?>
63
64 <p>Aucun log pour le moment.</p>
65
66 <?php endif; ?>