-
Notifications
You must be signed in to change notification settings - Fork 3
/
wp-redditjs.php
91 lines (80 loc) · 2.64 KB
/
wp-redditjs.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<?php
/**
* The WordPress Plugin Boilerplate.
*
* A foundation off of which to build well-documented WordPress plugins that
* also follow WordPress Coding Standards and PHP best practices.
*
* @package WP_Redditjs
* @author Your Name <[email protected]>
* @license GPL-2.0+
* @link http://example.com
* @copyright 2014 Your Name or Company Name
*
* @wordpress-plugin
* Plugin Name: wp-redditjs
* Plugin URI: http://redditjs.com
* Description: wp-redditjs
* Version: 1.0.0
* Author: Benjamin Adams
* Author URI: http://redditjs.com
* Text Domain: wp-redditjs
* License: GPL-2.0+
* License URI: http://www.gnu.org/licenses/gpl-2.0.txt
* Domain Path: /languages
* GitHub Plugin URI: https://github.com/benjaminadams\wp-redditjs
*/
// If this file is called directly, abort.
if ( ! defined( 'WPINC' ) ) {
die;
}
require_once('widget.php');
/*----------------------------------------------------------------------------*
* Public-Facing Functionality
*----------------------------------------------------------------------------*/
/*
* wp-redditjs:
*
* - replace `class-plugin-name.php` with the name of the plugin's class file
*
*/
require_once( plugin_dir_path( __FILE__ ) . 'public/wp-redditjs.php' );
/*
* Register hooks that are fired when the plugin is activated or deactivated.
* When the plugin is deleted, the uninstall.php file is loaded.
*
* wp-redditjs:
*
*/
register_activation_hook( __FILE__, array( 'WP_Redditjs', 'activate' ) );
register_deactivation_hook( __FILE__, array( 'WP_Redditjs', 'deactivate' ) );
/*
* wp-redditjs:
*
* - replace WP_Redditjs with the name of the class defined in
* `class-plugin-name.php`
*/
add_action( 'plugins_loaded', array( 'WP_Redditjs', 'get_instance' ) );
/*----------------------------------------------------------------------------*
* Dashboard and Administrative Functionality
*----------------------------------------------------------------------------*/
/*
* wp-redditjs:
*
* - replace `class-plugin-name-admin.php` with the name of the plugin's admin file
* - replace WP_Redditjs_Admin with the name of the class defined in
* `class-plugin-name-admin.php`
*
* If you want to include Ajax within the dashboard, change the following
* conditional to:
*
* if ( is_admin() ) {
* ...
* }
*
* The code below is intended to to give the lightest footprint possible.
*/
if ( is_admin() && ( ! defined( 'DOING_AJAX' ) || ! DOING_AJAX ) ) {
require_once( plugin_dir_path( __FILE__ ) . 'admin/wp-redditjs-admin.php' );
add_action( 'plugins_loaded', array( 'WP_Redditjs_Admin', 'get_instance' ) );
}