| [ Index ] |
PHP Cross Reference of Drupal 6 (gatewave) |
[Summary view] [Print] [Text view]
1 <?php if ($images): ?> 2 <div class="comment-upload-images"> 3 <?php foreach ($images as $fid => $image): ?> 4 <a href="<?php print $image['url'] ?>"><?php print $image['image'] ?></a> 5 <?php endforeach; ?> 6 </div> 7 <?php endif; ?> 8 9 <?php if ($attachments): ?> 10 <table class="comment-upload-attachments"> 11 <thead> 12 <tr><th><?php print t('Attachment') ?></th><th><?php print t('Size') ?></th></tr> 13 </thead> 14 <tbody> 15 <?php foreach ($attachments as $fid => $attachment): ?> 16 <tr class="<?php print $attachment['zebra'] ?>"> 17 <td class="attachment-description"><a href="<?php print $attachment['url'] ?>"><?php print $attachment['text'] ?></a></td> 18 <td class="attachment-size"><?php print $attachment['size'] ?></td> 19 </tr> 20 <?php endforeach; ?> 21 </tbody> 22 </table> 23 <?php endif; ?>
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
| Generated: Thu Mar 24 11:18:33 2011 | Cross-referenced by PHPXref 0.7 |