the-events-calendar
Last commit date
common
6 years ago
lang
8 years ago
src
6 years ago
vendor
8 years ago
license.txt
8 years ago
readme.txt
6 years ago
the-events-calendar.php
6 years ago
the-events-calendar.php
40 lines
| 1 | <?php |
| 2 | /* |
| 3 | Plugin Name: The Events Calendar |
| 4 | Description: The Events Calendar is a carefully crafted, extensible plugin that lets you easily share your events. Beautiful. Solid. Awesome. |
| 5 | Version: 4.6.11.2 |
| 6 | Author: Modern Tribe, Inc. |
| 7 | Author URI: http://m.tri.be/1x |
| 8 | Text Domain: the-events-calendar |
| 9 | License: GPLv2 or later |
| 10 | */ |
| 11 | |
| 12 | /* |
| 13 | Copyright 2009-2012 by Modern Tribe Inc and the contributors |
| 14 | |
| 15 | This program is free software; you can redistribute it and/or |
| 16 | modify it under the terms of the GNU General Public License |
| 17 | as published by the Free Software Foundation; either version 2 |
| 18 | of the License, or (at your option) any later version. |
| 19 | |
| 20 | This program is distributed in the hope that it will be useful, |
| 21 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 22 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 23 | GNU General Public License for more details. |
| 24 | |
| 25 | You should have received a copy of the GNU General Public License |
| 26 | along with this program; if not, write to the Free Software |
| 27 | Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
| 28 | */ |
| 29 | |
| 30 | define( 'TRIBE_EVENTS_FILE', __FILE__ ); |
| 31 | |
| 32 | // the main plugin class |
| 33 | require_once dirname( __FILE__ ) . '/src/Tribe/Main.php'; |
| 34 | |
| 35 | Tribe__Events__Main::instance(); |
| 36 | |
| 37 | register_activation_hook( __FILE__, array( 'Tribe__Events__Main', 'activate' ) ); |
| 38 | register_deactivation_hook( __FILE__, array( 'Tribe__Events__Main', 'deactivate' ) ); |
| 39 | |
| 40 |