This repository has been archived by the owner on Apr 16, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
posts-in-sidebar.php
237 lines (210 loc) · 6.59 KB
/
posts-in-sidebar.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
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
<?php
/**
* The plugin bootstrap file
*
* This file is read by WordPress to generate the plugin information in the plugin
* admin area. This file also includes all of the dependencies used by the plugin,
* registers the activation and deactivation functions, and defines a function
* that starts the plugin.
*
* @link https://dev.aldolat.it/projects/posts-in-sidebar/
* @since 1.0.0
* @package PostsInSidebar
* @license GPLv3 or later
*
* @wordpress-plugin
* Plugin Name: Posts in Sidebar
* Plugin URI: https://dev.aldolat.it/projects/posts-in-sidebar/
* Description: Publish a list of posts in your sidebar
* Version: 4.16.3
* Author: Aldo Latino
* Author URI: https://www.aldolat.it/
* Text Domain: posts-in-sidebar
* Domain Path: /languages/
* License: GPLv3 or later
*/
/*
Copyright (C) 2009, 2021 Aldo Latino (email : aldolat@gmail.com)
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, either version 3 of the License, or
(at your option) any later version.
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, see <http://www.gnu.org/licenses/>.
*/
/**
* Prevent direct access to this file.
*
* @since 2.0
*/
if ( ! defined( 'WPINC' ) ) {
exit( 'No script kiddies please!' );
}
/**
* Launch Posts in Sidebar.
*
* @since 1.27
*/
add_action( 'plugins_loaded', 'pis_setup' );
/**
* Setup Posts in Sidebar.
*
* @since 1.27
*/
function pis_setup() {
/*
* Define the version of the plugin.
*/
define( 'PIS_VERSION', '4.16.3' );
/*
* Make plugin available for i18n.
* Translations must be archived in the /languages/ directory.
* The name of each translation file must be, for example:
*
* ITALIAN:
* posts-in-sidebar-it_IT.po
* posts-in-sidebar-it_IT.mo
*
* GERMAN:
* posts-in-sidebar-de_DE.po
* posts-in-sidebar-de_DE.po
*
* and so on.
*
* @since 0.1
*/
load_plugin_textdomain( 'posts-in-sidebar', false, dirname( plugin_basename( __FILE__ ) ) . '/languages' );
/*
* Load the plugin's main function.
*
* @since 3.8.1
*/
require_once plugin_dir_path( __FILE__ ) . 'includes/pis-core.php';
/*
* Load the plugin's functions.
*
* @since 1.23
*/
require_once plugin_dir_path( __FILE__ ) . 'includes/pis-functions-queries.php';
require_once plugin_dir_path( __FILE__ ) . 'includes/pis-functions-display.php';
require_once plugin_dir_path( __FILE__ ) . 'includes/pis-functions-general.php';
require_once plugin_dir_path( __FILE__ ) . 'includes/pis-functions-tools.php';
/*
* Load Posts in Sidebar's widgets.
*/
add_action( 'widgets_init', 'pis_load_widgets' );
/*
* Load the shortcode.
*
* @since 3.0
*/
require_once plugin_dir_path( __FILE__ ) . 'includes/pis-shortcode.php';
/*
* Load the script.
*
* @since 1.29
*/
add_action( 'admin_enqueue_scripts', 'pis_load_scripts' );
/*
* Add links to plugins list line.
*
* @since 3.1
*/
add_filter( 'plugin_row_meta', 'pis_add_links', 10, 2 );
}
/**
* Load the Javascript and CSS file.
*
* The file will be loaded only in the widgets admin page.
* If the plugin "Page Builder by SiteOrigin" is active, it will be loaded
* in post.php too.
*
* @param string $hook The page where to load scripts.
* @since 2.0
* @since 4.13.0 Added code for duplicate widget.
* @since 4.14.0 Added check if Duplicate Widgets plugin is active.
*/
function pis_load_scripts( $hook ) {
if ( is_plugin_active( 'siteorigin-panels/siteorigin-panels.php' ) && 'post.php' === $hook ) {
// Register and enqueue the CSS file.
wp_register_style( 'pis_style', plugins_url( 'assets/pis-admin.css', __FILE__ ), array(), PIS_VERSION, 'all' );
wp_enqueue_style( 'pis_style' );
} else {
if ( 'widgets.php' === $hook ) {
// Register and enqueue the JS file.
wp_register_script( 'pis_js', plugins_url( 'assets/pis-admin.js', __FILE__ ), array( 'jquery' ), PIS_VERSION, false );
wp_enqueue_script( 'pis_js' );
// Do not load the JS for duplicate a widget if Duplicate Widgets plugin is active.
if ( ! is_plugin_active( 'duplicate-widgets/duplicate-widgets.php' ) ) {
// Register and enqueue the JS file for duplicate the widget.
wp_register_script( 'pis_js_duplicate', plugins_url( 'assets/pis-duplicate.js', __FILE__ ), array( 'jquery' ), PIS_VERSION, true );
wp_enqueue_script( 'pis_js_duplicate' );
wp_localize_script(
'pis_js_duplicate',
'pis_js_duplicate_widget',
array(
'text' => __( 'Duplicate', 'posts-in-sidebar' ),
'title' => __( 'Make a copy of this widget', 'posts-in-sidebar' ),
)
);
}
// Register and enqueue the CSS file.
wp_register_style( 'pis_style', plugins_url( 'assets/pis-admin.css', __FILE__ ), array(), PIS_VERSION, 'all' );
wp_enqueue_style( 'pis_style' );
}
}
}
/**
* Register the widget
*
* @since 1.0
*/
function pis_load_widgets() {
/*
* Load the widget's form functions.
*
* @since 1.12
*/
require_once plugin_dir_path( __FILE__ ) . 'includes/pis-widget-form-functions.php';
/*
* Load the select options for the widget's form functions.
*
* @since 4.8.0
*/
require_once plugin_dir_path( __FILE__ ) . 'includes/pis-select-options.php';
/*
* Load the widget's file.
*
* @since 1.1
*/
require_once plugin_dir_path( __FILE__ ) . 'includes/class-pis-posts-in-sidebar.php';
register_widget( 'PIS_Posts_In_Sidebar' );
}
/**
* Add links to plugins list line.
*
* @param array $links The array containing links.
* @param string $file The path to this plugin file.
* @since 3.1
*/
function pis_add_links( $links, $file ) {
if ( plugin_basename( __FILE__ ) === $file ) {
// Changelog.
$changelog_url = 'https://github.com/aldolat/posts-in-sidebar/blob/master/CHANGELOG.md';
$links[] = '<a target="_blank" href="' . $changelog_url . '">' . esc_html__( 'Changelog', 'posts-in-sidebar' ) . '</a>';
// Documentation.
$doc_url = 'https://github.com/aldolat/posts-in-sidebar/wiki';
$links[] = '<a target="_blank" href="' . $doc_url . '">' . esc_html__( 'Documentation', 'posts-in-sidebar' ) . '</a>';
// Reviews.
$rate_url = 'https://wordpress.org/support/plugin/' . basename( dirname( __FILE__ ) ) . '/reviews/#new-post';
$links[] = '<a target="_blank" href="' . $rate_url . '">' . esc_html__( 'Rate this plugin', 'posts-in-sidebar' ) . '</a>';
}
return $links;
}
/*
* CODE IS POETRY
*/