-
Notifications
You must be signed in to change notification settings - Fork 65
Expand file tree
/
Copy pathwp-appkit.php
More file actions
29 lines (25 loc) · 1.04 KB
/
wp-appkit.php
File metadata and controls
29 lines (25 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<?php
/*
Plugin Name: WP-AppKit
Plugin URI: https://github.com/uncatcrea/wp-appkit
Description: Build mobile apps and PWA based on your WordPress content.
Version: 1.6.0
Author: Uncategorized Creations
Author URI: http://getwpappkit.com
Text Domain: wp-appkit
Domain Path: /lang
License: GPL-2.0+
License URI: http://www.gnu.org/licenses/gpl-2.0.txt
Copyright: 2013-2018 Uncategorized Creations
This plugin, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/
/**
* This is a bootstrap so that WP-AppKit git repository can be cloned directly in
* a previously created "wp-content/plugins/wp-appkit" directory
* with "git clone https://github.com/uncatcrea/wp-appkit ."
*/
require_once(dirname(__FILE__) .'/wp-appkit/wp-appkit.php');
//We have to register activation/deactivation hooks on the current file:
register_activation_hook( __FILE__, array( 'WpAppKit', 'on_activation' ) );
register_deactivation_hook( __FILE__, array( 'WpAppKit', 'on_deactivation' ) );