the-events-calendar.php 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738
  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.23
  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. Copyright 2009-2012 by Modern Tribe Inc and the contributors
  13. This program is free software; you can redistribute it and/or
  14. modify it under the terms of the GNU General Public License
  15. as published by the Free Software Foundation; either version 2
  16. of the License, or (at your option) any later version.
  17. This program is distributed in the hope that it will be useful,
  18. but WITHOUT ANY WARRANTY; without even the implied warranty of
  19. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  20. GNU General Public License for more details.
  21. You should have received a copy of the GNU General Public License
  22. along with this program; if not, write to the Free Software
  23. Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  24. */
  25. define( 'TRIBE_EVENTS_FILE', __FILE__ );
  26. // the main plugin class
  27. require_once dirname( __FILE__ ) . '/src/Tribe/Main.php';
  28. Tribe__Events__Main::instance();
  29. register_activation_hook( __FILE__, array( 'Tribe__Events__Main', 'activate' ) );
  30. register_deactivation_hook( __FILE__, array( 'Tribe__Events__Main', 'deactivate' ) );