-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathclass-display-medium-posts-admin.php
159 lines (134 loc) · 4.27 KB
/
class-display-medium-posts-admin.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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
<?php
/**
* The admin-specific functionality of the plugin.
*
* @link http://www.acekyd.com
* @since 1.0.0
*
* @package Display_Medium_Posts
* @subpackage Display_Medium_Posts/admin
*/
/**
* The admin-specific functionality of the plugin.
*
* Defines the plugin name, version, and two examples hooks for how to
* enqueue the admin-specific stylesheet and JavaScript.
*
* @package Display_Medium_Posts
* @subpackage Display_Medium_Posts/admin
* @author AceKYD <[email protected]>
*/
class Display_Medium_Posts_Admin {
/**
* The ID of this plugin.
*
* @since 1.0.0
* @access private
* @var string $plugin_name The ID of this plugin.
*/
private $plugin_name;
/**
* The version of this plugin.
*
* @since 1.0.0
* @access private
* @var string $version The current version of this plugin.
*/
private $version;
/**
* Initialize the class and set its properties.
*
* @since 1.0.0
* @param string $plugin_name The name of this plugin.
* @param string $version The version of this plugin.
*/
public function __construct( $plugin_name, $version ) {
$this->plugin_name = $plugin_name;
$this->version = $version;
$this->display_medium_posts_options = get_option($this->plugin_name);
}
/**
* Register the stylesheets for the admin area.
*
* @since 1.0.0
*/
public function enqueue_styles() {
/**
* This function is provided for demonstration purposes only.
*
* An instance of this class should be passed to the run() function
* defined in Display_Medium_Posts_Loader as all of the hooks are defined
* in that particular class.
*
* The Display_Medium_Posts_Loader will then create the relationship
* between the defined hooks and the functions defined in this
* class.
*/
if ( 'settings_page_display-medium-posts' == get_current_screen() -> id ) {
// CSS stylesheet for Color Picker
wp_enqueue_style( 'wp-color-picker' );
wp_enqueue_style( $this->plugin_name, plugin_dir_url( __FILE__ ) . 'css/display-medium-posts-admin.css', array( 'wp-color-picker' ), $this->version, 'all' );
}
}
/**
* Register the JavaScript for the admin area.
*
* @since 1.0.0
*/
public function enqueue_scripts() {
/**
* This function is provided for demonstration purposes only.
*
* An instance of this class should be passed to the run() function
* defined in Display_Medium_Posts_Loader as all of the hooks are defined
* in that particular class.
*
* The Display_Medium_Posts_Loader will then create the relationship
* between the defined hooks and the functions defined in this
* class.
*/
if ( 'settings_page_display-medium-posts' == get_current_screen() -> id ) {
wp_enqueue_media();
wp_enqueue_script( $this->plugin_name, plugin_dir_url( __FILE__ ) . 'js/display-medium-posts-admin.js', array( 'jquery', 'wp-color-picker' ), $this->version, false );
}
}
/**
* Register the administration menu for this plugin into the WordPress Dashboard menu.
*
* @since 1.0.0
*/
public function add_plugin_admin_menu() {
/*
* Add a settings page for this plugin to the Settings menu.
*
* NOTE: Alternative menu locations are available via WordPress administration menu functions.
*
* Administration Menus: http://codex.wordpress.org/Administration_Menus
*
*/
add_options_page( 'Display Medium Posts', 'Medium Posts', 'manage_options', $this->plugin_name, array($this, 'display_plugin_setup_page')
);
}
/**
* Add settings action link to the plugins page.
*
* @since 1.0.0
*/
public function add_action_links( $links ) {
/*
* Documentation : https://codex.wordpress.org/Plugin_API/Filter_Reference/plugin_action_links_(plugin_file_name)
*/
$settings_link = array(
'<a href="' . admin_url( 'options-general.php?page=' . $this->plugin_name ) . '">' . __('Settings', $this->plugin_name) . '</a>',
);
return array_merge( $settings_link, $links );
}
/**
* Render the settings page for this plugin.
*
* @since 1.0.0
*/
public function display_plugin_setup_page() {
include_once( 'partials/display-medium-posts-admin-display.php' );
}
}