PluginProbe
Meow Gallery / trunk
Meow Gallery vtrunk
5.5.3 5.5.2 5.5.1 5.5.0 5.4.9 5.4.8 5.4.7 4.1.5 4.1.6 4.1.7 4.1.8 4.1.9 4.2.0 4.2.1 4.2.2 4.2.3 4.2.4 4.2.5 4.2.6 4.2.7 4.2.8 4.2.9 4.3.0 4.3.1 4.3.2 All 155 releases
meow-gallery / meow-gallery.php

meow-gallery.php in Meow Gallery trunk, at meow-gallery.php

30 lines 757 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /*
3 Plugin Name: Meow Gallery
4 Plugin URI: https://meowapps.com
5 Description: Gallery system built for photographers, by photographers.
6 Version: 5.5.3
7 Author: Jordy Meow
8 Author URI: https://meowapps.com
9 Text Domain: meow-gallery
10 Domain Path: /languages
11
12 Originally developed for two of my websites:
13 - Jordy Meow (https://offbeatjapan.org)
14 - Haikyo (https://haikyo.org)
15 */
16
17 if ( !defined( 'MGL_VERSION' ) ) {
18 define( 'MGL_VERSION', '5.5.3' );
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 define( 'MGL_ITEM_ID', 6232 );
25 }
26
27 require_once( 'classes/init.php');
28
29 ?>
30