PluginProbe ʕ •ᴥ•ʔ
Image Widget / 4.0.6
Image Widget v4.0.6
trunk 1.0 2.0 2.1 2.2 2.2.1 2.2.2 3.0 3.0.1 3.0.2 3.0.3 3.0.4 3.0.5 3.0.6 3.0.7 3.0.8 3.0.9 3.1 3.1.1 3.1.2 3.1.3 3.1.4 3.1.5 3.1.6 3.2 3.2.1 3.2.10 3.2.11 3.2.2 3.2.3 3.2.4 3.2.5 3.2.7 3.2.8 3.2.9 3.3 3.3.1 3.3.2 3.3.3 3.3.4 3.3.5 3.3.6 3.3.7 4.0 4.0.1 4.0.2 4.0.3 4.0.4 4.0.5 4.0.6 4.0.7 4.0.8 4.0.9 4.1 4.1.1 4.1.2 4.2 4.2.1 4.2.2 4.3 4.3.1 4.4 4.4.1 4.4.11 4.4.12 4.4.2 4.4.3 4.4.4 4.4.5 4.4.6 4.4.7 4.4.8 4.4.9
image-widget / readme.txt
image-widget Last commit date
lang 13 years ago lib 13 years ago resources 13 years ago views 13 years ago image-widget.php 13 years ago readme.txt 13 years ago screenshot-1.png 13 years ago screenshot-2.png 13 years ago screenshot-3.png 13 years ago
readme.txt
421 lines
1 === Image Widget ===
2 Contributors: ModernTribe, peterchester, mattwiebe
3 Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=4BSPTNFFY6AL6
4 Tags: widget, image, ad, banner, simple, upload, sidebar, admin, thickbox, resize, arabic, brazilian portuguese, dutch, italian, japanese, spanish, swedish, widget-only
5 Requires at least: 3.5
6 Tested up to: 3.6
7 Stable tag: 4.0.6
8
9 == Description ==
10
11 *NEW: The Image Widget has been UPGRADED to work with WordPress 3.5+!!!*
12
13 A simple image widget that uses the native WordPress media manager to add image widgets to your site.
14
15 * MU Compatible
16 * Handles image resizing and alignment
17 * Link the image
18 * Title and Description
19 * Very versatile. All fields are optional.
20 * Upload, link to external image, or select an image from your media collection using the built in thickbox browser.
21 * Supports override of template so that you can override the template for your theme!
22
23 Supported Languages:
24
25 * Arabic
26 * Brazilian Portuguese
27 * Dutch
28 * Italian
29 * Japanese
30 * Spanish
31 * Swedish
32
33 If you would like your own language to be supported, please contribute translations here:
34
35 http://wordpress.org/support/topic/image-widget-40-translations-needed-2
36
37 This plugin is actively supported and we will do our best to help you. In return we simply as 3 things:
38
39 1. Help Out. If you see a question on the forum you can help with or have a great idea and want to code it up and submit a patch, that would be just plain awesome and we will shower your with praise. Might even be a good way to get to know us and lead to some paid work if you freelance. Also, we are happy to post translations if you provide them.
40 1. Donate - if this is generating enough revenue to support our time it makes all the difference in the world
41 https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=4BSPTNFFY6AL6
42 1. Support us by buying our Premium plugins. In particular, check out our Events Calendar Pro http://tri.be/wordpress-events-calendar-pro/?src=imagewidget
43
44 Note, we're also on github in case you want to add some pull requests or a fork!
45
46 https://github.com/moderntribe/image-widget
47
48 == Installation ==
49
50 = Install =
51
52 1. In your WordPress administration, go to the Plugins page
53 1. Activate the Image Widget plugin and a subpage for the plugin will appear
54 in your Manage menu.
55 1. Go to the Appearance > Widget page and place the widget in your sidebar in the Design
56
57 If you find any bugs or have any ideas, please mail us.
58
59 Please visit the forum for questions or comments: http://wordpress.org/tags/image-widget/
60
61 = Requirements =
62
63 * PHP 5.1 or above
64 * WordPress 3.5 or above
65
66 == Documentation ==
67
68 The built in template can be overridden by files within your template.
69
70 = Default vs. Custom Templates =
71
72 The Image Widget comes with a default template for the widget output. If you would like to alter the widget display code, create a new folder called "image-widget" in your template directory and copy over the "views/widget.php" file.
73
74 Edit the new file to your hearts content. Please do not edit the one in the plugin folder as that will cause conflicts when you update the plugin to the latest release.
75
76 New in 3.2: You may now also use the "sp_template_image-widget_widget.php" filter to override the default template behavior for .php template files. Eg: if you wanted widget.php to reside in a folder called my-custom-templates/ and wanted it to be called my-custom-name.php:
77
78 `add_filter('sp_template_image-widget_widget.php', 'my_template_filter');
79 function my_template_filter($template) {
80 return get_template_directory() . '/my-custom-templates/my-custom-name.php';
81 }`
82
83 = Filters =
84
85 There are a number of filters in the code that will allow you to override data as you see fit. The best way to learn what filters are available is always by simply searching the code for 'apply_filters'. But all the same, here are a few of the more essential filters:
86
87 *widget_title*
88
89 This is actually a pretty typical filter in widgets and is applied to the widget title.
90
91 *widget_text*
92
93 Another very typical widget filter that is applied to the description body text. This filter also takes 2 additional arguments for $args and $instance so that you can learn more about the specific widget instance in the process of filtering the content.
94
95 *image_widget_image_attachment_id*
96
97 Filters the attachment id of the image.
98 Accepts additional $args and $instance arguments.
99
100 *image_widget_image_url*
101
102 Filters the url of the image displayed in the widget.
103 Accepts additional $args and $instance arguments.
104 THIS IS DEPRECATED AND WILL EVENTUALLY BE DELETED
105
106 *image_widget_image_width*
107
108 Filters the display width of the image. Hint: override this to use this in responsive designs :)
109 Accepts additional $args and $instance arguments.
110
111 *image_widget_image_height*
112
113 Filters the display height of the image.
114 Accepts additional $args and $instance arguments.
115
116 *image_widget_image_size*
117
118 Filters the selected image 'size' corresponding to WordPress registered sizes.
119 If this is set to 'tribe_image_widget_custom' then the width and height are used instead.
120 Accepts additional $args and $instance arguments.
121
122 *image_widget_image_align*
123
124 Filters the display alignment of the image.
125 Accepts additional $args and $instance arguments.
126
127 *image_widget_image_alt*
128
129 Filters the alt text of the image.
130 Accepts additional $args and $instance arguments.
131
132 *image_widget_image_link*
133
134 Filters the url that the image links to.
135 Accepts additional $args and $instance arguments.
136
137 *image_widget_image_link_target*
138
139 Filters the link target of the image link.
140 Accepts additional $args and $instance arguments.
141
142 *image_widget_image_attributes*
143
144 Filters a list of image attributes used in the image output. Similar to 'wp_get_attachment_image_attributes'
145 Accepts $instance arguments
146
147 *image_widget_link_attributes*
148
149 Filters a list of attributes used in the image link. Similar to 'wp_get_attachment_image_attributes'
150 Accepts $instance arguments
151
152 = Have You Supported the Image Widget? =
153
154 If so, then THANK YOU! Also, feel free to add this line to your wp-config.php file to prevent the image widget from displaying a message after upgrades.
155
156 define( 'I_HAVE_SUPPORTED_THE_IMAGE_WIDGET', true );
157
158 For more info on the philosophy here, check out our blog post: http://tri.be/define-i-have-donated-true/
159
160 == Changelog ==
161
162 = 4.0.6 =
163
164 * Rename all language files and implement a couple more minor language bug fixes a la @understandard
165 * Added support for the constant 'I_HAVE_SUPPORTED_THE_IMAGE_WIDGET' to turn off the message that appears after upgrading. (@crienoloog, i hope this puts a smile on your face.)
166
167 = 4.0.5 =
168
169 * Added Japanese (and fixed a minor language string bug - thank you @understandard)
170 * Added Arabic (thank you @modmenpc)
171
172 = 4.0.4 =
173
174 Super minor fix to enable saving of a blank caption. (thanks @crdunst)
175
176 = 4.0.3 =
177
178 Fixed javascript bug caused by log message.
179
180 = 4.0.2 =
181
182 Fix oversized screenshot.
183
184 = 4.0.1 =
185
186 Language updates:
187
188 * Brazilian Portuguese (Thank you @guhemama)
189 * Spanish (Thank you @javiandgo)
190
191 = 4.0 =
192
193 * Significant upgrades to support the new WordPress media manager (Thank you @kyleunzicker, @dancameron, @dudekpj, @JakePT)
194 * Significant improvements the administrative user interface.
195 * Abstracted support for older versions of WordPress so that that we don't break old versions with this upgrade (Though there's no reason you should up grade this widget and NOT your WP install! You should always keep WordPress core up to date!)
196 * Added 'image_widget_link_attributes' filter to easily process link attributes and to default to having the link 'title' be the 'alt' or 'title' content. (Thank you @ZeroGravity, @pixelyzed, and @javiandgo)
197 * Updated Translations
198 ** Swedish (Tomas Lindhoff <tomas@xhost.se>)
199 ** Dutch (Presis <contact@presis.nl>)
200 ** Italian (@maxgx)
201
202 = 3.3.8 =
203
204 * Added italian translations courtesy of @maxgx
205
206 = 3.3.7 =
207
208 * Add filters so that people can more easily adjust the output of the widget as per @TCBarrett's request.
209
210 = 3.3.6 =
211
212 * Czech translation courtesy of Vladislav Musilek at blogísek (http://blog.musilda.cz).
213
214 = 3.3.5 =
215
216 * Fix filtered media library inserts thanks to @miraclemaker as well as @oxyc, @BjornW and innumerable others in the support forum (http://wordpress.org/support/topic/plugin-image-widget-add-image-upload-an-image-select-insert-into-widget-no-image-is-shown)
217 * Adjusted HTTPS/SSL handling so that it's only applied in the view. ( thanks @TheFluffyDoneky and @aerobrent )
218 * Added a filter for the image url: 'image_widget_image_url'
219 * Add Dutch language translation ( thank you Carsten Alsemgeest - presis.nl )
220 * Rename all language files to lowercase image_widget to match the localization string.
221
222 = 3.3.4 =
223
224 * Fix javascript bugs in the widget admin UI. ( thanks for filing this @joo-joo )
225 * Fix notices in php error log.
226 * Add widget description filter $args and $instance ( thanks @jeffreyzinn )
227 * Fixed localization and renamed key to 'image-widget'
228
229 = 3.3.3 =
230
231 * Romanian translation courtesy of Alexander Ovsov at Web Geek Science (http://webhostinggeeks.com).
232
233 = 3.3.2 =
234
235 * Remove extra esc_attr() from the $title display. (Thank you @romaspit)
236
237 = 3.3.1 =
238
239 * Add minor security updates.
240 * Update readme, thumbnails and other minor descriptors.
241
242 = 3.3 =
243
244 * Fix to allow the widget to work in the non-async (browser) uploader. Props Bjorn Wijers
245
246 = 3.2.11 =
247
248 * Yet another minor JS fix to hopefully address issues of lightbox not working
249
250 = 3.2.10 =
251
252 * Fix JS typo.
253
254 = 3.2.9 =
255
256 * Minor JS fix to hopefully address issues of lightbox not working
257 * Use new the new [jQuery.fn.on](http://api.jquery.com/on/) method for forward compatibility.
258
259 = 3.2.8 =
260
261 * Minor bugfix courtesy of Takayuki Miyauchi (@miya0001)
262 * Polish translation courtesy of Łukasz Kliś
263
264 = 3.2.7 =
265
266 * Update javascript to work with the new version of WordPress (thanks Matt Wiebe!!! @mattwiebe)
267 * Added Japanese translation courtesy of Takayuki Miyauchi (@miya0001)
268
269 = 3.2.6 =
270
271 * Add HTTPS support courtesy of David Paul Ellenwood (DPE@SGS)
272
273 = 3.2.5 =
274
275 * Added Swedish translation courtesy of Tomas Lindhoff (@Tomas)
276
277 = 3.2.4 =
278
279 * Added javascript conflict prevention code thanks to @rcain.
280
281 = 3.2.3 =
282
283 * Added French translation courtesy of Dominique Corbex (@Domcox)
284
285 = 3.2.2 =
286
287 * Added Portuguese translation courtesy of Gustavo Machado
288
289 = 3.2.1 =
290
291 * Fix image widget public declaration bug.
292
293 = 3.2 =
294
295 * Abstract views for widget output and widget admin.
296 * Support theme override of the widget output! Now you can layout the widget however you'd like.
297 * Added filter to override template call.
298
299 = 3.1.6 =
300
301 * Fixed Wordpress 3.0 bugs. (Thanks @kenvunz)
302
303 = 3.1.5 =
304
305 Fixed PHP 5 bug. Removed 'public' declaration. http://wordpress.org/support/topic/362167 Thanks @mpwalsh8, @jleuze, @PoLaR5, @NancyA and @phoney36
306
307 = 3.1.4 =
308
309 * Added support for ALT tags. If no alt tag is entered the title is used.
310
311 = 3.1.3 =
312
313 * Added German language support (Thank you Rüdiger Weiß!!!)
314
315 = 3.1.2 =
316
317 * Fix bug: XHTML Compliance (thanks HGU for offering a patch and thanks @webmasterlistingarts for filing the bug)
318 * Replaced `<p>` with `<div>` in description to also improve XHTML compliance.
319
320 = 3.1.1 =
321
322 * Fix bug: php4 reported error: PHP Parse error: syntax error, unexpected T_STRING, expecting T_OLD_FUNCTION or T_FUNCTION or T_VAR or '}' (thanks @natashaelaine and @massimopaolini)
323
324 = 3.0.10 =
325
326 * Fix bug: improve tab filters.
327
328 = 3.0.9 =
329
330 * Fix bug: update tabs filter to not kill tabs if upload window is for non widget uses.
331
332 = 3.0.8 =
333
334 * Remove the "From URL" tab since it isn't supported.
335 * Replace "Insert into Post" with "Insert into Widget" in thickbox.
336
337 = 3.0.7 =
338
339 * Fix Dean's Fcuk editor conflict. (Thanks for the report Laurie @L_T_G)
340 * Fix IE8 bug (Remove extra comma from line 66 of js - thanks for the report @reface)
341 * Update functions and enqueued scripts to only trigger on widget page.
342
343 = 3.0.6 =
344
345 * Fix crash on insert into post.
346
347 = 3.0.5 =
348
349 Thank you @smurkas, @squigie and @laurie!!! Special thanks to Cameron Clark from http://prolifique.com a.k.a @capnhairdo for contributing invaluable javascript debugging skills and throwing together some great code.
350
351 * PHP4 compatibility
352 * Tighter integration with the thickbok uploader attributes including caption, description, alignment, and link
353 * Tighter image resize preview
354 * Add Image link becomes "Change Image" once image has been added
355
356 = 3.0.4 =
357
358 * Minor description changes
359
360 = 3.0.3 =
361
362 * Fixed the broken "Add Image" link (THANK YOU @SMURKAS!!!)
363
364 = 3.0.2 =
365
366 * Added PHPDoc comments
367 * Temporarily fixed install bug where no image is saved if resize is not working. (thank you Paul Kaiser from Champaign, Il for your helpful QA support)
368
369 = 3.0.1 =
370
371 * Added 'sp_image_widget' domain for language support.
372
373 = 3.0 =
374
375 * Completely remodeled the plugin to use the native WordPress uploader and be compatible with Wordpress 2.8 plugin architecture.
376 * Removed externalized widget admin.
377
378 = 2.2.2 =
379
380 * Update <li> to be $before_widget and $after_widget (Thanks again to Lois Turley)
381
382 = 2.2.1 =
383
384 * Update `<div>` to be `<li>` (Thanks to Lois Turley)
385
386 = 2.2 =
387
388 * Fixed missing DIV close tag (Thank you Jesper Goos)
389 * Updated all short tags to proper php tags (Thank you Jonathan Volks from Mannix Marketing)
390
391 = 2.1 =
392
393 * Link Target
394
395 = 2.0 =
396
397 * Multi widget support
398 * WP 2.7.1 Compatibility
399 * Class encapsulation
400
401 == Upgrade Notice ==
402
403 = 4.0 =
404
405 Please be advised that this is a significant upgrade. You should definitely back up your database before updating in case your existing image widgets have any problems.
406
407 Also, several languages will no longer be supported until new translations are submitted. Currently, we have support for Italian, Dutch, and Swedish. If you would like to contribute your own language files, please post links here:
408
409 http://wordpress.org/support/topic/image-widget-40-translations-needed-2
410
411 == Screenshots ==
412
413 1. Image Widget admin screen.
414 1. Media manager integration.
415 1. Image Widget on the front of a plain Wordpress install.
416
417 == Frequently Asked Questions ==
418
419 = Where do I go to file a bug or ask a question? =
420
421 Please visit the forum for questions or comments: http://wordpress.org/tags/image-widget/