File: RecentChanges.html.php

package info (click to toggle)
php-horde-wicked 2.0.1-4
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 2,528 kB
  • ctags: 1,236
  • sloc: php: 5,386; xml: 1,027; makefile: 10; sh: 3
file content (20 lines) | stat: -rw-r--r-- 825 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<br />
<table class="horde-table" width="100%">
<?php foreach ($this->changes as $change): ?>
 <thead>
  <tr>
   <th colspan="4"><?php echo $change['date'] ?></th>
  </tr>
 </thead>
 <tbody>
<?php foreach ($change['pages'] as $page): ?>
  <tr>
   <td class="nowrap" width="20%"><a href="<?php echo $page['url'] ?>"><?php echo $page['name'] ?></a></td>
   <td class="nowrap" width="5%"><a href="<?php echo $page['version_url'] ?>" title="<?php echo $page['version_alt'] ?>"><?php echo $page['version'] ?></a> <a href="<?php echo $page['diff_url'] ?>" title="<?php echo $page['diff_alt'] ?>"><?php echo $page['diff_img'] ?></a></td>
   <td class="nowrap" width="15%"><?php echo $page['author'] ?></td>
   <td width="58%"><?php echo $page['change_log'] ?></td>
  </tr>
<?php endforeach ?>
 </tbody>
<?php endforeach ?>
</table>