This repository has been archived by the owner on Nov 8, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsocial-network-widget.php
219 lines (197 loc) · 8.07 KB
/
social-network-widget.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
<?php
/**
* The `Social Network Widget` 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.
*
* Social Network Widget 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
* any later version.
*
* @link https://www.mypreview.one
* @since 1.1.0
* @package social-network-widget
* @author MyPreview (Github: @mahdiyazdani, @mypreview)
* @copyright © 2015 - 2020 MyPreview. All Rights Reserved.
*
* @wordpress-plugin
* Plugin Name: Social Network Widget
* Plugin URI: https://www.mypreview.one
* Description: A simple widget that allows you easily add icons for the most popular social networks to your sidebar or other widget area.
* Version: 1.1.0
* Requires at least: WordPress 5.0
* Requires PHP: 7.2.0
* Author: MyPreview
* Author URI: https://mahdiyazdani.com
* License: GPL-3.0
* License URI: http://www.gnu.org/licenses/gpl-3.0.txt
* Text Domain: social-network-widget
* Domain Path: /languages
*/
// If this file is called directly, abort.
if ( ! defined( 'WPINC' ) ) {
wp_die();
}
/**
* Gets the path to a plugin file or directory.
*
* @see https://codex.wordpress.org/Function_Reference/plugin_basename
* @see http://php.net/manual/en/language.constants.predefined.php
*/
$social_network_widget_plugin_data = get_file_data(
__FILE__,
array(
'author_uri' => 'Author URI',
'version' => 'Version',
),
'plugin'
);
define( 'SOCIAL_NETWORK_WIDGET_VERSION', $social_network_widget_plugin_data['version'] );
define( 'SOCIAL_NETWORK_WIDGET_AUTHOR_URI', $social_network_widget_plugin_data['author_uri'] );
define( 'SOCIAL_NETWORK_WIDGET_SLUG', 'social-network-widget' );
define( 'SOCIAL_NETWORK_WIDGET_FILE', __FILE__ );
define( 'SOCIAL_NETWORK_WIDGET_BASENAME', basename( SOCIAL_NETWORK_WIDGET_FILE ) );
define( 'SOCIAL_NETWORK_WIDGET_PLUGIN_BASENAME', plugin_basename( SOCIAL_NETWORK_WIDGET_FILE ) );
define( 'SOCIAL_NETWORK_WIDGET_DIR_URL', plugin_dir_url( SOCIAL_NETWORK_WIDGET_FILE ) );
define( 'SOCIAL_NETWORK_WIDGET_DIR_PATH', plugin_dir_path( SOCIAL_NETWORK_WIDGET_FILE ) );
if ( ! class_exists( 'Social_Network_Widget' ) ) :
/**
* The Social Network Widget - Class
*/
final class Social_Network_Widget {
/**
* Instance of the class.
*
* @var object $instance
*/
private static $instance = null;
/**
* Main `Social_Network_Widget` instance
* Ensures only one instance of `Social_Network_Widget` is loaded or can be loaded.
*
* @access public
* @return instance
*/
public static function instance() {
if ( is_null( self::$instance ) ) {
self::$instance = new self();
}
return self::$instance;
}
/**
* Setup class.
*
* @access protected
* @return void
*/
protected function __construct() {
add_action( 'init', array( $this, 'textdomain' ) );
add_action( 'wp_enqueue_scripts', array( $this, 'enqueue' ) );
add_action( 'admin_enqueue_scripts', array( $this, 'admin_enqueue' ) );
add_action( 'widgets_init', array( $this, 'register_widget' ) );
add_filter( sprintf( 'plugin_action_links_%s', SOCIAL_NETWORK_WIDGET_PLUGIN_BASENAME ), array( $this, 'additional_links' ) );
}
/**
* Cloning instances of this class is forbidden.
*
* @access protected
* @return void
*/
protected function __clone() {
_doing_it_wrong( __FUNCTION__, esc_html_x( 'Cloning instances of this class is forbidden.', 'clone', 'social-network-widget' ), esc_html( SOCIAL_NETWORK_WIDGET_VERSION ) );
}
/**
* Unserializing instances of this class is forbidden.
*
* @access public
* @return void
*/
public function __wakeup() {
_doing_it_wrong( __FUNCTION__, esc_html_x( 'Unserializing instances of this class is forbidden.', 'wakeup', 'social-network-widget' ), esc_html( SOCIAL_NETWORK_WIDGET_VERSION ) );
}
/**
* Load languages file and text domains.
* Define the internationalization functionality.
*
* @access public
* @return void
*/
public function textdomain() {
load_plugin_textdomain( 'social-network-widget', false, dirname( dirname( SOCIAL_NETWORK_WIDGET_PLUGIN_BASENAME ) ) . '/languages/' );
}
/**
* Enqueue scripts and styles.
* Fires when scripts and styles are enqueued.
*
* @access public
* @return void
*/
public function enqueue() {
$min = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min';
wp_register_style( sprintf( '%s-style', SOCIAL_NETWORK_WIDGET_SLUG ), sprintf( '%sassets/public/css/style%s.css', SOCIAL_NETWORK_WIDGET_DIR_URL, $min ), array(), SOCIAL_NETWORK_WIDGET_VERSION, 'all' );
// Bail early, in case the widget is not displayed on the front end.
if ( is_active_widget( false, false, 'social_network_widget', true ) ) {
wp_enqueue_style( sprintf( '%s-style', SOCIAL_NETWORK_WIDGET_SLUG ) );
}
}
/**
* Enqueue scripts for admin pages.
*
* @access public
* @return void
*/
public function admin_enqueue() {
global $pagenow;
$min = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min';
wp_register_style( sprintf( '%s-style', SOCIAL_NETWORK_WIDGET_SLUG ), sprintf( '%sassets/admin/css/style%s.css', SOCIAL_NETWORK_WIDGET_DIR_URL, $min ), array( 'wp-color-picker' ), SOCIAL_NETWORK_WIDGET_VERSION, 'screen' );
wp_register_script( sprintf( '%s-script', SOCIAL_NETWORK_WIDGET_SLUG ), sprintf( '%sassets/admin/js/script%s.js', SOCIAL_NETWORK_WIDGET_DIR_URL, $min ), array( 'jquery', 'jquery-ui-sortable', 'wp-color-picker' ), SOCIAL_NETWORK_WIDGET_VERSION, true );
// Enqueue admin scrips and styles, only in the customizer or the old widgets page.
if ( is_customize_preview() || 'widgets.php' === $pagenow ) {
wp_enqueue_style( sprintf( '%s-style', SOCIAL_NETWORK_WIDGET_SLUG ) );
wp_enqueue_script( sprintf( '%s-script', SOCIAL_NETWORK_WIDGET_SLUG ) );
}
}
/**
* Registers all custom and built-in widgets right after all default
* WordPress widgets have been registered.
*
* @access public
* @return void
*/
public function register_widget() {
require_once sprintf( '%ssocial-network-widget-register.php', SOCIAL_NETWORK_WIDGET_DIR_PATH );
register_widget( 'Social_Network_Widget_Register' );
}
/**
* Display additional links in plugins table page.
* Filters the list of action links displayed for a specific plugin in the Plugins list table.
*
* @access public
* @param array $links An array of plugin action links.
* @return array
*/
public function additional_links( $links ) {
$plugin_links = array();
/* translators: 1: Open anchor tag, 2: Close anchor tag. */
$plugin_links[] = sprintf( _x( '%1$sHire Me!%2$s', 'plugin link', 'social-network-widget' ), sprintf( '<a href="%s" class="button-link-delete" target="_blank" rel="noopener noreferrer nofollow" title="%s">', esc_url( SOCIAL_NETWORK_WIDGET_AUTHOR_URI ), esc_attr_x( 'Looking for help? Hire Me!', 'upsell', 'social-network-widget' ) ), '</a>' );
/* translators: 1: Open anchor tag, 2: Close anchor tag. */
$plugin_links[] = sprintf( _x( '%1$sSupport%2$s', 'plugin link', 'social-network-widget' ), '<a href="https://wordpress.org/support/plugin/social-network-widget" target="_blank" rel="noopener noreferrer nofollow">', '</a>' );
return array_merge( $plugin_links, $links );
}
}
endif;
if ( ! function_exists( 'social_network_widget_init' ) ) :
/**
* Returns the main instance of Social_Network_Widget to prevent the need to use globals.
*
* @return object(class) Social_Network_Widget::instance
*/
function social_network_widget_init() {
return Social_Network_Widget::instance();
}
social_network_widget_init();
endif;