forked from goranefbl/Swifty-Image-Widget
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugin.php
230 lines (176 loc) · 6.35 KB
/
plugin.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
<?php
/**
*
* Plugin Name: Swifty Image Widget
* Plugin URI: http://www.itsgoran.com
* Description: Simple but powerful Widget for Images, Testimonials and Advertising Banners.
* Version: 1.0
* Author: Goran Jakovljevic
* Author URI: http://www.itsgoran.com/
* Text Domain: swifty-img-widget
* Domain Path: /lang
*/
// Prevent direct file access
if ( ! defined ( 'ABSPATH' ) ) {
exit;
}
class Swifty_Img_Widget extends WP_Widget {
protected $widget_slug = 'swifty-img-widget';
/*--------------------------------------------------*/
/* Constructor
/*--------------------------------------------------*/
/**
* Specifies the classname and description, instantiates the widget,
* loads localization files, and includes necessary stylesheets and JavaScript.
*/
public function __construct() {
// load plugin text domain
add_action( 'init', array( $this, 'widget_textdomain' ) );
parent::__construct(
$this->get_widget_slug(),
__( 'Swifty Image Widget', $this->get_widget_slug() ),
array(
'classname' => $this->get_widget_slug().'-class',
'description' => __( 'Easly place one or multiple images as widgets.', $this->get_widget_slug() )
)
);
// Register admin scripts
add_action( 'admin_enqueue_scripts', array( $this, 'register_admin_scripts' ) );
// Register site styles and scripts
add_action( 'wp_enqueue_scripts', array( $this, 'register_widget_styles' ) );
// Refreshing the widget's cached output with each new post
add_action( 'save_post', array( $this, 'flush_widget_cache' ) );
add_action( 'deleted_post', array( $this, 'flush_widget_cache' ) );
add_action( 'switch_theme', array( $this, 'flush_widget_cache' ) );
add_action( 'admin_enqueue_scripts', 'wp_enqueue_media' );
} // end constructor
/**
* Return the widget slug.
*
* @since 1.0.0
*
* @return Plugin slug variable.
*/
public function get_widget_slug() {
return $this->widget_slug;
}
/*--------------------------------------------------*/
/* Widget API Functions
/*--------------------------------------------------*/
/**
* Outputs the content of the widget.
*
* @param array args The array of form elements
* @param array instance The current instance of the widget
*/
public function widget( $args, $instance ) {
// Check if there is a cached output
$cache = wp_cache_get( $this->get_widget_slug(), 'widget' );
if ( !is_array( $cache ) )
$cache = array();
if ( ! isset ( $args['widget_id'] ) )
$args['widget_id'] = $this->id;
if ( isset ( $cache[ $args['widget_id'] ] ) )
return print $cache[ $args['widget_id'] ];
// Off with our widget logic
extract( $args, EXTR_SKIP );
$title = apply_filters( 'widget_title', $instance['title'] );
$widget_string = $before_widget;
// Widget front end
ob_start();
include( plugin_dir_path( __FILE__ ) . 'views/widget.php' );
$widget_string .= ob_get_clean();
$widget_string .= $after_widget;
$cache[ $args['widget_id'] ] = $widget_string;
wp_cache_set( $this->get_widget_slug(), $cache, 'widget' );
print $widget_string;
} // end widget
public function flush_widget_cache()
{
wp_cache_delete( $this->get_widget_slug(), 'widget' );
}
/**
* Processes the widget's options to be saved.
*
* @param array new_instance The new instance of values to be generated via the update.
* @param array old_instance The previous instance of values before the update.
*/
public function update( $new_instance, $old_instance ) {
$instance = $old_instance;
// Updating old values with new ones
$instance['title'] = strip_tags( $new_instance['title'] );
$instance['size'] = strip_tags( $new_instance['size'] );
$instance['align'] = strip_tags( $new_instance['align'] );
$instance['img_open_in'] = strip_tags( $new_instance['img_open_in'] );
$instance['rel'] = strip_tags( $new_instance['rel'] );
$instance['img_width'] = strip_tags( $new_instance['img_width'] );
$instance['img_height'] = strip_tags( $new_instance['img_height'] );
$instance['imgs'] = array();
if(!empty($new_instance['img_id'])){
for($i=1; $i < (count($new_instance['img_id']) ); $i++){
if(!empty($new_instance['img_id'][$i])){
$img = array();
$img['img'] = esc_attr($new_instance['img_id'][$i]);
$img['link'] = esc_url($new_instance['img_link'][$i]);
$img['caption'] = wp_kses_post($new_instance['img_caption'][$i]);
$instance['imgs'][] = $img;
}
}
}
return $instance;
} // end widget
/**
* Generates the administration form for the widget.
*
* @param array instance The array of keys and values for the widget.
*/
public function form( $instance ) {
$default_settings = array(
'title' => '',
'size' => '',
'align' => '',
'img_open_in' =>'',
'rel' =>'',
'img_width'=>'',
'img_height' => '',
'imgs' => array()
);
// Define default values for our variables
$instance = wp_parse_args(
(array) $instance,
$default_settings
);
// Store the values of the widget in their own variable
$title = $instance['title'];
$size = $instance['size'];
$align = $instance['align'];
$img_open_in = $instance['img_open_in'];
$rel = $instance['rel'];
$img_width = $instance['img_width'];
$img_height = $instance['img_height'];
$imgs = $instance['imgs'];
// Display the admin form
include( plugin_dir_path(__FILE__) . 'views/admin.php' );
} // end form
/*--------------------------------------------------*/
/* Public Functions
/*--------------------------------------------------*/
public function widget_textdomain() {
load_plugin_textdomain( $this->get_widget_slug(), false, plugin_dir_path( __FILE__ ) . 'lang/' );
} // end widget_textdomain
/**
* Registers and enqueues admin-specific JavaScript.
*/
public function register_admin_scripts() {
wp_enqueue_script( $this->get_widget_slug().'-admin-script', plugins_url( 'js/admin.js', __FILE__ ), array('jquery') );
} // end register_admin_scripts
/**
* Registers and enqueues widget-specific styles.
*/
public function register_widget_styles() {
wp_enqueue_style( $this->get_widget_slug().'-widget-styles', plugins_url( 'css/widget.css', __FILE__ ) );
} // end register_widget_styles
} // end class
add_action( 'widgets_init', function() {
register_widget("Swifty_Img_Widget");
});