pngx-common.php 1.1 KB

12345678910111213141516171819202122232425262728
  1. <?php
  2. /*
  3. Plugin Name: Plugin Engine
  4. Description: A plugin framework to be embeded in the core plugin
  5. Version: 2.6
  6. Author: Jessee Productions, LLC
  7. Author URI: https://jesseeproductions.com/
  8. Text Domain: plugin-engine
  9. License: GPLv2 or later
  10. */
  11. /*
  12. Copyright 2009-2018 by Jessee Productions, LLC 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. // the main plugin class
  26. require_once dirname( __FILE__ ) . '/src/Pngx/Main.php';
  27. Pngx__Main::instance();