PluginProbe
Social Engine / 0.2.1
Social Engine v0.2.1
0.9.2 0.9.1 0.9.0 0.8.9 trunk 0.0.1 0.0.2 0.0.4 0.0.5 0.0.7 0.0.8 0.0.9 0.1.1 0.1.2 0.1.3 0.1.4 0.1.5 0.1.6 0.1.8 0.1.9 0.2.0 0.2.1 0.2.2 0.2.3 0.2.4 All 88 releases
social-engine / social-engine.php

social-engine.php in Social Engine 0.2.1, at social-engine.php

28 lines 855 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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.1
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.1' );
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