You are here

photos_default.tpl.php in Album Photos 7.3

Same filename and directory in other branches
  1. 6.2 tpl/photos_default.tpl.php

Formats default layout.

File

tpl/photos_default.tpl.php
View source
<?php

/**
 * @file
 * Formats default layout.
 */
?>
<div id="photos_default">
  <?php

if (isset($content['user']['image'])) {
  ?>
    <h2><?php

  print t('My latest images');
  ?></h2>
    <?php

  print $content['user']['image'];
  ?>
  <?php

}
?>
  <?php

if (isset($content['user']['album'])) {
  ?>
    <h2><?php

  print t('My latest albums');
  ?></h2>
    <?php

  print $content['user']['album'];
  ?>
  <?php

}
?>
  <?php

if (isset($content['site']['image'])) {
  ?>
    <h2><?php

  print t('Latest images');
  ?></h2>
    <?php

  print $content['site']['image'];
  ?>
  <?php

}
?>
  <?php

if (isset($content['site']['album'])) {
  ?>
    <h2><?php

  print t('Latest albums');
  ?></h2>
    <?php

  print $content['site']['album'];
  ?>
  <?php

}
?>
</div>