source: trunk/www.guidonia.net/wp/wp-content/plugins/tubepress/classes/org/tubepress/gallery/Gallery.class.php@ 44

Last change on this file since 44 was 44, checked in by luciano, 14 years ago
File size: 2.0 KB
Line 
1<?php
2/**
3 * Copyright 2006, 2007, 2008, 2009 Eric D. Hough (http://ehough.com)
4 *
5 * This file is part of TubePress (http://tubepress.org)
6 *
7 * TubePress is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * TubePress is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with TubePress. If not, see <http://www.gnu.org/licenses/>.
19 *
20 */
21
22function_exists('tubepress_load_classes')
23 || require(dirname(__FILE__) . '/../../../tubepress_classloader.php');
24tubepress_load_classes(array('org_tubepress_gallery_AbstractGallery'));
25
26/**
27 * Regular TubePress gallery
28 */
29class org_tubepress_gallery_Gallery extends org_tubepress_gallery_AbstractGallery
30{
31 const FAVORITES = "favorites";
32 const FEATURED = "recently_featured";
33 const MOBILE = "mobile";
34 const MOST_DISCUSSESD = "most_discussed";
35 const MOST_LINKED = "most_linked";
36 const MOST_RECENT = "most_recent";
37 const MOST_RESPONDED = "most_responded";
38 const PLAYLIST = "playlist";
39 const POPULAR = "most_viewed";
40 const TAG = "tag";
41 const TOP_RATED = "top_rated";
42 const USER = "user";
43
44 /**
45 * Generates the content of this gallery
46 *
47 * @return The HTML content for this gallery
48 */
49 public final function generate($galleryId)
50 {
51 try {
52 $this->setTemplateDirectory(dirname(__FILE__) . "/../../../../ui/gallery/html_templates");
53 return $this->generateThumbs($galleryId);
54 } catch (Exception $e) {
55 return $e->getMessage();
56 }
57 }
58}
Note: See TracBrowser for help on using the repository browser.