1<?php
2
3$conf['appid'] = '';
4$conf['secret'] = '';
5$conf['fanpageid'] = '';
6$conf['ignore'] = 'cover photos';
7$conf['order'] = 'DESC';
8
9$conf['album_template'] = '
10<html>
11<div class="facebookalbum" style="float:left; padding: 5px; ">
12<center>
13  <a href="{url}" title="{name}">
14    <img src="{image_url}" alt="{name}" height="100" width="130" /><br />
15    <small>{name}</small><br />
16    <br />
17  </a>
18</center>
19</div>
20</html>
21';
22
23$conf['picture_template'] = '
24<html>
25<a rel="facebook_album" href="{image_large_url}" title="{caption}" class="thickbox">
26  <img align="left" src="{image_url}" alt="{caption}" vspace="5" hspace="5" height="100" Width="150" />
27</a>
28</html>
29';