facebook_album_photos.tpl.php in Facebook Album 7.2
Same filename and directory in other branches
1 theme call to facebook_album_photos.tpl.php
- facebook_album_build_photo_template in ./
facebook_album.module - Build the template for displaying album photos
File
templates/facebook_album_photos.tpl.phpView source
<?php
foreach ($photos as $photo) {
?>
<div class="photo-wrapper">
<a class="photo-thumb ''" target="_blank" title="" href="">
<span class="photo-thumb-wrapper">
<i data-photo-id="<?php
print $photo['id'];
?>" style="width: <?php
print $settings['photoThumbWidth'] . 'px';
?>; height:<?php
print $settings['photoThumbHeight'] . 'px';
?>;"></i>
</span>
</a>
</div>
<?php
}