| 1 |
<?php |
| 2 |
/* |
| 3 |
Plugin Name: Social Engine |
| 4 |
Plugin URI: https://meowapps.com |
| 5 |
Description: Organize, schedule and automate the publishing of your content and photos on social accounts. Similar to TweetDeck, Buffer, Falcon, ContentCal, except it is unlimited and extensible infinitely! |
| 6 |
Version: 0.2.4 |
| 7 |
Author: Jordy Meow |
| 8 |
Author URI: https://jordymeow.com |
| 9 |
Text Domain: social-engine |
| 10 |
|
| 11 |
Dual licensed under the MIT and GPL licenses: |
| 12 |
http://www.opensource.org/licenses/mit-license.php |
| 13 |
http://www.gnu.org/licenses/gpl.html |
| 14 |
*/ |
| 15 |
|
| 16 |
if ( !defined( 'SCLEGN_VERSION' ) ) { |
| 17 |
define( 'SCLEGN_VERSION', '0.2.4' ); |
| 18 |
define( 'SCLEGN_PREFIX', 'sclegn' ); |
| 19 |
define( 'SCLEGN_DOMAIN', 'social-engine' ); |
| 20 |
define( 'SCLEGN_ENTRY', __FILE__ ); |
| 21 |
define( 'SCLEGN_PATH', dirname( __FILE__ ) ); |
| 22 |
define( 'SCLEGN_URL', plugin_dir_url( __FILE__ ) ); |
| 23 |
} |
| 24 |
|
| 25 |
require_once( 'classes/init.php' ); |
| 26 |
|
| 27 |
?> |
| 28 |
|