source: trunk/www.guidonia.net/wp/wp-content/plugins/tubepress/tubepress.php@ 44

Last change on this file since 44 was 44, checked in by luciano, 14 years ago
File size: 1.3 KB
Line 
1<?php
2/**
3Plugin Name: TubePress
4Plugin URI: http://tubepress.org
5Description: Displays gorgeous YouTube galleries in your posts, pages, and/or sidebar. Please visit http://tubepress.org for more info!
6Author: Eric D. Hough
7Version: 1.8.0
8Author URI: http://ehough.com
9
10Copyright 2006, 2007, 2008, 2009 Eric D. Hough (http://ehough.com)
11
12This file is part of TubePress (http://tubepress.org)
13
14TubePress is free software: you can redistribute it and/or modify
15it under the terms of the GNU General Public License as published by
16the Free Software Foundation, either version 3 of the License, or
17(at your option) any later version.
18
19TubePress is distributed in the hope that it will be useful,
20but WITHOUT ANY WARRANTY; without even the implied warranty of
21MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22GNU General Public License for more details.
23
24You should have received a copy of the GNU General Public License
25along with TubePress. If not, see <http://www.gnu.org/licenses/>.
26*/
27
28function_exists("tubepress_classloader")
29 || require("classes/tubepress_classloader.php");
30
31error_reporting(E_ALL ^ E_NOTICE);
32ini_set("display_errors", 1);
33
34include "env/WordPress/hooks/main.php";
35include "env/WordPress/hooks/options_page.php";
36include "env/WordPress/hooks/widget.php";
37
38?>
Note: See TracBrowser for help on using the repository browser.