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