-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprogpress.nanowrimo.php
47 lines (38 loc) · 1.49 KB
/
progpress.nanowrimo.php
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<?php
/*
Plugin Name: ProgPress - NaNoWriMo Support
Plugin URI: http://jasonpenney.net/wordpress-plugins/progpress/
Description: Adds support for NaNoWriMo API to ProgPress ([progpress nanowrimo=*username* ])
Version: 1.2.1
Author: Jason Penney
Author URI: http://jasonpenney.net/
Copyright 2010 Jason Penney (email : jpenney[at]jczorkmid.net )
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation using version 2 of the License.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
/**
* NaNoWriMo API support plugin for ProgPress
*
* @package ProgPress
* @subpackage NaNoWriMo
* @since 1.1
* @version 1.1
*/
/**
* This file holds the actual guts of the plugin
*/
require_once(dirname(__FILE__) . '/php/class.JCP_ProgPress_NaNoWriMo.php');
if (class_exists("JCP_ProgPress_NaNoWriMo")) {
register_activation_hook(__FILE__,
array('JCP_ProgPress_NaNoWriMo',
'activate_plugin'));
add_action('init',array('JCP_ProgPress_NaNoWriMo','init_plugin'));
}