Guest User

Untitled

a guest
Jun 13th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.04 KB | None | 0 0
  1. <?php debug($martianPhoto); ?>
  2. <div class="martianPhotos view">
  3. <h2><?php __('MartianPhoto');?></h2>
  4. <dl><?php $i = 0; $class = ' class="altrow"';?>
  5. <dt<?php if ($i % 2 == 0) echo $class;?>><?php __('Id'); ?></dt>
  6. <dd<?php if ($i++ % 2 == 0) echo $class;?>>
  7. <?php echo $martianPhoto['MartianPhoto']['id']; ?>
  8. &nbsp;
  9. </dd>
  10. <dt<?php if ($i % 2 == 0) echo $class;?>><?php __('Martian Feature Id'); ?></dt>
  11. <dd<?php if ($i++ % 2 == 0) echo $class;?>>
  12. <?php echo $martianPhoto['MartianPhoto']['martian_feature_id']; ?>
  13. &nbsp;
  14. </dd>
  15. <dt<?php if ($i % 2 == 0) echo $class;?>><?php __('Created'); ?></dt>
  16. <dd<?php if ($i++ % 2 == 0) echo $class;?>>
  17. <?php echo $martianPhoto['MartianPhoto']['created']; ?>
  18. &nbsp;
  19. </dd>
  20. <dt<?php if ($i % 2 == 0) echo $class;?>><?php __('Name'); ?></dt>
  21. <dd<?php if ($i++ % 2 == 0) echo $class;?>>
  22. <?php echo $martianPhoto['MartianPhoto']['name']; ?>
  23. &nbsp;
  24. </dd>
  25. <dt<?php if ($i % 2 == 0) echo $class;?>><?php __('Filename'); ?></dt>
  26. <dd<?php if ($i++ % 2 == 0) echo $class;?>>
  27. <?php echo $martianPhoto['MartianPhoto']['filename']; ?>
  28.  
  29. <?php echo $html->image ($martianPhoto['MartianPhoto']['filename']); ?>
  30.  
  31.  
  32.  
  33. &nbsp;
  34. </dd>
  35. <dt<?php if ($i % 2 == 0) echo $class;?>><?php __('Description'); ?></dt>
  36. <dd<?php if ($i++ % 2 == 0) echo $class;?>>
  37. <?php echo $martianPhoto['MartianPhoto']['description']; ?>
  38. &nbsp;
  39. </dd>
  40. </dl>
  41. </div>
  42. <div class="actions">
  43. <ul>
  44. <li><?php echo $html->link(__('Edit MartianPhoto', true), array('action'=>'edit', $martianPhoto['MartianPhoto']['id'])); ?> </li>
  45. <li><?php echo $html->link(__('Delete MartianPhoto', true), array('action'=>'delete', $martianPhoto['MartianPhoto']['id']), null, sprintf(__('Are you sure you want to delete # %s?', true), $martianPhoto['MartianPhoto']['id'])); ?> </li>
  46. <li><?php echo $html->link(__('List MartianPhotos', true), array('action'=>'index')); ?> </li>
  47. <li><?php echo $html->link(__('New MartianPhoto', true), array('action'=>'add')); ?> </li>
  48. </ul>
  49. </div>
Add Comment
Please, Sign In to add comment