| 1 |
<?php |
| 2 |
/* |
| 3 |
Plugin Name: Meow Gallery |
| 4 |
Plugin URI: https://meowapps.com |
| 5 |
Bitbucket Plugin URI: https://bitbucket.org/meowapps/meow-gallery/ |
| 6 |
Description: Gallery system built for photographers, by photographers. |
| 7 |
Version: 4.2.1 |
| 8 |
Author: Jordy Meow, Thomas Kim |
| 9 |
Author URI: https://meowapps.com |
| 10 |
Text Domain: meow-gallery |
| 11 |
Domain Path: /languages |
| 12 |
|
| 13 |
Originally developed for two of my websites: |
| 14 |
- Jordy Meow (https://offbeatjapan.org) |
| 15 |
- Haikyo (https://haikyo.org) |
| 16 |
*/ |
| 17 |
|
| 18 |
define( 'MGL_VERSION', '4.2.1' ); |
| 19 |
define( 'MGL_PREFIX', 'mgl' ); |
| 20 |
define( 'MGL_DOMAIN', ' meow-gallery' ); |
| 21 |
define( 'MGL_ENTRY', __FILE__ ); |
| 22 |
define( 'MGL_PATH', dirname( __FILE__ ) ); |
| 23 |
define( 'MGL_URL', plugin_dir_url( __FILE__ ) ); |
| 24 |
|
| 25 |
require_once( 'classes/init.php'); |
| 26 |
|
| 27 |
?> |
| 28 |
|