YaWK  24.1
Yet another WebKit
fb_gallery.php
Go to the documentation of this file.
1 <?php
2 if (!isset($db) || (empty($db)))
3 { // if not, create new db obj
4  $db = new \YAWK\db();
5 }
6 
7 // check if gallery obj is set
8 if (!isset($fbGallery) || (empty($fbGallery)))
9 {
10  // if not, load fb gallery class
11  require_once ('classes/fbGallery.php');
12  // create fb gallery object
13  $fbGallery = new \YAWK\WIDGETS\FACEBOOK\GALLERY\fbGallery($db);
14  // ok, load gallery
15  $fbGallery->drawGallery();
16 }
17 ?>