Show the org logo in the memberslist

pull/195/head
iglocska 2013-05-30 13:56:18 +02:00
parent a2c8ca759d
commit 4ce6ec9a46
1 changed files with 6 additions and 1 deletions

View File

@ -4,13 +4,18 @@
<tr>
<th>Organisation</th>
<th># of members</th>
<th>Logo</th>
</tr>
<?php
foreach ($orgs as $org):?>
<tr>
<td><?php echo $org['User']['org']; ?>&nbsp;</td>
<td><?php echo $org[0]['num_members']; ?>&nbsp;</td>
<?php
$imgRelativePath = 'orgs' . DS . h($org['User']['org']) . '.png';
$imgAbsolutePath = APP . WEBROOT_DIR . DS . 'img' . DS . $imgRelativePath;
?>
<td><?php if (file_exists($imgAbsolutePath)) echo $this->Html->image('orgs/' . h($org['User']['org']) . '.png', array('alt' => h($org['User']['org']),'width' => '48','hight' => '48'));?>&nbsp</td>
</tr>
<?php
endforeach; ?>