Gallery – Photo Gallery and Images Gallery - Version 1.4.5

Version Description

  • Added new text additional options
  • Implemented PreText option with HTML support
Download this release

Release Info

Developer robosoft
Plugin Icon 128x128 Gallery – Photo Gallery and Images Gallery
Version 1.4.5
Comparing to
See all releases

Code changes from version 1.4.4 to 1.4.5

cmb2/fields/rbstextarea/cmb-field-rbstextarea.php CHANGED
@@ -20,15 +20,17 @@ function jt_cmb2_rbstextarea_field( $metakey, $post_id = 0 ) {
20
  function jt_cmb2_render_rbstextarea_field_callback( $field, $value, $object_id, $object_type, $field_type_object ) {
21
 
22
  $value = $value ? $value : $field->args('default') ;
23
-
24
  ?>
25
  <div class="form-horizontal">
26
  <div class="form-group">
27
- <div class="col-sm-2">
 
28
  <label class=" control-label" for="<?php echo $field_type_object->_id(); ?>"><?php echo esc_html( $field->args('name') ); ?></label>
29
  <?php echo $field_type_object->_desc( true ); ?>
30
  </div>
31
- <div class="<?php echo $field->args('small')?'col-sm-4':'col-sm-10'; ?>">
 
32
  <?php
33
  echo '<textarea '
34
  .'id="'.$field_type_object->_id().'" '
20
  function jt_cmb2_render_rbstextarea_field_callback( $field, $value, $object_id, $object_type, $field_type_object ) {
21
 
22
  $value = $value ? $value : $field->args('default') ;
23
+ $hide_label = $field->args('hide_label') ? 1 : 0 ;
24
  ?>
25
  <div class="form-horizontal">
26
  <div class="form-group">
27
+ <?php if(!$hide_label){ ?>
28
+ <div class="col-sm-2 ">
29
  <label class=" control-label" for="<?php echo $field_type_object->_id(); ?>"><?php echo esc_html( $field->args('name') ); ?></label>
30
  <?php echo $field_type_object->_desc( true ); ?>
31
  </div>
32
+ <?php } ?>
33
+ <div class="<?php echo $hide_label?'col-sm-12':'col-sm-10'; ?>">
34
  <?php
35
  echo '<textarea '
36
  .'id="'.$field_type_object->_id().'" '
includes/frontend/rbs_gallery_class.php CHANGED
@@ -389,6 +389,7 @@ class roboGallery extends roboGalleryUtils{
389
  if( isset($paddingCustom['right']) && $paddingCustom['right'] ) $this->rbsMainDivStyle .= 'padding-right:'. $this->getCorrectSize($paddingCustom['right']).';';
390
  if( isset($paddingCustom['bottom']) && $paddingCustom['bottom'] ) $this->rbsMainDivStyle .= 'padding-bottom:'.$this->getCorrectSize($paddingCustom['bottom']).';';
391
 
 
392
 
393
  if(count($this->selectImages->imgArray)){
394
 
@@ -451,7 +452,7 @@ class roboGallery extends roboGalleryUtils{
451
  if( $this->returnHtml ){
452
  $this->returnHtml =
453
  '<div style="'.$this->rbsMainDivStyle.'">'
454
-
455
  .($menu?$this->getMenu():'').
456
  '<div id="'.$this->galleryId.'" data-options="'.$this->galleryId.'" style="width:100%;" class="robo_gallery">'
457
  . $this->returnHtml
389
  if( isset($paddingCustom['right']) && $paddingCustom['right'] ) $this->rbsMainDivStyle .= 'padding-right:'. $this->getCorrectSize($paddingCustom['right']).';';
390
  if( isset($paddingCustom['bottom']) && $paddingCustom['bottom'] ) $this->rbsMainDivStyle .= 'padding-bottom:'.$this->getCorrectSize($paddingCustom['bottom']).';';
391
 
392
+ $pretext = get_post_meta( $this->id, ROBO_GALLERY_PREFIX.'pretext', true );
393
 
394
  if(count($this->selectImages->imgArray)){
395
 
452
  if( $this->returnHtml ){
453
  $this->returnHtml =
454
  '<div style="'.$this->rbsMainDivStyle.'">'
455
+ .($pretext?'<div>'.$pretext.'</div>':'')
456
  .($menu?$this->getMenu():'').
457
  '<div id="'.$this->galleryId.'" data-options="'.$this->galleryId.'" style="width:100%;" class="robo_gallery">'
458
  . $this->returnHtml
includes/options/rbs_gallery_options_text.php CHANGED
@@ -28,10 +28,11 @@ $text_group->add_field( array(
28
  'id' => ROBO_GALLERY_PREFIX . 'pretext',
29
  'type' => 'rbstextarea',
30
  'default' => '',
 
31
  'bootstrap_style'=> 1,
32
 
33
  'before_row' => '
34
- <div class="rbs_block"><br/>',
35
  'after_row' => '
36
  </div>',
37
  ));
28
  'id' => ROBO_GALLERY_PREFIX . 'pretext',
29
  'type' => 'rbstextarea',
30
  'default' => '',
31
+ 'hide_label' => 1,
32
  'bootstrap_style'=> 1,
33
 
34
  'before_row' => '
35
+ <div class="rbs_block"><label>'.__('Pre Text', 'rbs_gallery' ).'</label>',
36
  'after_row' => '
37
  </div>',
38
  ));
includes/rbs_gallery_edit.php CHANGED
@@ -25,6 +25,7 @@ function rbs_gallery_group_metabox() {
25
  if( rbs_gallery_is_edit_page('edit') ){
26
  if( file_exists(ROBO_GALLERY_INCLUDES_PATH.'options/rbs_gallery_options_shortcode.php') ) require_once ROBO_GALLERY_INCLUDES_PATH.'options/rbs_gallery_options_shortcode.php';
27
  }
 
28
 
29
  if( file_exists(ROBO_GALLERY_INCLUDES_PATH.'options/rbs_gallery_options_size.php') ) require_once ROBO_GALLERY_INCLUDES_PATH.'options/rbs_gallery_options_size.php';
30
  if( file_exists(ROBO_GALLERY_INCLUDES_PATH.'options/rbs_gallery_options_view.php') ) require_once ROBO_GALLERY_INCLUDES_PATH.'options/rbs_gallery_options_view.php';
25
  if( rbs_gallery_is_edit_page('edit') ){
26
  if( file_exists(ROBO_GALLERY_INCLUDES_PATH.'options/rbs_gallery_options_shortcode.php') ) require_once ROBO_GALLERY_INCLUDES_PATH.'options/rbs_gallery_options_shortcode.php';
27
  }
28
+ if( file_exists(ROBO_GALLERY_INCLUDES_PATH.'options/rbs_gallery_options_text.php') ) require_once ROBO_GALLERY_INCLUDES_PATH.'options/rbs_gallery_options_text.php';
29
 
30
  if( file_exists(ROBO_GALLERY_INCLUDES_PATH.'options/rbs_gallery_options_size.php') ) require_once ROBO_GALLERY_INCLUDES_PATH.'options/rbs_gallery_options_size.php';
31
  if( file_exists(ROBO_GALLERY_INCLUDES_PATH.'options/rbs_gallery_options_view.php') ) require_once ROBO_GALLERY_INCLUDES_PATH.'options/rbs_gallery_options_view.php';
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: http://www.robosoft.co/robogallery
4
  Tags: gallery, add gallery, photo gallery, images gallery, media gallery, responsive gallery, gallery image, gallery lightbox, Polaroid gallery, Gallery Plugin, plugin gallery, video gallery, gallery shortcode, responsive images gallery, website gallery, widget gallery, wordpress gallery, wordpress gallery plugin, wordpress photo gallery plugin, wp gallery, wp gallery plugin, wp gallery plugins, multi categories gallery, add galleries, add picture, add pictures, album, best gallery, best gallery plugin, responsive galleries, mobile gallery, mobile galleries, responsive photo gallery, best portfolio, easy media gallery, filterable gallery, filterable portfolio, foto, fotoalbum, fotogalerie, sortable gallery, sortable galleries, free photo gallery, fullscreen gallery, galary, galeri, galerie, galerij, galery, gallary, Galleria, gallerie, galleries, gallery decription, gallery slider, gelary, gellary, gellery, google, grid gallery, image, image album, image gallery, image gallery plugin, image lightbox, image slider, image slideshow, images, jquery, jquery gallery, links, media, multiple pictures, page, pagination gallery, pagination portfolio, photo, photo album, photo albums, photoalbum, photogallery, photos, photoset, picture, pictures, plugin, plugin for gallery, portfolio, portfolio gallery, portfolio plugin, Post, posts, responsive slideshow, responsive wordpress photo gallery, seo image, slide show, slideshow, thumbnail, upload images, upload photos, batch upload, multiply images upload, view images, view pictures, wordpress portfolio plugin, multi-categories gallery, multi categories galleries, robo gallery
5
  Requires at least: 3.3
6
  Tested up to: 4.3
7
- Stable tag: 1.4.4
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
@@ -196,38 +196,38 @@ If you have some conflict in gallery back end you can sort it with new compatibi
196
 
197
  Every gallery image have additional fields where you can define custom link, title, description. One of the link option allow you to define link type, for example video link. All this options you can find in gallery images manager, inside general gallery settings
198
 
199
- = How to customize hover effect? =
200
-
201
- In gallery settings you can find hover type options. In settings of the gallery you can select custom hover effect settings or even template for customization of the gallery thumbnails hover
202
-
203
  = Is it possible create gallery in Wordpress post with Gallery? =
204
 
205
  Yes, you can insert gallery into post with shortcode tag
206
 
207
- = How to change text below image in lightbox ? =
208
 
209
- In gallery setting you can select which text show below image in gallery lightbox. You can select Caption, Title or image Description as source for this field in gallery lightbox.
210
 
211
- = How to generate shortcode for Wordpress page, post or widget? =
212
 
213
- First of all you can copy shortcode inside gallery settings , in separate shortcode block. Another way generate shortcode directly in post or page edit mode. You can find wizard button on top of content editor
214
 
215
  = How to change quality of the gallery thumbnails? =
216
 
217
  Quality of the gallery thumbnails could be easily changed in gallery size option / thumbnails options / source
218
 
219
- = How to define custom hover effect for some gallery thumbnail? =
220
 
221
- When you open gallery media manager you'll see there list of the gallery images. Click on some image and on the right side you'll see images options. Every gallery image have custom effect field where you can select different hover effect for every image of the gallery.
222
 
223
- = How to insert gallery into Wordpress page or post? =
224
 
225
- When you create gallery in plugin galleries manager you can go to the post or page editor and there using special wizard button insert gallery into your wordpress post or page. Another way you can insert your gallery manually using shortcode, which you can find in gallery edit mode in shortcode section on the right side of the gallery settings
226
 
227
  = Do you have some limits for images types in gallery? =
228
 
229
  You can use any standard file type in our gallery: png, jpg, jpeg, gif
230
 
 
 
 
 
231
  = How I can create custom (grid) layout of the thumbnails? =
232
 
233
  In our gallery we implemented layout based on columns amount. So you can general amount of the columns in your gallery grid and define custom amount of the columns which every image gonna take. As result you can customize layout of the gallery grid
@@ -240,10 +240,6 @@ When you open gallery settings inside you'll find images manager section. Images
240
 
241
  Yes, you can use generated direct link inside particular gallery settings
242
 
243
- = How to make shadow for the gallery thumbnails? =
244
-
245
- Shadows of the thumbnails you can customize in gallery settings. With gallery settings you can change size , color and position of the gallery thumbnails shadow
246
-
247
  = Do you have some limit for images size in gallery? =
248
 
249
  No, we don't have any limits for image size in our gallery.
@@ -252,6 +248,10 @@ No, we don't have any limits for image size in our gallery.
252
 
253
  In gallery settings we have few options which makes you able to select amount of the images for the first load and for load more action
254
 
 
 
 
 
255
  = Do you have some limits for images amount in gallery? =
256
 
257
  No, we don't have any limits for amount of the images in gallery
@@ -264,38 +264,38 @@ In gallery settings you can find general settings section where you can turn on/
264
 
265
  Every gallery image have additional fields where you can define custom link, title, description. All this options you can find in gallery images manager, inside general gallery settings
266
 
267
- = Is it possible to have different settings for hover and static interface elements? =
268
-
269
- Yes, you can have different styles of the borders and shadows for static and hovered gallery thumbnails.
270
-
271
  = How to change font size of the gallery image caption? =
272
 
273
  In gallery settings you can enable custom caption settings where you can customize font size and see results in live preview
274
 
275
- = How to change spacing between thumbnails? =
276
 
277
- In gallery settings you can define horizontal and vertical paddings between gallery thumbnails
278
 
279
- = How to customize border of the gallery thumbnails? =
280
 
281
- In gallery settings you can find general settings section where you can turn on/off thumbnails border. Also you can customize there style of the border, namely width, color and style of the thumbnail borders
282
 
283
  = How to set description text below image in the lightbox? =
284
 
285
  In gallery settings you can find lightbox section and if you need to show description of the images below images in the lightbox you need to select text source in lightbox settings from defined values.
286
 
287
- = How to hide titles of the gallery image in lightbox ? =
288
 
289
- In lightbox section of the gallery settings you can find hide title option. If you enable it titles of the gallery images in lightbox will be turned off.
290
 
291
- = How to enable lazy load in gallery options? =
292
 
293
- In gallery settings you can find option to enable/disable lazy load, also there you'll have alot of additional options for customization of the loading process
294
 
295
  = How to define size of the gallery images thumbnails? =
296
 
297
  Our gallery is fully responsive and gallery thumbnails size depend of a lot of factors. Gallery calculate thumbnails automatically depend of the general gallery size and gallery layout settings. First of all you can define ratio values for gallery thumbnails. Size of the thumbnails could be selected from standard pre-defined wordpress sizes: thumbnail, medium, large, full
298
 
 
 
 
 
299
  = Which parameters I can change for the gallery thumbnails borders and shadows? =
300
 
301
  You can change size, color and style of gallery thumbnails borders and shadows. Also you can define different parameters for static and hovered status
@@ -308,10 +308,6 @@ Yes, in gallery options you can turn on/off border option
308
 
309
  In admin section of the gallery you'll find columns options which provide you advanced customization options for different resolutions. You can define some static size or auto size for every resolution.
310
 
311
- = How to make gallery thumbnails with rounded corners? =
312
-
313
- In gallery settings you can find section rounds where with special options you can define radius for the gallery thumbnails
314
-
315
  = How to change color of the gallery interface elements? =
316
 
317
  Color of every gallery front end interface element could be changed changed in admin section with color selector. There you can change colors of the menu buttons, load more button, borders, shadows, backgrounds and etc.
@@ -324,6 +320,10 @@ In our gallery we implemented multi-categories structure. Every gallery category
324
 
325
  In gallery settings you can enable custom caption settings where you can customize font color and see results in live preview
326
 
 
 
 
 
327
  = Is it possible to create target blank links? =
328
 
329
  Yes. When you open gallery media manager you'll see there list of the gallery images. Click on some image and on the right side you'll see images options. Every gallery image have target blank field below link field of the gallery image.
@@ -562,6 +562,10 @@ If any problem occurs, please contact us.
562
 
563
  == Changelog ==
564
 
 
 
 
 
565
  = 1.4.4 =
566
  * Updated image description processing code
567
  * Fixed HTML support in images description
@@ -738,6 +742,9 @@ If any problem occurs, please contact us.
738
 
739
  == Upgrade Notice ==
740
 
 
 
 
741
  = 1.4.4 =
742
  Added more flexible HTML tags support in description, fixed HTML processing in images description field
743
 
4
  Tags: gallery, add gallery, photo gallery, images gallery, media gallery, responsive gallery, gallery image, gallery lightbox, Polaroid gallery, Gallery Plugin, plugin gallery, video gallery, gallery shortcode, responsive images gallery, website gallery, widget gallery, wordpress gallery, wordpress gallery plugin, wordpress photo gallery plugin, wp gallery, wp gallery plugin, wp gallery plugins, multi categories gallery, add galleries, add picture, add pictures, album, best gallery, best gallery plugin, responsive galleries, mobile gallery, mobile galleries, responsive photo gallery, best portfolio, easy media gallery, filterable gallery, filterable portfolio, foto, fotoalbum, fotogalerie, sortable gallery, sortable galleries, free photo gallery, fullscreen gallery, galary, galeri, galerie, galerij, galery, gallary, Galleria, gallerie, galleries, gallery decription, gallery slider, gelary, gellary, gellery, google, grid gallery, image, image album, image gallery, image gallery plugin, image lightbox, image slider, image slideshow, images, jquery, jquery gallery, links, media, multiple pictures, page, pagination gallery, pagination portfolio, photo, photo album, photo albums, photoalbum, photogallery, photos, photoset, picture, pictures, plugin, plugin for gallery, portfolio, portfolio gallery, portfolio plugin, Post, posts, responsive slideshow, responsive wordpress photo gallery, seo image, slide show, slideshow, thumbnail, upload images, upload photos, batch upload, multiply images upload, view images, view pictures, wordpress portfolio plugin, multi-categories gallery, multi categories galleries, robo gallery
5
  Requires at least: 3.3
6
  Tested up to: 4.3
7
+ Stable tag: 1.4.5
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
196
 
197
  Every gallery image have additional fields where you can define custom link, title, description. One of the link option allow you to define link type, for example video link. All this options you can find in gallery images manager, inside general gallery settings
198
 
 
 
 
 
199
  = Is it possible create gallery in Wordpress post with Gallery? =
200
 
201
  Yes, you can insert gallery into post with shortcode tag
202
 
203
+ = How to customize hover effect? =
204
 
205
+ In gallery settings you can find hover type options. In settings of the gallery you can select custom hover effect settings or even template for customization of the gallery thumbnails hover
206
 
207
+ = How to change text below image in lightbox ? =
208
 
209
+ In gallery setting you can select which text show below image in gallery lightbox. You can select Caption, Title or image Description as source for this field in gallery lightbox.
210
 
211
  = How to change quality of the gallery thumbnails? =
212
 
213
  Quality of the gallery thumbnails could be easily changed in gallery size option / thumbnails options / source
214
 
215
+ = How to generate shortcode for Wordpress page, post or widget? =
216
 
217
+ First of all you can copy shortcode inside gallery settings , in separate shortcode block. Another way generate shortcode directly in post or page edit mode. You can find wizard button on top of content editor
218
 
219
+ = How to define custom hover effect for some gallery thumbnail? =
220
 
221
+ When you open gallery media manager you'll see there list of the gallery images. Click on some image and on the right side you'll see images options. Every gallery image have custom effect field where you can select different hover effect for every image of the gallery.
222
 
223
  = Do you have some limits for images types in gallery? =
224
 
225
  You can use any standard file type in our gallery: png, jpg, jpeg, gif
226
 
227
+ = How to insert gallery into Wordpress page or post? =
228
+
229
+ When you create gallery in plugin galleries manager you can go to the post or page editor and there using special wizard button insert gallery into your wordpress post or page. Another way you can insert your gallery manually using shortcode, which you can find in gallery edit mode in shortcode section on the right side of the gallery settings
230
+
231
  = How I can create custom (grid) layout of the thumbnails? =
232
 
233
  In our gallery we implemented layout based on columns amount. So you can general amount of the columns in your gallery grid and define custom amount of the columns which every image gonna take. As result you can customize layout of the gallery grid
240
 
241
  Yes, you can use generated direct link inside particular gallery settings
242
 
 
 
 
 
243
  = Do you have some limit for images size in gallery? =
244
 
245
  No, we don't have any limits for image size in our gallery.
248
 
249
  In gallery settings we have few options which makes you able to select amount of the images for the first load and for load more action
250
 
251
+ = How to make shadow for the gallery thumbnails? =
252
+
253
+ Shadows of the thumbnails you can customize in gallery settings. With gallery settings you can change size , color and position of the gallery thumbnails shadow
254
+
255
  = Do you have some limits for images amount in gallery? =
256
 
257
  No, we don't have any limits for amount of the images in gallery
264
 
265
  Every gallery image have additional fields where you can define custom link, title, description. All this options you can find in gallery images manager, inside general gallery settings
266
 
 
 
 
 
267
  = How to change font size of the gallery image caption? =
268
 
269
  In gallery settings you can enable custom caption settings where you can customize font size and see results in live preview
270
 
271
+ = Is it possible to have different settings for hover and static interface elements? =
272
 
273
+ Yes, you can have different styles of the borders and shadows for static and hovered gallery thumbnails.
274
 
275
+ = How to change spacing between thumbnails? =
276
 
277
+ In gallery settings you can define horizontal and vertical paddings between gallery thumbnails
278
 
279
  = How to set description text below image in the lightbox? =
280
 
281
  In gallery settings you can find lightbox section and if you need to show description of the images below images in the lightbox you need to select text source in lightbox settings from defined values.
282
 
283
+ = How to customize border of the gallery thumbnails? =
284
 
285
+ In gallery settings you can find general settings section where you can turn on/off thumbnails border. Also you can customize there style of the border, namely width, color and style of the thumbnail borders
286
 
287
+ = How to hide titles of the gallery image in lightbox ? =
288
 
289
+ In lightbox section of the gallery settings you can find hide title option. If you enable it titles of the gallery images in lightbox will be turned off.
290
 
291
  = How to define size of the gallery images thumbnails? =
292
 
293
  Our gallery is fully responsive and gallery thumbnails size depend of a lot of factors. Gallery calculate thumbnails automatically depend of the general gallery size and gallery layout settings. First of all you can define ratio values for gallery thumbnails. Size of the thumbnails could be selected from standard pre-defined wordpress sizes: thumbnail, medium, large, full
294
 
295
+ = How to enable lazy load in gallery options? =
296
+
297
+ In gallery settings you can find option to enable/disable lazy load, also there you'll have alot of additional options for customization of the loading process
298
+
299
  = Which parameters I can change for the gallery thumbnails borders and shadows? =
300
 
301
  You can change size, color and style of gallery thumbnails borders and shadows. Also you can define different parameters for static and hovered status
308
 
309
  In admin section of the gallery you'll find columns options which provide you advanced customization options for different resolutions. You can define some static size or auto size for every resolution.
310
 
 
 
 
 
311
  = How to change color of the gallery interface elements? =
312
 
313
  Color of every gallery front end interface element could be changed changed in admin section with color selector. There you can change colors of the menu buttons, load more button, borders, shadows, backgrounds and etc.
320
 
321
  In gallery settings you can enable custom caption settings where you can customize font color and see results in live preview
322
 
323
+ = How to make gallery thumbnails with rounded corners? =
324
+
325
+ In gallery settings you can find section rounds where with special options you can define radius for the gallery thumbnails
326
+
327
  = Is it possible to create target blank links? =
328
 
329
  Yes. When you open gallery media manager you'll see there list of the gallery images. Click on some image and on the right side you'll see images options. Every gallery image have target blank field below link field of the gallery image.
562
 
563
  == Changelog ==
564
 
565
+ = 1.4.5 =
566
+ * Added new text additional options
567
+ * Implemented PreText option with HTML support
568
+
569
  = 1.4.4 =
570
  * Updated image description processing code
571
  * Fixed HTML support in images description
742
 
743
  == Upgrade Notice ==
744
 
745
+ = 1.4.5 =
746
+ Added new text additional options, implemented PreText option with HTML support
747
+
748
  = 1.4.4 =
749
  Added more flexible HTML tags support in description, fixed HTML processing in images description field
750
 
robogallery.php CHANGED
@@ -8,7 +8,7 @@
8
  * Plugin Name: Robo Gallery
9
  * Plugin URI: http://robosoft.co/robogallery
10
  * Description: A responsive, easy and elegant way to show gallery.
11
- * Version: 1.4.4
12
  * Author: RoboSoft (c)
13
  * Author URI: http://robosoft.co/robogallery
14
  * License: GPL-2.0+
@@ -19,7 +19,7 @@
19
 
20
  if ( ! defined( 'WPINC' ) ) die;
21
  define("ROBO_GALLERY", 1);
22
- define("ROBO_GALLERY_VERSION", '1.4.4');
23
  define("ROBO_GALLERY_PATH", plugin_dir_path( __FILE__ ));
24
  define("ROBO_GALLERY_SPECIAL", 0);
25
 
8
  * Plugin Name: Robo Gallery
9
  * Plugin URI: http://robosoft.co/robogallery
10
  * Description: A responsive, easy and elegant way to show gallery.
11
+ * Version: 1.4.5
12
  * Author: RoboSoft (c)
13
  * Author URI: http://robosoft.co/robogallery
14
  * License: GPL-2.0+
19
 
20
  if ( ! defined( 'WPINC' ) ) die;
21
  define("ROBO_GALLERY", 1);
22
+ define("ROBO_GALLERY_VERSION", '1.4.5');
23
  define("ROBO_GALLERY_PATH", plugin_dir_path( __FILE__ ));
24
  define("ROBO_GALLERY_SPECIAL", 0);
25