Version Description
- New Layout Introduced
- Help Video Added
- Bugs Fixed with Title & Description
- Compatibility with 3.9
- Language Updated - Finnish
Download this release
Release Info
Developer | Gallery-Bank |
Plugin | Gallery Bank: WordPress Photo Gallery Plugin |
Version | 3.0.21 |
Comparing to | |
See all releases |
Code changes from version 3.0.20 to 3.0.21
- assets/css/stylesheet.css +108 -0
- assets/images/banner.jpg +0 -0
- assets/images/how-to-setup-short-code.png +0 -0
- assets/images/img.png +0 -0
- front_views/masonry-gallery.php +2 -2
- front_views/thumbnail-gallery.php +3 -3
- gallery-bank.php +1 -1
- lang/{gallery-bank-fi_FI.mo → gallery-bank-fi.mo} +0 -0
- lang/{gallery-bank-fi_FI.po → gallery-bank-fi.po} +1 -1
- readme.txt +272 -7
- views/add-new-album.php +148 -154
- views/album-preview.php +93 -100
- views/album-sorting.php +112 -119
- views/dashboard.php +219 -129
- views/edit-album.php +262 -269
- views/gallery-bank-system-report.php +459 -462
- views/header.php +59 -5
- views/images-sorting.php +100 -106
- views/purchase_pro_version.php +637 -620
- views/settings.php +1235 -1240
- views/shortcode.php +30 -36
assets/css/stylesheet.css
CHANGED
@@ -2593,6 +2593,114 @@ Popover
|
|
2593 |
-webkit-box-shadow: 0px 1px 1px 0 #FF6D1E inset;
|
2594 |
box-shadow: 0px 1px 1px 0 #FF6D1E inset;
|
2595 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2596 |
@media (min-width: 768px) and (max-width: 979px) {
|
2597 |
.hidden-desktop {
|
2598 |
display: inherit !important;
|
2593 |
-webkit-box-shadow: 0px 1px 1px 0 #FF6D1E inset;
|
2594 |
box-shadow: 0px 1px 1px 0 #FF6D1E inset;
|
2595 |
}
|
2596 |
+
/****************************** Gallery Bank Getting Started **********************************/
|
2597 |
+
#gallery_bank_get_started .inside {
|
2598 |
+
padding : 0;
|
2599 |
+
margin : 0;
|
2600 |
+
}
|
2601 |
+
|
2602 |
+
#gallery_bank_get_started .gallery-bank-video {
|
2603 |
+
position : relative;
|
2604 |
+
padding-bottom : 48.5%;
|
2605 |
+
padding-top : 25px;
|
2606 |
+
height : 0;
|
2607 |
+
width : 85%;
|
2608 |
+
margin : 1em auto 0 auto;
|
2609 |
+
}
|
2610 |
+
|
2611 |
+
#gallery_bank_get_started .gallery-bank-video iframe {
|
2612 |
+
position : absolute;
|
2613 |
+
top : 0;
|
2614 |
+
left : 0;
|
2615 |
+
width : 100%;
|
2616 |
+
height : 100%;
|
2617 |
+
}
|
2618 |
+
|
2619 |
+
.gallery_bank_getting_started {
|
2620 |
+
padding : 0 2em;
|
2621 |
+
overflow : hidden;
|
2622 |
+
}
|
2623 |
+
.gallery_bank_layout
|
2624 |
+
{
|
2625 |
+
padding: 0px 10px 0 16px;
|
2626 |
+
}
|
2627 |
+
.gallery_bank_layout > a
|
2628 |
+
{
|
2629 |
+
margin-top:15px;
|
2630 |
+
margin-bottom:10px;
|
2631 |
+
text-decoration:none !important;
|
2632 |
+
}
|
2633 |
+
.gallery_bank_layout > .btn
|
2634 |
+
{
|
2635 |
+
margin-top:15px;
|
2636 |
+
margin-bottom:10px;
|
2637 |
+
text-decoration:none !important;
|
2638 |
+
}
|
2639 |
+
.gallery_bank_getting_started .column {
|
2640 |
+
width : 100%;
|
2641 |
+
max-width : 45%;
|
2642 |
+
float : left;
|
2643 |
+
padding-right : 2.5%;
|
2644 |
+
|
2645 |
+
padding-bottom : 2em;
|
2646 |
+
}
|
2647 |
+
|
2648 |
+
.gallery_bank_getting_started .column.two {
|
2649 |
+
margin-right : 0;
|
2650 |
+
padding-right : 0;
|
2651 |
+
padding-left : 2.5%;
|
2652 |
+
border : 0;
|
2653 |
+
max-width : 49%;
|
2654 |
+
border-left : 1px solid #ebebeb;
|
2655 |
+
}
|
2656 |
+
|
2657 |
+
.gallery_bank_getting_started .gallery-bank-video-link {
|
2658 |
+
width : 100%;
|
2659 |
+
max-width : 200px;
|
2660 |
+
float : left;
|
2661 |
+
margin : 0 1.5em 1.5em 0;
|
2662 |
+
}
|
2663 |
+
|
2664 |
+
.gallery_bank_getting_started .gallery-bank-video-link img {
|
2665 |
+
max-width : 100%;
|
2666 |
+
height : auto;
|
2667 |
+
}
|
2668 |
+
|
2669 |
+
.gallery_bank_getting_started .gallery_bank_video {
|
2670 |
+
display : none;
|
2671 |
+
}
|
2672 |
+
|
2673 |
+
|
2674 |
+
.gallery-bank-video-popup .gallery_bank_video {
|
2675 |
+
padding : 0;
|
2676 |
+
margin : 0 0 -5px 0;
|
2677 |
+
}
|
2678 |
+
|
2679 |
+
.gallery-bank-video-popup .ui-dialog-titlebar {
|
2680 |
+
line-height : 1;
|
2681 |
+
font-size : 1em;
|
2682 |
+
height : 35px;
|
2683 |
+
background : #222;
|
2684 |
+
border-bottom : none;
|
2685 |
+
}
|
2686 |
+
|
2687 |
+
.gallery-bank-video-popup .ui-dialog-titlebar button {
|
2688 |
+
width : 30px;
|
2689 |
+
height : 30px;
|
2690 |
+
color : #ffffff;
|
2691 |
+
top : 0px;
|
2692 |
+
right : 0px;
|
2693 |
+
margin : 0;
|
2694 |
+
padding : 0;
|
2695 |
+
}
|
2696 |
+
|
2697 |
+
|
2698 |
+
.breadcrumb > li > a
|
2699 |
+
{
|
2700 |
+
text-decoration:none !important;
|
2701 |
+
}
|
2702 |
+
|
2703 |
+
|
2704 |
@media (min-width: 768px) and (max-width: 979px) {
|
2705 |
.hidden-desktop {
|
2706 |
display: inherit !important;
|
assets/images/banner.jpg
DELETED
Binary file
|
assets/images/how-to-setup-short-code.png
CHANGED
Binary file
|
assets/images/img.png
ADDED
Binary file
|
front_views/masonry-gallery.php
CHANGED
@@ -31,8 +31,8 @@
|
|
31 |
$css_class = $widget == "true" ? "widget_width_thumb". $unique_id : "width_thumb ";
|
32 |
for($flag = 0; $flag< count($pics); $flag++)
|
33 |
{
|
34 |
-
$image_title = $image_title_setting == 1 && $pics[$flag]->title != "" ? "<h5>" . html_entity_decode(stripcslashes(htmlspecialchars($pics[$flag]->title))). "</h5>" : "";
|
35 |
-
$image_description = $image_desc_setting == 1 && $pics[$flag]->description != "" ? "<p>" . html_entity_decode(stripcslashes(htmlspecialchars($pics[$flag]->description))) ."</p>" : "";
|
36 |
if( $pics[$flag]->url == "" || $pics[$flag]->url == "undefined" || $pics[$flag]->url == "http://")
|
37 |
{
|
38 |
if($pics[$flag]->video == 1)
|
31 |
$css_class = $widget == "true" ? "widget_width_thumb". $unique_id : "width_thumb ";
|
32 |
for($flag = 0; $flag< count($pics); $flag++)
|
33 |
{
|
34 |
+
$image_title = $image_title_setting == 1 && $pics[$flag]->title != "" ? "<h5>" . esc_attr(html_entity_decode(stripcslashes(htmlspecialchars($pics[$flag]->title)))). "</h5>" : "";
|
35 |
+
$image_description = $image_desc_setting == 1 && $pics[$flag]->description != "" ? "<p>" . esc_attr(html_entity_decode(stripcslashes(htmlspecialchars($pics[$flag]->description)))) ."</p>" : "";
|
36 |
if( $pics[$flag]->url == "" || $pics[$flag]->url == "undefined" || $pics[$flag]->url == "http://")
|
37 |
{
|
38 |
if($pics[$flag]->video == 1)
|
front_views/thumbnail-gallery.php
CHANGED
@@ -16,14 +16,14 @@ if($img_title == "true")
|
|
16 |
<?php
|
17 |
for($flag = 0; $flag< count($pics); $flag++)
|
18 |
{
|
19 |
-
$image_title = $image_title_setting == 1 && $pics[$flag]->title != "" ? "<h5>" . html_entity_decode(stripcslashes(htmlspecialchars($pics[$flag]->title))). "</h5>" : "";
|
20 |
-
$image_description = $image_desc_setting == 1 && $pics[$flag]->description != "" ? "<p>" . html_entity_decode(stripcslashes(htmlspecialchars($pics[$flag]->description))) ."</p>" : "";
|
21 |
if( $pics[$flag]->url == "" || $pics[$flag]->url == "undefined" || $pics[$flag]->url == "http://")
|
22 |
{
|
23 |
if($pics[$flag]->video == 1)
|
24 |
{
|
25 |
?>
|
26 |
-
<a rel="<?php echo $unique_id;?>prettyPhoto[gallery]" href="<?php echo stripcslashes($pics[$flag]->pic_name); ?>" data-title="<?php echo $image_title.$image_description;?>" id="ux_img_div_<?php echo $unique_id
|
27 |
<?php
|
28 |
}
|
29 |
else
|
16 |
<?php
|
17 |
for($flag = 0; $flag< count($pics); $flag++)
|
18 |
{
|
19 |
+
$image_title = $image_title_setting == 1 && $pics[$flag]->title != "" ? "<h5>" . esc_attr(html_entity_decode(stripcslashes(htmlspecialchars($pics[$flag]->title)))). "</h5>" : "";
|
20 |
+
$image_description = $image_desc_setting == 1 && $pics[$flag]->description != "" ? "<p>" . esc_attr(html_entity_decode(stripcslashes(htmlspecialchars($pics[$flag]->description)))) ."</p>" : "";
|
21 |
if( $pics[$flag]->url == "" || $pics[$flag]->url == "undefined" || $pics[$flag]->url == "http://")
|
22 |
{
|
23 |
if($pics[$flag]->video == 1)
|
24 |
{
|
25 |
?>
|
26 |
+
<a rel="<?php echo $unique_id;?>prettyPhoto[gallery]" href="<?php echo stripcslashes($pics[$flag]->pic_name); ?>" data-title="<?php echo $image_title.$image_description;?>" id="ux_img_div_<?php echo $unique_id; ?>">
|
27 |
<?php
|
28 |
}
|
29 |
else
|
gallery-bank.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
Plugin URI: http://tech-banker.com
|
5 |
Description: Gallery Bank is an easy to use Responsive WordPress Gallery Plugin for photos, videos, galleries and albums.
|
6 |
Author: Tech Banker
|
7 |
-
Version: 3.0.
|
8 |
Author URI: http://tech-banker.com
|
9 |
*/
|
10 |
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
4 |
Plugin URI: http://tech-banker.com
|
5 |
Description: Gallery Bank is an easy to use Responsive WordPress Gallery Plugin for photos, videos, galleries and albums.
|
6 |
Author: Tech Banker
|
7 |
+
Version: 3.0.21
|
8 |
Author URI: http://tech-banker.com
|
9 |
*/
|
10 |
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
lang/{gallery-bank-fi_FI.mo → gallery-bank-fi.mo}
RENAMED
Binary file
|
lang/{gallery-bank-fi_FI.po → gallery-bank-fi.po}
RENAMED
@@ -11,7 +11,7 @@ msgstr ""
|
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
"X-Generator: Poedit 1.6.4\n"
|
13 |
"X-Poedit-KeywordsList: __;_e\n"
|
14 |
-
"X-Poedit-Basepath: C:\\wamp\\www\\
|
15 |
"\\gallery-bank\\\n"
|
16 |
"X-Poedit-SearchPath-0: .\n"
|
17 |
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
"X-Generator: Poedit 1.6.4\n"
|
13 |
"X-Poedit-KeywordsList: __;_e\n"
|
14 |
+
"X-Poedit-Basepath: C:\\wamp\\www\\wordpress-3.9\\wp-content\\plugins"
|
15 |
"\\gallery-bank\\\n"
|
16 |
"X-Poedit-SearchPath-0: .\n"
|
17 |
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: Gallery-Bank,contact-banker
|
|
3 |
Tags: admin, album, best gallery plugin, best portfolio plugin, comments, easy media gallery, filterable gallery, filterable portfolio, gallery, gallery album, gallery bank, gallery wordpress plugin, grid gallery, image, image album, image slider, images, links, media, nextgen, page, pagination gallery, pagination portfolio, photo album, photo albums, photo gallery, photo slider, photos, pictures, plugin, portfolio, portfolio gallery, portfolio wordpress plugin, post, posts, responsive gallery, seo image,sidebar, slideshow, thumbnails, videos, widget, wordpress gallery plugin, wordpress portfolio plugin, wp gallery, wp gallery plugin
|
4 |
Requires at least: 3.3
|
5 |
Tested up to: 3.9
|
6 |
-
Stable tag: 3.0.
|
7 |
License: GPLv3 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
9 |
|
@@ -48,7 +48,7 @@ It provides a powerful engine for uploading and managing galleries of images & v
|
|
48 |
|
49 |
Gallery Bank is designed to adapt each portfolio to any situation and can be easily used on mobiles as it is a Responsive Plugin.
|
50 |
|
51 |
-
***April
|
52 |
`
|
53 |
<a href="http://tech-banker.com/forum/gallery-bank-support/" target="_blank">Support Desk - feel free to ask your Queries</a>
|
54 |
|
@@ -209,22 +209,287 @@ With Global Settings, you can define different settings for Thumbnails, Albums,
|
|
209 |
|
210 |
== Installation ==
|
211 |
|
212 |
-
1.
|
213 |
-
2.
|
|
|
|
|
|
|
|
|
214 |
|
215 |
== Frequently Asked Questions ==
|
216 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
217 |
== Screenshots ==
|
218 |
|
219 |
1. Gallery Bank Dashboard Page
|
220 |
2. Add New Album
|
221 |
3. How to create Shortcode using Shortcode Editor.
|
222 |
-
4.
|
223 |
-
5.
|
224 |
-
6.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
225 |
|
226 |
== Changelog ==
|
227 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
228 |
= 3.0.20 =
|
229 |
|
230 |
* Bugs Fixed
|
3 |
Tags: admin, album, best gallery plugin, best portfolio plugin, comments, easy media gallery, filterable gallery, filterable portfolio, gallery, gallery album, gallery bank, gallery wordpress plugin, grid gallery, image, image album, image slider, images, links, media, nextgen, page, pagination gallery, pagination portfolio, photo album, photo albums, photo gallery, photo slider, photos, pictures, plugin, portfolio, portfolio gallery, portfolio wordpress plugin, post, posts, responsive gallery, seo image,sidebar, slideshow, thumbnails, videos, widget, wordpress gallery plugin, wordpress portfolio plugin, wp gallery, wp gallery plugin
|
4 |
Requires at least: 3.3
|
5 |
Tested up to: 3.9
|
6 |
+
Stable tag: 3.0.21
|
7 |
License: GPLv3 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
9 |
|
48 |
|
49 |
Gallery Bank is designed to adapt each portfolio to any situation and can be easily used on mobiles as it is a Responsive Plugin.
|
50 |
|
51 |
+
***April 26, 2014: We're happy to announce that Gallery Bank reached 113,150+ plugin downloads in only 11 months. We frequently receive positive feedback from people using our Gallery Bank Plugin for WordPress. Thanks so much for your support!***
|
52 |
`
|
53 |
<a href="http://tech-banker.com/forum/gallery-bank-support/" target="_blank">Support Desk - feel free to ask your Queries</a>
|
54 |
|
209 |
|
210 |
== Installation ==
|
211 |
|
212 |
+
1. Login to your website and go to the Plugins section of your admin panel.
|
213 |
+
2. Click the Add New button.
|
214 |
+
3. Under Install Plugins, click the Upload link.
|
215 |
+
4. Select the plugin zip file (gallery-bank.zip) from your computer then click the Install Now button.
|
216 |
+
5. You should see a message stating that the plugin was installed successfully.
|
217 |
+
6. Click the Activate Plugin link.
|
218 |
|
219 |
== Frequently Asked Questions ==
|
220 |
|
221 |
+
= How to add New Album in Gallery Bank? =
|
222 |
+
|
223 |
+
In order to Add New Album in your Gallery Bank, locate Gallery Bank Menu on the left side of
|
224 |
+
WordPress Dashboard Menus and then click on Add New Album link.
|
225 |
+
|
226 |
+
Alternatively, you can also Add New Album from your Gallery Bank Dashboard Page.
|
227 |
+
|
228 |
+
There is a button at the top of the Gallery Bank Dashboard Page which says Add New Album.
|
229 |
+
|
230 |
+
First Method:
|
231 |
+
|
232 |
+
[Click here to view the Image](http://tech-banker.com/wp-content/uploads/2013/11/gallery-bank-left-menu.png)
|
233 |
+
|
234 |
+
Alternate Method:
|
235 |
+
|
236 |
+
[Click here to view the Image](http://tech-banker.com/wp-content/uploads/2013/11/gallery-bank-left-menu2.png)
|
237 |
+
|
238 |
+
Once you click on the button from any of the above mentioned methods, this page would open.
|
239 |
+
|
240 |
+
[Click here to view the Image](http://tech-banker.com/wp-content/uploads/2013/11/add-new-album-explanation.png)
|
241 |
+
|
242 |
+
|
243 |
+
= How to Edit an Album? =
|
244 |
+
|
245 |
+
In order to Edit an Album, you need to go to your Gallery Bank Dashboard Page and then
|
246 |
+
click on Edit Album Button located at the right side of each album which you wish to edit.
|
247 |
+
|
248 |
+
[Click here to view the Image](http://tech-banker.com/wp-content/uploads/2013/11/Edit.png)
|
249 |
+
|
250 |
+
Once you Click on the button, this page will open.
|
251 |
+
|
252 |
+
[Click here to view the Image](http://tech-banker.com/wp-content/uploads/2013/11/Edit_img-938x1024.png)
|
253 |
+
|
254 |
+
|
255 |
+
= How to Preview an Album? =
|
256 |
+
|
257 |
+
In order to Preview your Album, you need to go to your Gallery Bank Dashboard Page
|
258 |
+
and then click on Preview Album button at the right side of each album.
|
259 |
+
|
260 |
+
[Click here to view the Image](http://tech-banker.com/wp-content/uploads/2013/11/preview11-1024x408.png)
|
261 |
+
|
262 |
+
Once you click on the button, this page will open
|
263 |
+
|
264 |
+
[Click here to view the Image](http://tech-banker.com/wp-content/uploads/2013/11/preview21-1024x487.png)
|
265 |
+
|
266 |
+
|
267 |
+
= How to Delete an Album? =
|
268 |
+
|
269 |
+
You can Delete an Album if you wish to. In order to perform this action, you need to go to
|
270 |
+
your Gallery Bank Dashboard Page and then click on Delete Album button at the right
|
271 |
+
side of each album.
|
272 |
+
|
273 |
+
[Click here to view the Image](http://tech-banker.com/wp-content/uploads/2013/11/delete11-1024x409.png)
|
274 |
+
|
275 |
+
Once you click on the button, a confirmation message will appear stating
|
276 |
+
"Are you sure you want to delete this Album?"
|
277 |
+
|
278 |
+
[Click here to view the Image](http://tech-banker.com/wp-content/uploads/2013/11/delete2-1024x406.png)
|
279 |
+
|
280 |
+
Click on "OK" to proceed and your Album would be deleted.
|
281 |
+
|
282 |
+
|
283 |
+
= How to set Short code for Masonry Gallery? =
|
284 |
+
|
285 |
+
In order to set Shortcode for Masonry Gallery, you need to follow these steps :
|
286 |
+
1) Locate Pages Menu on the left side of WordPress Dashboard Menus and then click on Pages.
|
287 |
+
|
288 |
+
Once you click on the Pages, there will be two options. Click on Add New button to add a new page.
|
289 |
+
|
290 |
+
[Click here to view the Image](http://tech-banker.com/wp-content/uploads/2013/11/add_new_page.png)
|
291 |
+
|
292 |
+
2) When you click on Add New button, this page will open.
|
293 |
+
|
294 |
+
[Click here to view the Image](http://tech-banker.com/wp-content/uploads/2013/11/masonry2-1024x511.png)
|
295 |
+
|
296 |
+
3) After clicking on Gallery Bank button, this Popup will open.
|
297 |
+
|
298 |
+
[Click here to view the Image](http://tech-banker.com/wp-content/uploads/2013/11/masonry3-1024x451.png)
|
299 |
+
|
300 |
+
NOTE: You can set Images in Row for Masonry Gallery only if Show Responsive Gallery
|
301 |
+
option is False in shortcode.
|
302 |
+
|
303 |
+
[Click here to view the Image](http://tech-banker.com/wp-content/uploads/2013/11/masonry4-1024x657.png)
|
304 |
+
|
305 |
+
|
306 |
+
= How to set Short code for Thumbnail Gallery? =
|
307 |
+
|
308 |
+
In order to set Shortcode for Thumbnail Gallery, you need to follow these steps :
|
309 |
+
1) Locate Pages Menu on the left side of WordPress Dashboard Menus and then click on Pages.
|
310 |
+
|
311 |
+
Once you click on the Pages, there will be two options. Click on Add New button to add a new page.
|
312 |
+
|
313 |
+
[Click here to view the Image](http://tech-banker.com/wp-content/uploads/2013/11/add_new_page.png)
|
314 |
+
|
315 |
+
2) When you click on Add New button, this page will open.
|
316 |
+
|
317 |
+
[Click here to view the Image](http://tech-banker.com/wp-content/uploads/2013/11/masonry2-1024x511.png)
|
318 |
+
|
319 |
+
3) After clicking on Gallery Bank button, this Popup will open.
|
320 |
+
|
321 |
+
[Click here to view the Image](http://tech-banker.com/wp-content/uploads/2013/11/thumbnail1-1024x493.png)
|
322 |
+
|
323 |
+
NOTE: You can set Images in Row for Thumbnail Gallery only if Show Responsive Gallery option
|
324 |
+
is False in shortcode.
|
325 |
+
|
326 |
+
[Click here to view the Image](http://tech-banker.com/wp-content/uploads/2013/11/thmbnail2-1024x450.png)
|
327 |
+
|
328 |
+
|
329 |
+
= How to set Short code for Grid Album using Masonry Gallery? =
|
330 |
+
|
331 |
+
In order to set Shortcode for Grid Album with Masonry Gallery, you need to follow these steps :
|
332 |
+
1) Locate Pages Menu on the left side of WordPress Dashboard Menus and then click on Pages.
|
333 |
+
|
334 |
+
Once you click on the Pages, there will be two options. Click on Add New button to add a new page.
|
335 |
+
|
336 |
+
[Click here to view the Image](http://tech-banker.com/wp-content/uploads/2013/11/add_new_page.png)
|
337 |
+
|
338 |
+
2) When you click on Add New button, this page will open.
|
339 |
+
|
340 |
+
[Click here to view the Image](http://tech-banker.com/wp-content/uploads/2013/11/masonry2-1024x511.png)
|
341 |
+
|
342 |
+
3) After clicking on Gallery Bank button, this Popup will open.
|
343 |
+
|
344 |
+
[Click here to view the Image](http://tech-banker.com/wp-content/uploads/2013/11/grid_masonry1-1024x541.png)
|
345 |
+
|
346 |
+
Note: You can set Images in Row for Masonry Gallery only if Show Responsive Gallery option
|
347 |
+
is False in shortcode.
|
348 |
+
|
349 |
+
[Click here to view the Image](http://tech-banker.com/wp-content/uploads/2013/11/grid_masonry2-1024x573.png)
|
350 |
+
|
351 |
+
|
352 |
+
= How to set Short code for Grid Album using Thumbnail Gallery? =
|
353 |
+
|
354 |
+
In order to set Shortcode for Grid Album with Thumbnail Gallery, you need to follow these steps :
|
355 |
+
1) Locate Pages Menu on the left side of WordPress Dashboard Menus and then click on Pages.
|
356 |
+
|
357 |
+
Once you click on the Pages, this page would open. Click on Add New button to add a new page.
|
358 |
+
|
359 |
+
[Click here to view the Image](http://tech-banker.com/wp-content/uploads/2013/11/add_new_page.png)
|
360 |
+
|
361 |
+
2) When you click on Add New button, this page will open.
|
362 |
+
|
363 |
+
[Click here to view the Image](http://tech-banker.com/wp-content/uploads/2013/11/masonry2-1024x511.png)
|
364 |
+
|
365 |
+
3) When you click on Gallery Bank button, this Popup will open.
|
366 |
+
|
367 |
+
[Click here to view the Image](http://tech-banker.com/wp-content/uploads/2013/11/grid_thumbnail2-1024x574.png)
|
368 |
+
|
369 |
+
NOTE: You can set Images in Row for Thumbnail Gallery only if Show Responsive Gallery
|
370 |
+
option is False in shortcode.
|
371 |
+
|
372 |
+
[Click here to view the Image](http://tech-banker.com/wp-content/uploads/2013/11/grid_thumbnail2-1024x574.png)
|
373 |
+
|
374 |
+
|
375 |
+
= How to set Short code for List Album using Masonry Gallery? =
|
376 |
+
|
377 |
+
In order to set Shortcode for List Album with Masonry Gallery, you need to follow these steps :
|
378 |
+
1) Locate Pages Menu on the left side of WordPress Dashboard Menus and then click on Pages.
|
379 |
+
|
380 |
+
Once you click on the Pages, there will be two options. Click on Add New button to add a new page.
|
381 |
+
|
382 |
+
[Click here to view the Image](http://tech-banker.com/wp-content/uploads/2013/11/add_new_page.png)
|
383 |
+
|
384 |
+
2) When you click on Add New button, this page will open.
|
385 |
+
|
386 |
+
[Click here to view the Image](http://tech-banker.com/wp-content/uploads/2013/11/masonry2-1024x511.png)
|
387 |
+
|
388 |
+
3) After clicking on Gallery Bank button, this Popup will open.
|
389 |
+
|
390 |
+
[Click here to view the Image](http://tech-banker.com/wp-content/uploads/2013/11/masonry_list_1.png)
|
391 |
+
|
392 |
+
|
393 |
+
= How to set Short code for List Album using Thumbnail Gallery? =
|
394 |
+
|
395 |
+
In order to set Shortcode for List Album with Thumbnail Gallery, you need to follow these steps :
|
396 |
+
1) Locate Pages Menu on the left side of WordPress Dashboard Menus and then click on Pages.
|
397 |
+
|
398 |
+
Once you click on the Pages, there will be two options. Click on Add New button to add a new page.
|
399 |
+
|
400 |
+
[Click here to view the Image](http://tech-banker.com/wp-content/uploads/2013/11/add_new_page.png)
|
401 |
+
|
402 |
+
2) When you click on Add New button, this page will open.
|
403 |
+
|
404 |
+
[Click here to view the Image](http://tech-banker.com/wp-content/uploads/2013/11/masonry2-1024x511.png)
|
405 |
+
|
406 |
+
3) After clicking on Gallery Bank button, this Popup will open.
|
407 |
+
|
408 |
+
[Click here to view the Image](http://tech-banker.com/wp-content/uploads/2013/11/thumbnail_list_1-1024x467.png)
|
409 |
+
|
410 |
+
NOTE: You can set Images in Row for Thumbnail Gallery only if Show Responsive Gallery option
|
411 |
+
is False in shortcode.
|
412 |
+
|
413 |
+
[Click here to view the Image](http://tech-banker.com/wp-content/uploads/2013/11/thumbnail_list_2-1024x462.png)
|
414 |
+
|
415 |
+
|
416 |
+
= How to set Short code for Individual Album using Masonry Gallery? =
|
417 |
+
|
418 |
+
In order to set Shortcode for Individual Album with Masonry Gallery, you need to follow these steps :
|
419 |
+
1) Locate Pages Menu on the left side of WordPress Dashboard Menus and then click on Pages.
|
420 |
+
|
421 |
+
Once you click on the Pages, there will be two options. Click on Add New button to add a new page.
|
422 |
+
|
423 |
+
[Click here to view the Image](http://tech-banker.com/wp-content/uploads/2013/11/add_new_page.png)
|
424 |
+
|
425 |
+
2) When you click on Add New button, this page will open.
|
426 |
+
|
427 |
+
[Click here to view the Image](http://tech-banker.com/wp-content/uploads/2013/11/masonry2-1024x511.png)
|
428 |
+
|
429 |
+
3) After clicking on Gallery Bank button, this Popup will open.
|
430 |
+
|
431 |
+
[Click here to view the Image](http://tech-banker.com/wp-content/uploads/2013/11/individual_masonry1-1024x495.png)
|
432 |
+
|
433 |
+
NOTE: You can set Images in Row for Masonry Gallery only if Show Responsive Gallery option
|
434 |
+
is False in shortcode.
|
435 |
+
|
436 |
+
[Click here to view the Image](http://tech-banker.com/wp-content/uploads/2013/11/individual_masonry_2-1024x559.png)
|
437 |
+
|
438 |
+
|
439 |
+
= How to set Short code for Individual Album using Thumbnail Gallery? =
|
440 |
+
|
441 |
+
In order to set Shortcode for Individual Album with Thumbnail Gallery, you need to follow these steps :
|
442 |
+
1) Locate Pages Menu on the left side of WordPress Dashboard Menus and then click on Pages.
|
443 |
+
|
444 |
+
Once you click on the Pages, there will be two options. Click on Add New button to add a new page.
|
445 |
+
|
446 |
+
[Click here to view the Image](http://tech-banker.com/wp-content/uploads/2013/11/422x105xadd_new_page1.png.pagespeed.ic.0XLpT7oDfn.png)
|
447 |
+
|
448 |
+
2) When you click on Add New button, this page will open.
|
449 |
+
|
450 |
+
[Click here to view the Image](http://tech-banker.com/wp-content/uploads/2013/11/800xNxmasonry2-1024x511.png.pagespeed.ic.cYyWvoC3qL.jpg)
|
451 |
+
|
452 |
+
3) After clicking on Gallery Bank button, this Popup will open.
|
453 |
+
|
454 |
+
[Click here to view the Image](http://tech-banker.com/wp-content/uploads/2013/11/individual-_thumbnail1-1024x512.png)
|
455 |
+
|
456 |
+
NOTE: You can set Images in Row for Thumbnail Gallery only if Show Responsive Gallery option
|
457 |
+
is False in shortcode.
|
458 |
+
|
459 |
+
[Click here to view the Image](http://tech-banker.com/wp-content/uploads/2013/11/individual-_thumbnail2-1024x574.png)
|
460 |
+
|
461 |
+
|
462 |
== Screenshots ==
|
463 |
|
464 |
1. Gallery Bank Dashboard Page
|
465 |
2. Add New Album
|
466 |
3. How to create Shortcode using Shortcode Editor.
|
467 |
+
4. ShortCode Implementation for Images using Masonry Layout.
|
468 |
+
5. ShortCode Implementation for Images using Thumbnails Layout.
|
469 |
+
6. ShortCode Implementation for Grid Albums using Masonry Layout.
|
470 |
+
7. ShortCode Implementation for Grid Albums using Thumbnail Layout.
|
471 |
+
8. ShortCode Implementation for List Albums using Masonry Layout.
|
472 |
+
9. ShortCode Implementation for List Albums using Thumbnail Layout.
|
473 |
+
10. ShortCode Implementation for Individual Albums using Masonry Layout.
|
474 |
+
11. ShortCode Implementation for Individual Albums using Thumbnail Layout.
|
475 |
+
12. System Status
|
476 |
+
13. Displaying Images using Masonry Layout.
|
477 |
+
14. Displaying Images using Thumbnail Layout.
|
478 |
+
15. Displaying Grid Album with Images.
|
479 |
+
16. Displaying List Album with Images.
|
480 |
+
17. Displaying Individual Album with Images.
|
481 |
+
|
482 |
|
483 |
== Changelog ==
|
484 |
|
485 |
+
= 3.0.21 =
|
486 |
+
|
487 |
+
* New Layout Introduced
|
488 |
+
* Help Video Added
|
489 |
+
* Bugs Fixed with Title & Description
|
490 |
+
* Compatibility with 3.9
|
491 |
+
* Language Updated - Finnish
|
492 |
+
|
493 |
= 3.0.20 =
|
494 |
|
495 |
* Bugs Fixed
|
views/add-new-album.php
CHANGED
@@ -86,160 +86,154 @@
|
|
86 |
}
|
87 |
?>
|
88 |
<form id="add_new_album" class="layout-form">
|
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 |
-
<a class="btn btn-inverse" href="admin.php?page=gallery_bank"
|
238 |
-
style="margin-top: 20px;"><?php _e("Back to Albums", gallery_bank); ?></a>
|
239 |
-
</div>
|
240 |
-
</div>
|
241 |
-
</div>
|
242 |
-
</div>
|
243 |
</form>
|
244 |
<script type="text/javascript">
|
245 |
//Global Declaration
|
86 |
}
|
87 |
?>
|
88 |
<form id="add_new_album" class="layout-form">
|
89 |
+
<div id="poststuff" style="width: 99% !important;">
|
90 |
+
<div id="post-body" class="metabox-holder">
|
91 |
+
<div id="postbox-container-2" class="postbox-container">
|
92 |
+
<div id="advanced" class="meta-box-sortables">
|
93 |
+
<div id="gallery_bank_get_started" class="postbox" >
|
94 |
+
<div class="handlediv" data-target="#ux_add_new_album" title="Click to toggle" data-toggle="collapse"><br></div>
|
95 |
+
<h3 class="hndle"><span><?php _e("Add New Album", gallery_bank); ?></span></h3>
|
96 |
+
<div class="inside">
|
97 |
+
<div id="ux_add_new_album" class="gallery_bank_layout">
|
98 |
+
<a class="btn btn-inverse" href="admin.php?page=gallery_bank">
|
99 |
+
<?php _e("Back to Albums", gallery_bank); ?>
|
100 |
+
</a>
|
101 |
+
<button type="submit" id="ux_save_album" class="btn btn-info" style="float:right">
|
102 |
+
<?php _e("Save and Submit Changes", gallery_bank); ?>
|
103 |
+
</button>
|
104 |
+
<div class="separator-doubled"></div>
|
105 |
+
<div id="album_success_message" class="message green" style="display: none;">
|
106 |
+
<span>
|
107 |
+
<strong>
|
108 |
+
<?php _e("Album Published. Kindly wait for the redirect to happen.", gallery_bank); ?>
|
109 |
+
</strong>
|
110 |
+
</span>
|
111 |
+
</div>
|
112 |
+
<a rel="prettyPhoto[gallery]" href="<?php echo GALLERY_BK_PLUGIN_URL . "/assets/images/how-to-setup-short-code.png";?>">How to setup Short-Codes for Gallery Bank into your WordPress Page/Post?</a>
|
113 |
+
<div class="fluid-layout">
|
114 |
+
<div class="layout-span6">
|
115 |
+
<div class="widget-layout">
|
116 |
+
<div class="widget-layout-title">
|
117 |
+
<h4><?php _e("Album Details", gallery_bank); ?></h4>
|
118 |
+
</div>
|
119 |
+
<div class="widget-layout-body">
|
120 |
+
<div class="layout-control-group">
|
121 |
+
<label class="layout-control-label">
|
122 |
+
<?php _e("Album Title", gallery_bank); ?> :
|
123 |
+
</label>
|
124 |
+
|
125 |
+
<div class="layout-controls">
|
126 |
+
<input type="text" name="ux_title" class="layout-span12" value=""
|
127 |
+
id="ux_title"
|
128 |
+
placeholder="<?php _e("Enter your Album Title", gallery_bank); ?>"/>
|
129 |
+
</div>
|
130 |
+
</div>
|
131 |
+
</div>
|
132 |
+
<div class="widget-layout-body">
|
133 |
+
<div class="layout-control-group">
|
134 |
+
<label class="layout-control-label"><?php _e("Description", gallery_bank); ?>
|
135 |
+
:</label>
|
136 |
+
</div>
|
137 |
+
<div class="layout-control-group">
|
138 |
+
<?php
|
139 |
+
wp_editor("", $id = "ux_description", $media_buttons = true, $tab_index = 1);
|
140 |
+
?>
|
141 |
+
</div>
|
142 |
+
</div>
|
143 |
+
</div>
|
144 |
+
</div>
|
145 |
+
<div class="layout-span6">
|
146 |
+
<div class="widget-layout">
|
147 |
+
<div class="widget-layout-title">
|
148 |
+
<h4><?php _e("Upload Images", gallery_bank); ?></h4>
|
149 |
+
</div>
|
150 |
+
<div class="widget-layout-body" id="image_uploader">
|
151 |
+
<p><?php _e("Your browser doesn\"t have Flash, Silverlight or HTML5 support.", gallery_bank) ?></p>
|
152 |
+
</div>
|
153 |
+
</div>
|
154 |
+
</div>
|
155 |
+
<div class="layout-span6">
|
156 |
+
<div class="widget-layout">
|
157 |
+
<div class="widget-layout-title">
|
158 |
+
<h4><?php _e("Upload Videos", gallery_bank); ?>
|
159 |
+
<i class="widget_premium_feature"><?php _e(" (Available in Premium Versions)", gallery_bank); ?></i>
|
160 |
+
</h4>
|
161 |
+
|
162 |
+
</div>
|
163 |
+
<div class="widget-layout-body" id="video_uploader">
|
164 |
+
<div class="layout-control-group">
|
165 |
+
<label class="layout-control-label"><?php _e("Video Url", gallery_bank); ?>
|
166 |
+
:</label>
|
167 |
+
|
168 |
+
<div class="layout-controls">
|
169 |
+
<input type="text" name="ux_txt_video_url" class="layout-span12" value=""
|
170 |
+
id="ux_txt_video_url"
|
171 |
+
placeholder="<?php _e("Enter your Video Url", gallery_bank); ?>"/>
|
172 |
+
</div>
|
173 |
+
</div>
|
174 |
+
<div class="layout-control-group">
|
175 |
+
<div class="layout-controls">
|
176 |
+
<button type="button" onclick="insertVideoToDataTable();"
|
177 |
+
style="float:right"
|
178 |
+
class="btn btn-info"><?php _e("Upload Video", gallery_bank); ?></button>
|
179 |
+
</div>
|
180 |
+
</div>
|
181 |
+
</div>
|
182 |
+
</div>
|
183 |
+
</div>
|
184 |
+
</div>
|
185 |
+
<div class="fluid-layout">
|
186 |
+
<div class="layout-span12">
|
187 |
+
<div class="widget-layout">
|
188 |
+
<div class="widget-layout-title">
|
189 |
+
<h4><?php _e("Your Gallery Bank Album", gallery_bank); ?></h4>
|
190 |
+
</div>
|
191 |
+
<div class="widget-layout-body">
|
192 |
+
<table class="table table-striped " id="data-table-album">
|
193 |
+
<thead>
|
194 |
+
<tr>
|
195 |
+
<th style="width:10%">
|
196 |
+
<input type="checkbox" id="grp_select_items" name="grp_select_items"
|
197 |
+
style="vertical-align:middle;"/>
|
198 |
+
<button type="button" onclick="deleteSelectedImages();"
|
199 |
+
style="vertical-align:middle;"
|
200 |
+
class="btn btn-inverse"><?php _e("Delete", gallery_bank); ?></button>
|
201 |
+
</th>
|
202 |
+
<th style="width:15%">
|
203 |
+
<?php _e("Thumbnail", gallery_bank); ?>
|
204 |
+
</th>
|
205 |
+
<th style="width:25%">
|
206 |
+
<?php _e("Title & Description", gallery_bank); ?>
|
207 |
+
</th>
|
208 |
+
<th style="width:20%">
|
209 |
+
<?php _e("Tags (comma separated list)", gallery_bank); ?>
|
210 |
+
<i class="widget_premium_feature"><?php _e(" (Available in Premium Versions)", gallery_bank); ?></i>
|
211 |
+
</th>
|
212 |
+
<th style="width:25%">
|
213 |
+
<?php _e("Url to Redirect on click of an Image", gallery_bank); ?>
|
214 |
+
</th>
|
215 |
+
<th style="width:5%"></th>
|
216 |
+
</tr>
|
217 |
+
</thead>
|
218 |
+
<tbody>
|
219 |
+
</tbody>
|
220 |
+
</table>
|
221 |
+
</div>
|
222 |
+
</div>
|
223 |
+
</div>
|
224 |
+
</div>
|
225 |
+
<div class="separator-doubled"></div>
|
226 |
+
<button type="submit" id="ux_save_album" class="btn btn-info"
|
227 |
+
style="float:right; margin-top: 20px;"><?php _e("Save and Submit Changes", gallery_bank); ?></button>
|
228 |
+
<a class="btn btn-inverse" href="admin.php?page=gallery_bank"
|
229 |
+
style="margin-top: 20px;"><?php _e("Back to Albums", gallery_bank); ?></a>
|
230 |
+
</div>
|
231 |
+
</div>
|
232 |
+
</div>
|
233 |
+
</div>
|
234 |
+
</div>
|
235 |
+
</div>
|
236 |
+
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
237 |
</form>
|
238 |
<script type="text/javascript">
|
239 |
//Global Declaration
|
views/album-preview.php
CHANGED
@@ -3,108 +3,102 @@ global $wpdb;
|
|
3 |
include GALLERY_BK_PLUGIN_DIR . "/views/includes_common_before.php";
|
4 |
?>
|
5 |
<!--suppress ALL -->
|
6 |
-
<form id="
|
7 |
-
<div
|
8 |
-
<div class="
|
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 |
-
<?php
|
50 |
-
endfor;
|
51 |
-
?>
|
52 |
-
</select>
|
53 |
-
</li>
|
54 |
-
</ul>
|
55 |
-
</div>
|
56 |
-
<div class="widget-layout-body">
|
57 |
-
<div id="gallery_bank_container" class="gallery_images">
|
58 |
-
<?php
|
59 |
-
for ($flag = 0;$flag < count($pics);$flag++)
|
60 |
-
{
|
61 |
-
$image_title = $image_desc_setting == 1 && $pics[$flag]->title != "" ? "<h5>" . html_entity_decode(stripcslashes(htmlspecialchars($pics[$flag]->title))). "</h5>" : "";
|
62 |
-
$image_description = $image_desc_setting == 1 && $pics[$flag]->description != "" ? "<p>" . html_entity_decode(stripcslashes(htmlspecialchars($pics[$flag]->description))) ."</p>" : "";
|
63 |
-
if ($pics[$flag]->url == "" || $pics[$flag]->url == "undefined" || $pics[$flag]->url == "http://")
|
64 |
-
{
|
65 |
-
if ($pics[$flag]->video == 1)
|
66 |
-
{
|
67 |
-
?>
|
68 |
-
<a rel="prettyPhoto[gallery]" href="<?php echo stripcslashes($pics[$flag]->pic_name); ?>"
|
69 |
-
data-title="<?php echo $image_title . $image_description; ?>" id="ux_img_div">
|
70 |
-
<?php
|
71 |
-
}
|
72 |
-
else
|
73 |
-
{
|
74 |
-
?>
|
75 |
-
<a rel="prettyPhoto[gallery]"
|
76 |
-
href="<?php echo stripcslashes(GALLERY_BK_THUMB_URL . $pics[$flag]->thumbnail_url); ?>"
|
77 |
-
data-title="<?php echo $image_title . $image_description; ?>" id="ux_img_div">
|
78 |
-
<?php
|
79 |
-
}
|
80 |
-
}
|
81 |
-
else
|
82 |
-
{
|
83 |
-
?>
|
84 |
-
<a href="<?php echo $pics[$flag]->url; ?>" id="ux_img_div" target="_blank"
|
85 |
-
data-title="<?php echo $image_title; ?>">
|
86 |
-
<?php
|
87 |
-
}
|
88 |
-
?>
|
89 |
-
<div class="imgLiquidFill dynamic_css">
|
90 |
<?php
|
91 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
92 |
?>
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
103 |
</div>
|
104 |
-
</
|
105 |
-
|
106 |
-
}
|
107 |
-
?>
|
108 |
</div>
|
109 |
</div>
|
110 |
</div>
|
@@ -115,7 +109,6 @@ include GALLERY_BK_PLUGIN_DIR . "/views/includes_common_before.php";
|
|
115 |
</div>
|
116 |
</div>
|
117 |
</form>
|
118 |
-
|
119 |
<?php
|
120 |
include GALLERY_BK_PLUGIN_DIR . "/views/includes_common_after.php";
|
121 |
?>
|
3 |
include GALLERY_BK_PLUGIN_DIR . "/views/includes_common_before.php";
|
4 |
?>
|
5 |
<!--suppress ALL -->
|
6 |
+
<form id="album_preview" class="layout-form">
|
7 |
+
<div id="poststuff" style="width: 99% !important;">
|
8 |
+
<div id="post-body" class="metabox-holder">
|
9 |
+
<div id="postbox-container-2" class="postbox-container">
|
10 |
+
<div id="advanced" class="meta-box-sortables">
|
11 |
+
<div id="gallery_bank_get_started" class="postbox" >
|
12 |
+
<div class="handlediv" data-target="#ux_album_preview" title="Click to toggle" data-toggle="collapse"><br></div>
|
13 |
+
<h3 class="hndle"><span><?php _e("Album Preview", gallery_bank); ?></span></h3>
|
14 |
+
<div class="inside">
|
15 |
+
<div id="ux_album_preview" class="gallery_bank_layout">
|
16 |
+
<a class="btn btn-inverse" href="admin.php?page=gallery_bank"><?php _e("Back to Albums", gallery_bank); ?></a>
|
17 |
+
<div class="separator-doubled"></div>
|
18 |
+
<div class="fluid-layout">
|
19 |
+
<div class="layout-span12">
|
20 |
+
<div class="widget-layout">
|
21 |
+
<div class="widget-layout-title">
|
22 |
+
<h4><?php echo stripcslashes(htmlspecialchars_decode($album)); ?></h4>
|
23 |
+
</div>
|
24 |
+
<div class="layout-control-group">
|
25 |
+
<ul class="breadcrumb">
|
26 |
+
<li>
|
27 |
+
<label class="layout-control-label">
|
28 |
+
<strong>
|
29 |
+
<?php _e("Images in Row", gallery_bank); ?> :
|
30 |
+
</strong>
|
31 |
+
</label>
|
32 |
+
<select id="ux_ddl_ImagesRow" class="layout-span3" style="margin-left: 16px;"
|
33 |
+
onchange="select_imges_in_row();">
|
34 |
+
<option id="" value=""><?php _e("Please Choose", gallery_bank); ?></option>
|
35 |
+
<?php
|
36 |
+
for ($i = 1; $i <= 10; $i++):
|
37 |
+
?>
|
38 |
+
<option <?php if ($i == $img_in_row) echo "selected=\"selected\"" ?>
|
39 |
+
value="<?php echo $i ?>"><?php echo $i; ?></option>
|
40 |
+
<?php
|
41 |
+
endfor;
|
42 |
+
?>
|
43 |
+
</select>
|
44 |
+
</li>
|
45 |
+
</ul>
|
46 |
+
</div>
|
47 |
+
<div class="widget-layout-body">
|
48 |
+
<div id="gallery_bank_container" class="gallery_images">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
49 |
<?php
|
50 |
+
for ($flag = 0;$flag < count($pics);$flag++)
|
51 |
+
{
|
52 |
+
$image_title = $image_desc_setting == 1 && $pics[$flag]->title != "" ? "<h5>" . esc_attr(html_entity_decode(stripcslashes(htmlspecialchars($pics[$flag]->title)))). "</h5>" : "";
|
53 |
+
$image_description = $image_desc_setting == 1 && $pics[$flag]->description != "" ? "<p>" . esc_attr(html_entity_decode(stripcslashes(htmlspecialchars($pics[$flag]->description)))) ."</p>" : "";
|
54 |
+
if ($pics[$flag]->url == "" || $pics[$flag]->url == "undefined" || $pics[$flag]->url == "http://")
|
55 |
+
{
|
56 |
+
if ($pics[$flag]->video == 1)
|
57 |
+
{
|
58 |
+
?>
|
59 |
+
<a rel="prettyPhoto[gallery]" href="<?php echo stripcslashes($pics[$flag]->pic_name); ?>"
|
60 |
+
data-title="<?php echo $image_title . $image_description; ?>" id="ux_img_div">
|
61 |
+
<?php
|
62 |
+
}
|
63 |
+
else
|
64 |
+
{
|
65 |
+
?>
|
66 |
+
<a rel="prettyPhoto[gallery]"
|
67 |
+
href="<?php echo stripcslashes(GALLERY_BK_THUMB_URL . $pics[$flag]->thumbnail_url); ?>"
|
68 |
+
data-title="<?php echo $image_title . $image_description; ?>" id="ux_img_div">
|
69 |
+
<?php
|
70 |
+
}
|
71 |
+
}
|
72 |
+
else
|
73 |
+
{
|
74 |
+
?>
|
75 |
+
<a href="<?php echo $pics[$flag]->url; ?>" id="ux_img_div" target="_blank"
|
76 |
+
data-title="<?php echo $image_title; ?>">
|
77 |
+
<?php
|
78 |
+
}
|
79 |
?>
|
80 |
+
<div class="imgLiquidFill dynamic_css">
|
81 |
+
<?php
|
82 |
+
if ($pics[$flag]->video == 1) {
|
83 |
+
?>
|
84 |
+
<img imageid="<?php echo $pics[$flag]->pic_id; ?>" id="ux_gb_img" type="video"
|
85 |
+
src="<?php echo stripcslashes($video_thumb_url); ?>"/>
|
86 |
+
<?php
|
87 |
+
} else {
|
88 |
+
?>
|
89 |
+
<img imageid="<?php echo $pics[$flag]->pic_id; ?>"
|
90 |
+
id="ux_gb_img" type="image" src="<?php echo stripcslashes(GALLERY_BK_THUMB_SMALL_URL . $pics[$flag]->thumbnail_url); ?>"/>
|
91 |
+
<?php
|
92 |
+
}
|
93 |
+
?>
|
94 |
+
</div>
|
95 |
+
</a>
|
96 |
+
<?php
|
97 |
+
}
|
98 |
+
?>
|
99 |
</div>
|
100 |
+
</div>
|
101 |
+
</div>
|
|
|
|
|
102 |
</div>
|
103 |
</div>
|
104 |
</div>
|
109 |
</div>
|
110 |
</div>
|
111 |
</form>
|
|
|
112 |
<?php
|
113 |
include GALLERY_BK_PLUGIN_DIR . "/views/includes_common_after.php";
|
114 |
?>
|
views/album-sorting.php
CHANGED
@@ -124,126 +124,119 @@ if (count($album_css) != 0)
|
|
124 |
<?php
|
125 |
}
|
126 |
?>
|
127 |
-
<form id="reodering_albums" class="layout-form"
|
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 |
-
|
238 |
-
|
239 |
-
</div>
|
240 |
-
</div>
|
241 |
-
</div>
|
242 |
-
</div>
|
243 |
-
</div>
|
244 |
-
</div>
|
245 |
</form>
|
246 |
-
|
247 |
<script type="text/javascript">
|
248 |
jQuery(".imgLiquidFill").imgLiquid({fill: true});
|
249 |
jQuery(document).ready(function () {
|
124 |
<?php
|
125 |
}
|
126 |
?>
|
127 |
+
<form id="reodering_albums" class="layout-form">
|
128 |
+
<div id="poststuff" style="width: 99% !important;">
|
129 |
+
<div id="post-body" class="metabox-holder">
|
130 |
+
<div id="postbox-container-2" class="postbox-container">
|
131 |
+
<div id="advanced" class="meta-box-sortables">
|
132 |
+
<div id="gallery_bank_get_started" class="postbox" >
|
133 |
+
<div class="handlediv" data-target="#ux_reorder_album" title="Click to toggle" data-toggle="collapse"><br></div>
|
134 |
+
<h3 class="hndle"><span><?php _e("Re-Order Albums", gallery_bank); ?></span></h3>
|
135 |
+
<div class="inside">
|
136 |
+
<div id="ux_reorder_album" class="gallery_bank_layout">
|
137 |
+
<a class="btn btn-inverse"
|
138 |
+
href="admin.php?page=gallery_bank"><?php _e("Back to Albums", gallery_bank); ?></a>
|
139 |
+
<a href="#" onclick="show_premium_message();" class="btn btn-info"
|
140 |
+
style="float:right"><?php _e("Update Order", gallery_bank); ?></a>
|
141 |
+
<div id="sort_order_message" class="message green" style="display: none;">
|
142 |
+
<span>
|
143 |
+
<strong><?php _e("Sorting Order has been updated.", gallery_bank); ?></strong>
|
144 |
+
</span>
|
145 |
+
</div>
|
146 |
+
<div class="separator-doubled"></div>
|
147 |
+
<div class="fluid-layout">
|
148 |
+
<div class="layout-span12">
|
149 |
+
<div class="widget-layout">
|
150 |
+
<div class="widget-layout-body">
|
151 |
+
<div class="layout-control-group">
|
152 |
+
<ul class="breadcrumb">
|
153 |
+
<li>
|
154 |
+
<label class="layout-control-label"><strong>Presort :</strong></label>
|
155 |
+
<div class="layout-controls" style="margin-top: 10px;">
|
156 |
+
<a id="unsort" href="admin.php?page=gallery_album_sorting&row=<?php echo $album_in_row; ?>&order_id=unsort">Unsorted</a>
|
157 |
+
|
|
158 |
+
<a id="albumId" href="admin.php?page=gallery_album_sorting&row=<?php echo $album_in_row; ?>&order_id=albumId">Album ID</a>
|
159 |
+
|
|
160 |
+
<a id="name" href="admin.php?page=gallery_album_sorting&row=<?php echo $album_in_row; ?>&order_id=name">File Name</a>
|
161 |
+
|
|
162 |
+
<a id="date" href="admin.php?page=gallery_album_sorting&row=<?php echo $album_in_row; ?>&order_id=date">Date</a>
|
163 |
+
|
|
164 |
+
<a id="asc" href="admin.php?page=gallery_album_sorting&row=<?php echo $album_in_row; ?>&order_id=asc">Ascending</a>
|
165 |
+
|
|
166 |
+
<a id="desc" href="admin.php?page=gallery_album_sorting&row=<?php echo $album_in_row; ?>&order_id=desc">Descending</a>
|
167 |
+
</div>
|
168 |
+
<label class="layout-control-label" style="margin-top: 10px;">
|
169 |
+
<strong>
|
170 |
+
<?php _e("Albums in Row", gallery_bank); ?> :
|
171 |
+
</strong>
|
172 |
+
</label>
|
173 |
+
<select id="ux_ddl_albumRow" class="layout-span3"
|
174 |
+
style="margin-left: 16px; margin-top: 10px;" onchange="select_albums_in_row();">
|
175 |
+
<option id="" value=""><?php _e("Please Choose", gallery_bank); ?></option>
|
176 |
+
<?php
|
177 |
+
for ($i = 1; $i <= 10; $i++):
|
178 |
+
?>
|
179 |
+
<option <?php if ($i == $album_in_row) echo "selected=\"selected\"" ?>
|
180 |
+
value="<?php echo $i ?>"><?php echo $i; ?></option>
|
181 |
+
<?php
|
182 |
+
endfor;
|
183 |
+
?>
|
184 |
+
</select>
|
185 |
+
</li>
|
186 |
+
</ul>
|
187 |
+
</div>
|
188 |
+
<div id="sort_album" class="sort">
|
189 |
+
<?php
|
190 |
+
for ($flag = 0; $flag < count($album); $flag++) {
|
191 |
+
|
192 |
+
$albumCover = $wpdb->get_row
|
193 |
+
(
|
194 |
+
$wpdb->prepare
|
195 |
+
(
|
196 |
+
"SELECT album_cover,thumbnail_url,video FROM " . gallery_bank_pics() . " WHERE album_cover=1 and album_id = %d",
|
197 |
+
$album[$flag]->album_id
|
198 |
+
)
|
199 |
+
);
|
200 |
+
?>
|
201 |
+
<div id="sortOrder_<?php echo $album[$flag]->album_id; ?>"
|
202 |
+
class="imgLiquidFill dynamic_cover_css">
|
203 |
+
<?php
|
204 |
+
if (count($albumCover) != 0) {
|
205 |
+
if ($albumCover->album_cover == 0) {
|
206 |
+
?>
|
207 |
+
<img id="albumOrder_<?php echo $album[$flag]->album_id; ?>"
|
208 |
+
src="<?php echo stripcslashes(GALLERY_BK_PLUGIN_URL . "/assets/images/album-cover.png"); ?>"/>
|
209 |
+
<?php
|
210 |
+
} else {
|
211 |
+
?>
|
212 |
+
<img id="albumOrder_<?php echo $album[$flag]->album_id; ?>"
|
213 |
+
src="<?php echo stripcslashes(GALLERY_BK_ALBUM_THUMB_URL . $albumCover->thumbnail_url); ?>"/>
|
214 |
+
<?php
|
215 |
+
}
|
216 |
+
} else {
|
217 |
+
?>
|
218 |
+
<img id="sortOrder_<?php echo $album[$flag]->album_id; ?>"
|
219 |
+
src="<?php echo stripcslashes(GALLERY_BK_PLUGIN_URL . "/assets/images/album-cover.png"); ?>"/>
|
220 |
+
<?php
|
221 |
+
}
|
222 |
+
?>
|
223 |
+
</div>
|
224 |
+
<?php
|
225 |
+
}
|
226 |
+
?>
|
227 |
+
</div>
|
228 |
+
</div>
|
229 |
+
</div>
|
230 |
+
</div>
|
231 |
+
</div>
|
232 |
+
</div>
|
233 |
+
</div>
|
234 |
+
</div>
|
235 |
+
</div>
|
236 |
+
</div>
|
237 |
+
</div>
|
238 |
+
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
239 |
</form>
|
|
|
240 |
<script type="text/javascript">
|
241 |
jQuery(".imgLiquidFill").imgLiquid({fill: true});
|
242 |
jQuery(document).ready(function () {
|
views/dashboard.php
CHANGED
@@ -75,6 +75,7 @@
|
|
75 |
|
76 |
?>
|
77 |
<!--suppress ALL -->
|
|
|
78 |
<style type="text/css">
|
79 |
.dynamic_cover_css{
|
80 |
border:<?php echo $cover_thumbnail_border_size;?>px solid <?php echo $cover_thumbnail_border_color;?> ;
|
@@ -124,148 +125,236 @@
|
|
124 |
display: none !important;
|
125 |
}
|
126 |
</style>
|
127 |
-
<div
|
128 |
-
<div class="
|
129 |
-
<div class="
|
130 |
-
<div class="
|
131 |
-
<
|
132 |
-
|
133 |
-
|
134 |
-
|
135 |
-
|
136 |
-
|
137 |
-
|
138 |
-
|
139 |
-
|
140 |
-
|
141 |
-
|
142 |
-
|
143 |
-
|
144 |
-
}
|
145 |
-
?>
|
146 |
-
<a class="btn btn-danger" href="#" onclick="delete_all_albums();"><?php _e("Delete All Albums", gallery_bank);?></a>
|
147 |
-
<a class="btn btn-danger" href="#" onclick="purge_all_images();"><?php _e("Purge Images & Albums", gallery_bank);?></a>
|
148 |
-
<a class="btn btn-danger" href="#" onclick="restore_factory_settings();"><?php _e("Restore Factory Settings", gallery_bank);?></a>
|
149 |
-
<div class="separator-doubled"></div>
|
150 |
-
<a rel="prettyPhoto[gallery]" href="<?php echo GALLERY_BK_PLUGIN_URL . "/assets/images/how-to-setup-short-code.png";?>">How to setup Short-Codes for Gallery Bank into your WordPress Page/Post?</a>
|
151 |
-
<div class="fluid-layout">
|
152 |
-
<div class="layout-span12">
|
153 |
-
<div class="widget-layout">
|
154 |
-
<div class="widget-layout-title">
|
155 |
-
<h4><?php _e( "Existing Albums Overview", gallery_bank ); ?></h4>
|
156 |
</div>
|
157 |
-
<div class="
|
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 |
-
|
238 |
-
|
239 |
-
|
240 |
-
|
241 |
-
|
242 |
-
|
243 |
-
|
244 |
-
|
245 |
-
|
246 |
-
|
247 |
-
|
248 |
-
|
249 |
-
|
250 |
-
|
251 |
-
|
252 |
-
|
253 |
-
|
254 |
-
|
255 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
256 |
</div>
|
257 |
</div>
|
258 |
</div>
|
259 |
</div>
|
260 |
</div>
|
261 |
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
262 |
</div>
|
263 |
</div>
|
264 |
-
|
265 |
<script type="text/javascript">
|
266 |
jQuery(".hovertip").tooltip();
|
267 |
jQuery(document).ready(function()
|
268 |
{
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
269 |
<?php
|
270 |
if($popup == "")
|
271 |
{
|
@@ -294,6 +383,7 @@ jQuery(document).ready(function()
|
|
294 |
<?php
|
295 |
}
|
296 |
?>
|
|
|
297 |
jQuery(".imgLiquidFill").imgLiquid({fill:true});
|
298 |
var oTable = jQuery("#data-table-album").dataTable
|
299 |
({
|
75 |
|
76 |
?>
|
77 |
<!--suppress ALL -->
|
78 |
+
|
79 |
<style type="text/css">
|
80 |
.dynamic_cover_css{
|
81 |
border:<?php echo $cover_thumbnail_border_size;?>px solid <?php echo $cover_thumbnail_border_color;?> ;
|
125 |
display: none !important;
|
126 |
}
|
127 |
</style>
|
128 |
+
<div id="poststuff" style="width: 99% !important;">
|
129 |
+
<div id="post-body" class="metabox-holder columns-2">
|
130 |
+
<div id="postbox-container-2" class="postbox-container">
|
131 |
+
<div id="gallery_bank_dashboard" class="meta-box-sortables">
|
132 |
+
<div id="gallery_bank_get_started" class="postbox" >
|
133 |
+
<div class="handlediv" data-target="#uxgetting_started" title="Click to toggle" data-toggle="collapse"><br></div>
|
134 |
+
<h3 class="hndle"><span><?php _e("Getting Started", gallery_bank); ?></span></h3>
|
135 |
+
<div class="inside">
|
136 |
+
<div id="uxgetting_started" class="gallery_bank_getting_started">
|
137 |
+
<div class="column">
|
138 |
+
<h2><?php _e("Watch the Walk-Through Video", gallery_bank); ?></h2>
|
139 |
+
<a class="gallery-bank-video-link" href="#" data-video-id="gallery_bank_video"><img src="http://i.vimeocdn.com/video/472092768_200x150.jpg" style="border:2px solid #ebebeb;"/></a>
|
140 |
+
<p class="gallery-bank-video-description">
|
141 |
+
In this short video, we walk through, how to add images to your gallery using Gallery Bank Standard Edition.</p>
|
142 |
+
<p class="gallery_bank_video">
|
143 |
+
<iframe src="//player.vimeo.com/video/92378296?title=0&byline=0&portrait=0" width="853" height="480" frameborder="0" ></iframe>
|
144 |
+
</p>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
145 |
</div>
|
146 |
+
<div class="column two">
|
147 |
+
<h2 style="line-height: 29px;"><?php _e("Gallery Bank, a Superlative High quality WordPress Plugin!", gallery_bank); ?></h2>
|
148 |
+
<p>
|
149 |
+
Gallery Bank is the only available WordPress Plugin with extra-ordinary features.It creates stunning Photo Galleries on any WordPress site.
|
150 |
+
</p>
|
151 |
+
<p>
|
152 |
+
Upgrade to Pro Version to take your Gallery Bank to the next level.</p>
|
153 |
+
<p>
|
154 |
+
<a class="button-primary" href="http://tech-banker.com/gallery-bank/" target="_blank"><?php _e("Get Gallery Bank Pro Features", gallery_bank); ?></a>
|
155 |
+
</p>
|
156 |
+
</div>
|
157 |
+
</div>
|
158 |
+
</div>
|
159 |
+
</div>
|
160 |
+
</div>
|
161 |
+
<div id="advanced" class="meta-box-sortables">
|
162 |
+
<div id="gallery_bank_get_started" class="postbox" >
|
163 |
+
<div class="handlediv" data-target="#ux_dashboard" title="Click to toggle" data-toggle="collapse"><br></div>
|
164 |
+
<h3 class="hndle"><span><?php _e("Dashboard", gallery_bank); ?></span></h3>
|
165 |
+
<div class="inside">
|
166 |
+
<div id="ux_dashboard" class="gallery_bank_layout">
|
167 |
+
<?php
|
168 |
+
$album_count = $wpdb->get_var
|
169 |
+
(
|
170 |
+
"SELECT count(album_id) FROM ".gallery_bank_albums()
|
171 |
+
);
|
172 |
+
if($album_count < 2)
|
173 |
+
{
|
174 |
+
?>
|
175 |
+
<a class="btn btn-info" href="admin.php?page=add_album"><?php _e("Add New Album", gallery_bank);?></a>
|
176 |
+
<?php
|
177 |
+
}
|
178 |
+
?>
|
179 |
+
<a class="btn btn-danger" href="#" onclick="delete_all_albums();"><?php _e("Delete All Albums", gallery_bank);?></a>
|
180 |
+
<a class="btn btn-danger" href="#" onclick="purge_all_images();"><?php _e("Purge Images & Albums", gallery_bank);?></a>
|
181 |
+
<a class="btn btn-danger" href="#" onclick="restore_factory_settings();"><?php _e("Restore Factory Settings", gallery_bank);?></a>
|
182 |
+
<div class="separator-doubled"></div>
|
183 |
+
<a rel="prettyPhoto[gallery]" href="<?php echo GALLERY_BK_PLUGIN_URL . "/assets/images/how-to-setup-short-code.png";?>">How to setup Short-Codes for Gallery Bank into your WordPress Page/Post?</a>
|
184 |
+
<div class="fluid-layout">
|
185 |
+
<div class="layout-span12">
|
186 |
+
<div class="widget-layout">
|
187 |
+
<div class="widget-layout-title">
|
188 |
+
<h4><?php _e( "Existing Albums Overview", gallery_bank ); ?></h4>
|
189 |
+
</div>
|
190 |
+
<div class="widget-layout-body">
|
191 |
+
<table class="table table-striped " id="data-table-album">
|
192 |
+
<thead>
|
193 |
+
<tr>
|
194 |
+
<th style="width:24%"><?php _e( "Thumbnail", gallery_bank ); ?></th>
|
195 |
+
<th style="width:13%"><?php _e( "Title", gallery_bank ); ?></th>
|
196 |
+
<th style="width:16%"><?php _e( "Total Images", gallery_bank ); ?></th>
|
197 |
+
<th style="width:15%"><?php _e( "Date", gallery_bank ); ?></th>
|
198 |
+
<th style="width:14%"><?php _e( "Short-Codes", gallery_bank ); ?></th>
|
199 |
+
<th style="width:17%"></th>
|
200 |
+
</tr>
|
201 |
+
</thead>
|
202 |
+
<tbody>
|
203 |
+
<?php
|
204 |
+
for($flag=0; $flag <count($album); $flag++)
|
205 |
+
{
|
206 |
+
$count_pic = $wpdb->get_var
|
207 |
+
(
|
208 |
+
$wpdb->prepare
|
209 |
+
(
|
210 |
+
"SELECT count(".gallery_bank_albums().".album_id) FROM ".gallery_bank_albums()." join ".gallery_bank_pics()." on ".gallery_bank_albums().".album_id = ".gallery_bank_pics().".album_id where ".gallery_bank_albums().".album_id = %d ",
|
211 |
+
$album[$flag]->album_id
|
212 |
+
)
|
213 |
+
);
|
214 |
+
$albumCover = $wpdb->get_row
|
215 |
+
(
|
216 |
+
$wpdb->prepare
|
217 |
+
(
|
218 |
+
"SELECT album_cover,thumbnail_url,video FROM ".gallery_bank_pics()." WHERE album_cover=1 and album_id = %d",
|
219 |
+
$album[$flag]->album_id
|
220 |
+
)
|
221 |
+
);
|
222 |
+
?>
|
223 |
+
<tr>
|
224 |
+
<td>
|
225 |
+
<a href="admin.php?page=edit_album&album_id=<?php echo $album[$flag]->album_id;?>" title="<?php echo stripcslashes(htmlspecialchars_decode($album[$flag] -> album_name));?>" >
|
226 |
+
<div class="imgLiquidFill dynamic_cover_css">
|
227 |
+
<?php
|
228 |
+
if(count($albumCover) != 0)
|
229 |
+
{
|
230 |
+
if($albumCover->album_cover == 0)
|
231 |
+
{
|
232 |
+
?>
|
233 |
+
<img src="<?php echo stripcslashes(GALLERY_BK_PLUGIN_URL . "/assets/images/album-cover.png"); ?>" />
|
234 |
+
<?php
|
235 |
+
}
|
236 |
+
else
|
237 |
+
{
|
238 |
+
?>
|
239 |
+
<img src="<?php echo stripcslashes(GALLERY_BK_ALBUM_THUMB_URL.$albumCover->thumbnail_url); ?>" />
|
240 |
+
<?php
|
241 |
+
}
|
242 |
+
}
|
243 |
+
else
|
244 |
+
{
|
245 |
+
?>
|
246 |
+
<img src="<?php echo stripcslashes(GALLERY_BK_PLUGIN_URL . "/assets/images/album-cover.png"); ?>" />
|
247 |
+
<?php
|
248 |
+
}
|
249 |
+
?>
|
250 |
+
</div>
|
251 |
+
</a>
|
252 |
+
</td>
|
253 |
+
<td><?php echo stripcslashes(htmlspecialchars_decode($album[$flag] -> album_name));?></td>
|
254 |
+
<td><?php echo $count_pic;?></td>
|
255 |
+
<td><?php echo date("d-M-Y", strtotime($album[$flag] -> album_date));?></td>
|
256 |
+
<td>
|
257 |
+
<a rel="prettyPhoto[gallery]" href="<?php echo GALLERY_BK_PLUGIN_URL . "/assets/images/how-to-setup-short-code.png";?>">Short Codes</a>
|
258 |
+
</td>
|
259 |
+
<td>
|
260 |
+
<ul class="layout-table-controls">
|
261 |
+
<li>
|
262 |
+
<a href="admin.php?page=edit_album&album_id=<?php echo $album[$flag]->album_id;?>" class="btn hovertip" data-original-title="<?php _e( "Edit Album", gallery_bank ); ?>">
|
263 |
+
<i class="icon-pencil" ></i>
|
264 |
+
</a>
|
265 |
+
</li>
|
266 |
+
<li>
|
267 |
+
<a href="admin.php?page=images_sorting&album_id=<?php echo $album[$flag]->album_id;?>&row=3" class="btn hovertip" data-original-title="<?php _e( "Re-Order Images", gallery_bank ); ?>">
|
268 |
+
<i class="icon-th"></i>
|
269 |
+
</a>
|
270 |
+
</li>
|
271 |
+
<li>
|
272 |
+
<a href="admin.php?page=album_preview&album_id=<?php echo $album[$flag]->album_id;?>" class="btn hovertip" data-original-title="<?php _e( "Preview Album", gallery_bank ); ?>">
|
273 |
+
<i class="icon-eye-open"></i>
|
274 |
+
</a>
|
275 |
+
</li>
|
276 |
+
<li>
|
277 |
+
<a class="btn hovertip " style="cursor: pointer;" data-original-title="<?php _e( "Delete Album", gallery_bank)?>" onclick="delete_album(<?php echo $album[$flag]->album_id;?>);" >
|
278 |
+
<i class="icon-trash"></i>
|
279 |
+
</a>
|
280 |
+
</li>
|
281 |
+
</ul>
|
282 |
+
</td>
|
283 |
+
</tr>
|
284 |
+
<?php
|
285 |
+
}
|
286 |
+
?>
|
287 |
+
</tbody>
|
288 |
+
</table>
|
289 |
+
</div>
|
290 |
+
</div>
|
291 |
+
</div>
|
292 |
</div>
|
293 |
</div>
|
294 |
</div>
|
295 |
</div>
|
296 |
</div>
|
297 |
</div>
|
298 |
+
<div id="postbox-container-1" class="postbox-container">
|
299 |
+
<div id="priority_side" class="meta-box-sortables">
|
300 |
+
<div id="gallery_bank_get_started" class="postbox" >
|
301 |
+
<div class="handlediv" data-target="#uxdownload" title="Click to toggle" data-toggle="collapse"><br></div>
|
302 |
+
<h3 class="hndle"><span><?php _e("Need Support Help?", gallery_bank); ?></span></h3>
|
303 |
+
<div class="inside">
|
304 |
+
<div id="uxdownload" class="gallery_bank_getting_started">
|
305 |
+
<p>
|
306 |
+
We’re interested in hearing from you.</p>
|
307 |
+
|
308 |
+
<p>We will help you through the process and try to provide the answers.</p>
|
309 |
+
|
310 |
+
<p>If you need to know more about our services or have something to share, please feel free to contact us.
|
311 |
+
</p>
|
312 |
+
<p>We commit to responses within 24 hours on weekdays – generally within hours during week day work hours.</p>
|
313 |
+
<p>
|
314 |
+
<a class="btn btn-danger" href="http://tech-banker.com/get-in-touch/" target="_blank" style="text-decoration: none;"><?php _e("Let’s get in touch!", gallery_bank); ?></a>
|
315 |
+
</p>
|
316 |
+
<img src="<?php echo GALLERY_BK_PLUGIN_URL . "/assets/images/img.png";?>" style="max-width:100%;cursor: pointer;" />
|
317 |
+
<p>
|
318 |
+
<a class="btn btn-danger" href="http://tech-banker.com/gallery-bank/" target="_blank" style="text-decoration: none;"><?php _e("Order Now!", gallery_bank); ?></a>
|
319 |
+
</p>
|
320 |
+
</div>
|
321 |
+
</div>
|
322 |
+
</div>
|
323 |
+
</div>
|
324 |
+
</div>
|
325 |
</div>
|
326 |
</div>
|
|
|
327 |
<script type="text/javascript">
|
328 |
jQuery(".hovertip").tooltip();
|
329 |
jQuery(document).ready(function()
|
330 |
{
|
331 |
+
jQuery( ".gallery-bank-video-link").click( function( event ) {
|
332 |
+
|
333 |
+
event.preventDefault();
|
334 |
+
|
335 |
+
var target = jQuery( this ).data( "video-id" );
|
336 |
+
|
337 |
+
jQuery( "." + target ).dialog(
|
338 |
+
{
|
339 |
+
dialogClass: "wp-dialog gallery-bank-video-popup",
|
340 |
+
modal: true,
|
341 |
+
closeOnEscape: true,
|
342 |
+
width: "auto",
|
343 |
+
resizable: false,
|
344 |
+
draggable: false,
|
345 |
+
create: function( event, ui ) {
|
346 |
+
jQuery(this).css("maxWidth", "853px");
|
347 |
+
},
|
348 |
+
open: function(event, ui) {
|
349 |
+
jQuery(".ui-widget-overlay").bind("click", function () {
|
350 |
+
jQuery(this).siblings(".ui-dialog").find(".ui-dialog-content").dialog("close");
|
351 |
+
});
|
352 |
+
}
|
353 |
+
}
|
354 |
+
);
|
355 |
+
jQuery(".ui-dialog :button").blur();
|
356 |
+
|
357 |
+
});
|
358 |
<?php
|
359 |
if($popup == "")
|
360 |
{
|
383 |
<?php
|
384 |
}
|
385 |
?>
|
386 |
+
|
387 |
jQuery(".imgLiquidFill").imgLiquid({fill:true});
|
388 |
var oTable = jQuery("#data-table-album").dataTable
|
389 |
({
|
views/edit-album.php
CHANGED
@@ -72,279 +72,272 @@ if (count($album_css) != 0)
|
|
72 |
-khtml-opacity: <?php echo $thumbnails_opacity; ?>;
|
73 |
}
|
74 |
</style>
|
75 |
-
|
76 |
-
|
77 |
-
<div class="
|
78 |
-
<div class="
|
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 |
-
<?php _e("Tags (comma separated list)", gallery_bank); ?>
|
193 |
-
<i class="widget_premium_feature"><?php _e(" (Available in Premium Versions)", gallery_bank); ?></i>
|
194 |
-
</th>
|
195 |
-
<th style="width:25%">
|
196 |
-
<?php _e("Url to Redirect on click of an Image", gallery_bank); ?>
|
197 |
-
</th>
|
198 |
-
<th style="width:5%"></th>
|
199 |
-
</tr>
|
200 |
-
</thead>
|
201 |
-
<tbody>
|
202 |
-
<?php
|
203 |
-
for ($flag = 0; $flag < count($pics); $flag++) {
|
204 |
-
?>
|
205 |
-
<tr>
|
206 |
-
<?php
|
207 |
-
if ($pics[$flag]->video == 1) {
|
208 |
-
?>
|
209 |
-
<td>
|
210 |
-
<input type="checkbox" id="ux_grp_select_items" name="ux_grp_select_items"
|
211 |
-
value="<?php echo $pics[$flag]->pic_id; ?>" control="edit"/>
|
212 |
-
</td>
|
213 |
-
<td>
|
214 |
-
<a href="javascript:void(0);" title="<?php echo $pics[$flag]->pic_name; ?>">
|
215 |
-
<img imageid="<?php echo $pics[$flag]->pic_id; ?>" type="video"
|
216 |
-
imgpath="<?php echo $pics[$flag]->pic_name; ?>"
|
217 |
-
src="<?php echo stripcslashes($video_url); ?>" id="ux_gb_img"
|
218 |
-
name="ux_gb_img" width="<?php echo $thumbnails_width; ?>px;"
|
219 |
-
class="edit dynamic_css" picId="<?php echo $pics[$flag]->pic_id; ?>"/>
|
220 |
-
</a><br/>
|
221 |
-
<?php $dateFormat = date("F j, Y", strtotime($pics[$flag]->date)); ?>
|
222 |
-
<label><strong>Video</strong></label><br/><label><?php echo $dateFormat; ?></label>
|
223 |
-
</td>
|
224 |
-
<td>
|
225 |
-
<input placeholder="<?php _e("Enter your Title", gallery_bank) ?>"
|
226 |
-
class="layout-span12 " type="text"
|
227 |
-
name="ux_edit_video_title_<?php echo $pics[$flag]->pic_id; ?>"
|
228 |
-
id="ux_edit_video_title_<?php echo $pics[$flag]->pic_id; ?>"
|
229 |
-
value="<?php echo html_entity_decode(stripcslashes(htmlspecialchars($pics[$flag]->title))); ?>"/>
|
230 |
-
<textarea placeholder=" <?php _e("Enter your Description ", gallery_bank) ?>"
|
231 |
-
style="margin-top:20px" rows="5" class="layout-span12"
|
232 |
-
name="ux_txt_desc_<?php echo $pics[$flag]->pic_id; ?>"
|
233 |
-
id="ux_txt_desc_<?php echo $pics[$flag]->pic_id; ?>"><?php echo html_entity_decode(stripcslashes(htmlspecialchars($pics[$flag]->description))); ?></textarea>
|
234 |
-
</td>
|
235 |
-
<td>
|
236 |
-
<input placeholder="<?php _e("Enter your Tags", gallery_bank) ?>"
|
237 |
-
class="layout-span12" type="text" readonly="readonly"
|
238 |
-
name="ux_edit_txt_tags_<?php echo $pics[$flag]->pic_id; ?>"
|
239 |
-
id="ux_edit_txt_tags_<?php echo $pics[$flag]->pic_id; ?>" onkeypress="return preventDot(event);"
|
240 |
-
value="" />
|
241 |
-
</td>
|
242 |
-
<td>
|
243 |
-
</td>
|
244 |
-
<td>
|
245 |
-
<a class="btn hovertip " id="ux_btn_delete" style="cursor: pointer;"
|
246 |
-
data-original-title="<?php _e("Delete Video", gallery_bank) ?>"
|
247 |
-
onclick="deleteImage(this);" type="edit"
|
248 |
-
controlId="<?php echo $pics[$flag]->pic_id; ?>">
|
249 |
-
<i class="icon-trash"></i>
|
250 |
-
</a>
|
251 |
-
</td>
|
252 |
<?php
|
253 |
-
|
254 |
-
|
255 |
-
<
|
256 |
-
|
257 |
-
|
258 |
-
|
259 |
-
|
260 |
-
|
261 |
-
|
262 |
-
|
263 |
-
|
264 |
-
|
265 |
-
|
266 |
-
|
267 |
-
|
268 |
-
|
269 |
-
|
270 |
-
|
271 |
-
|
272 |
-
|
273 |
-
|
274 |
-
|
275 |
-
|
276 |
-
|
277 |
-
|
278 |
-
|
279 |
-
|
280 |
-
|
281 |
-
|
282 |
-
|
283 |
-
|
284 |
-
|
285 |
-
|
286 |
-
|
287 |
-
|
288 |
-
|
289 |
-
|
290 |
-
|
291 |
-
|
292 |
-
|
293 |
-
|
294 |
-
|
295 |
-
|
296 |
-
|
297 |
-
|
298 |
-
|
299 |
-
|
300 |
-
|
301 |
-
|
302 |
-
|
303 |
-
|
304 |
-
|
305 |
-
|
306 |
-
|
307 |
-
|
308 |
-
|
309 |
-
|
310 |
-
|
311 |
-
|
312 |
-
|
313 |
-
|
314 |
-
|
315 |
-
|
316 |
-
|
317 |
-
|
318 |
-
|
319 |
-
|
320 |
-
|
321 |
-
|
322 |
-
|
323 |
-
|
324 |
-
|
325 |
-
|
326 |
-
|
327 |
-
|
328 |
-
|
329 |
-
|
330 |
-
|
331 |
-
|
332 |
-
|
333 |
-
|
334 |
-
|
335 |
-
|
336 |
-
|
337 |
-
|
338 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
339 |
</div>
|
340 |
-
|
341 |
-
|
342 |
-
<a class="btn btn-inverse" href="admin.php?page=gallery_bank" style="margin-top: 20px;"><?php _e("Back to Albums", gallery_bank); ?></a>
|
343 |
-
</div>
|
344 |
-
</div>
|
345 |
</div>
|
346 |
</div>
|
347 |
-
|
|
|
348 |
<script type="text/javascript">
|
349 |
|
350 |
jQuery(".hovertip").tooltip();
|
72 |
-khtml-opacity: <?php echo $thumbnails_opacity; ?>;
|
73 |
}
|
74 |
</style>
|
75 |
+
<form id="edit_album" class="layout-form">
|
76 |
+
<div id="poststuff" style="width: 99% !important;">
|
77 |
+
<div id="post-body" class="metabox-holder">
|
78 |
+
<div id="postbox-container-2" class="postbox-container">
|
79 |
+
<div id="advanced" class="meta-box-sortables">
|
80 |
+
<div id="gallery_bank_get_started" class="postbox" >
|
81 |
+
<div class="handlediv" data-target="#ux_edit_album" title="Click to toggle" data-toggle="collapse"><br></div>
|
82 |
+
<h3 class="hndle"><span><?php _e("Edit Album", gallery_bank); ?></span></h3>
|
83 |
+
<div class="inside">
|
84 |
+
<div id="ux_edit_album" class="gallery_bank_layout">
|
85 |
+
<a class="btn btn-inverse" href="admin.php?page=gallery_bank"><?php _e("Back to Albums", gallery_bank); ?></a>
|
86 |
+
<button type="submit" class="btn btn-info" style="float:right"><?php _e("Update Album", gallery_bank); ?></button>
|
87 |
+
<div class="separator-doubled"></div>
|
88 |
+
<div id="update_album_success_message" class="message green" style="display: none;">
|
89 |
+
<span>
|
90 |
+
<strong><?php _e("Album Updated. Kindly wait for the redirect to happen.", gallery_bank); ?></strong>
|
91 |
+
</span>
|
92 |
+
</div>
|
93 |
+
<div class="fluid-layout">
|
94 |
+
<div class="layout-span6">
|
95 |
+
<div class="widget-layout">
|
96 |
+
<div class="widget-layout-title">
|
97 |
+
<h4><?php _e("Album Details", gallery_bank); ?></h4>
|
98 |
+
</div>
|
99 |
+
<div class="widget-layout-body">
|
100 |
+
<div class="layout-control-group">
|
101 |
+
<label class="layout-control-label"><?php _e("Album Title", gallery_bank); ?> :</label>
|
102 |
+
<div class="layout-controls">
|
103 |
+
<input type="text" name="ux_edit_title" class="layout-span12"
|
104 |
+
value="<?php echo stripcslashes(htmlspecialchars_decode($album->album_name)); ?>"
|
105 |
+
id="ux_edit_title"
|
106 |
+
placeholder="<?php _e("Enter your Album Title", gallery_bank); ?>"/>
|
107 |
+
</div>
|
108 |
+
</div>
|
109 |
+
<input type="hidden" id="ux_hidden_album_id" value="<?php echo $album_id; ?>"/>
|
110 |
+
</div>
|
111 |
+
<div class="widget-layout-body">
|
112 |
+
<div class="layout-control-group">
|
113 |
+
<label class="layout-control-label"><?php _e("Description", gallery_bank); ?> :</label>
|
114 |
+
</div>
|
115 |
+
<div class="layout-control-group">
|
116 |
+
<?php
|
117 |
+
$ux_content = stripslashes(htmlspecialchars_decode($album->description));
|
118 |
+
wp_editor($ux_content, $id = "ux_edit_description", $media_buttons = true, $tab_index = 1);
|
119 |
+
?>
|
120 |
+
</div>
|
121 |
+
</div>
|
122 |
+
</div>
|
123 |
+
</div>
|
124 |
+
<div class="layout-span6">
|
125 |
+
<div class="widget-layout">
|
126 |
+
<div class="widget-layout-title">
|
127 |
+
<h4><?php _e("Upload Images", gallery_bank); ?></h4>
|
128 |
+
</div>
|
129 |
+
<div class="widget-layout-body" id="edit_image_uploader">
|
130 |
+
<p><?php _e("Your browser doesn\"t have Flash, Silverlight or HTML5 support.", gallery_bank) ?></p>
|
131 |
+
</div>
|
132 |
+
</div>
|
133 |
+
</div>
|
134 |
+
<div class="layout-span6">
|
135 |
+
<div class="widget-layout">
|
136 |
+
<div class="widget-layout-title">
|
137 |
+
<h4><?php _e("Upload Videos", gallery_bank); ?>
|
138 |
+
<i class="widget_premium_feature"><?php _e(" (Available in Premium Versions)", gallery_bank); ?></i>
|
139 |
+
</h4>
|
140 |
+
</div>
|
141 |
+
<div class="widget-layout-body" id="edit_video_uploader">
|
142 |
+
<div class="layout-control-group">
|
143 |
+
<label class="layout-control-label"><?php _e("Video Url", gallery_bank); ?> :</label>
|
144 |
+
<div class="layout-controls">
|
145 |
+
<input type="text" name="ux_edit_txt_video_url" class="layout-span12" value=""
|
146 |
+
id="ux_edit_txt_video_url"
|
147 |
+
placeholder="<?php _e("Enter your Video Url", gallery_bank); ?>"/>
|
148 |
+
</div>
|
149 |
+
</div>
|
150 |
+
<div class="layout-control-group">
|
151 |
+
<div class="layout-controls">
|
152 |
+
<button type="button" onclick="insertVideoToDataTable();" style="float:right"
|
153 |
+
class="btn btn-info"><?php _e("Upload Video", gallery_bank); ?></button>
|
154 |
+
</div>
|
155 |
+
</div>
|
156 |
+
</div>
|
157 |
+
</div>
|
158 |
+
</div>
|
159 |
+
</div>
|
160 |
+
<div class="fluid-layout">
|
161 |
+
<div class="layout-span12">
|
162 |
+
<div class="widget-layout">
|
163 |
+
<div class="widget-layout-title">
|
164 |
+
<h4><?php _e("Your Gallery Bank Album", gallery_bank); ?></h4>
|
165 |
+
</div>
|
166 |
+
<div class="widget-layout-body">
|
167 |
+
<table class="table table-striped " id="data-table-edit-album">
|
168 |
+
<thead>
|
169 |
+
<tr>
|
170 |
+
<th style="width:11%">
|
171 |
+
<input type="checkbox" id="grp_select_items" name="grp_select_items" style="vertical-align:middle;"/>
|
172 |
+
<button type="button" onclick="deleteSelectedImages();" style="vertical-align:middle;"
|
173 |
+
class="btn btn-inverse"><?php _e("Delete", gallery_bank); ?></button>
|
174 |
+
</th>
|
175 |
+
<th style="width:15%">
|
176 |
+
<?php _e("Thumbnail", gallery_bank); ?>
|
177 |
+
</th>
|
178 |
+
<th style="width:25%">
|
179 |
+
<?php _e("Title & Description", gallery_bank); ?>
|
180 |
+
</th>
|
181 |
+
<th style="width:20%">
|
182 |
+
<?php _e("Tags (comma separated list)", gallery_bank); ?>
|
183 |
+
<i class="widget_premium_feature"><?php _e(" (Available in Premium Versions)", gallery_bank); ?></i>
|
184 |
+
</th>
|
185 |
+
<th style="width:25%">
|
186 |
+
<?php _e("Url to Redirect on click of an Image", gallery_bank); ?>
|
187 |
+
</th>
|
188 |
+
<th style="width:5%"></th>
|
189 |
+
</tr>
|
190 |
+
</thead>
|
191 |
+
<tbody>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
192 |
<?php
|
193 |
+
for ($flag = 0; $flag < count($pics); $flag++) {
|
194 |
+
?>
|
195 |
+
<tr>
|
196 |
+
<?php
|
197 |
+
if ($pics[$flag]->video == 1) {
|
198 |
+
?>
|
199 |
+
<td>
|
200 |
+
<input type="checkbox" id="ux_grp_select_items" name="ux_grp_select_items"
|
201 |
+
value="<?php echo $pics[$flag]->pic_id; ?>" control="edit"/>
|
202 |
+
</td>
|
203 |
+
<td>
|
204 |
+
<a href="javascript:void(0);" title="<?php echo $pics[$flag]->pic_name; ?>">
|
205 |
+
<img imageid="<?php echo $pics[$flag]->pic_id; ?>" type="video"
|
206 |
+
imgpath="<?php echo $pics[$flag]->pic_name; ?>"
|
207 |
+
src="<?php echo stripcslashes($video_url); ?>" id="ux_gb_img"
|
208 |
+
name="ux_gb_img" width="<?php echo $thumbnails_width; ?>px;"
|
209 |
+
class="edit dynamic_css" picId="<?php echo $pics[$flag]->pic_id; ?>"/>
|
210 |
+
</a><br/>
|
211 |
+
<?php $dateFormat = date("F j, Y", strtotime($pics[$flag]->date)); ?>
|
212 |
+
<label><strong>Video</strong></label><br/><label><?php echo $dateFormat; ?></label>
|
213 |
+
</td>
|
214 |
+
<td>
|
215 |
+
<input placeholder="<?php _e("Enter your Title", gallery_bank) ?>"
|
216 |
+
class="layout-span12 " type="text"
|
217 |
+
name="ux_edit_video_title_<?php echo $pics[$flag]->pic_id; ?>"
|
218 |
+
id="ux_edit_video_title_<?php echo $pics[$flag]->pic_id; ?>"
|
219 |
+
value="<?php echo html_entity_decode(stripcslashes(htmlspecialchars($pics[$flag]->title))); ?>"/>
|
220 |
+
<textarea placeholder=" <?php _e("Enter your Description ", gallery_bank) ?>"
|
221 |
+
style="margin-top:20px" rows="5" class="layout-span12"
|
222 |
+
name="ux_txt_desc_<?php echo $pics[$flag]->pic_id; ?>"
|
223 |
+
id="ux_txt_desc_<?php echo $pics[$flag]->pic_id; ?>"><?php echo html_entity_decode(stripcslashes(htmlspecialchars($pics[$flag]->description))); ?></textarea>
|
224 |
+
</td>
|
225 |
+
<td>
|
226 |
+
<input placeholder="<?php _e("Enter your Tags", gallery_bank) ?>"
|
227 |
+
class="layout-span12" type="text" readonly="readonly"
|
228 |
+
name="ux_edit_txt_tags_<?php echo $pics[$flag]->pic_id; ?>"
|
229 |
+
id="ux_edit_txt_tags_<?php echo $pics[$flag]->pic_id; ?>" onkeypress="return preventDot(event);"
|
230 |
+
value="" />
|
231 |
+
</td>
|
232 |
+
<td>
|
233 |
+
</td>
|
234 |
+
<td>
|
235 |
+
<a class="btn hovertip " id="ux_btn_delete" style="cursor: pointer;"
|
236 |
+
data-original-title="<?php _e("Delete Video", gallery_bank) ?>"
|
237 |
+
onclick="deleteImage(this);" type="edit"
|
238 |
+
controlId="<?php echo $pics[$flag]->pic_id; ?>">
|
239 |
+
<i class="icon-trash"></i>
|
240 |
+
</a>
|
241 |
+
</td>
|
242 |
+
<?php
|
243 |
+
} else {
|
244 |
+
?>
|
245 |
+
<td>
|
246 |
+
<input type="checkbox" id="ux_grp_select_items" name="ux_grp_select_items"
|
247 |
+
value="<?php echo $pics[$flag]->pic_id; ?>" control="edit"/>
|
248 |
+
</td>
|
249 |
+
<td>
|
250 |
+
<a href="javascript:void(0);" title="<?php echo $pics[$flag]->pic_name; ?>">
|
251 |
+
<img type="image" imgpath="<?php echo $pics[$flag]->thumbnail_url; ?>"
|
252 |
+
src="<?php echo stripcslashes(GALLERY_BK_THUMB_SMALL_URL . $pics[$flag]->thumbnail_url); ?>"
|
253 |
+
id="ux_gb_img" imageid="<?php echo $pics[$flag]->pic_id; ?>"
|
254 |
+
name="ux_gb_img" class="edit dynamic_css"
|
255 |
+
width="<?php echo $thumbnails_width ?>"/>
|
256 |
+
</a>
|
257 |
+
<br/>
|
258 |
+
<?php $dateFormat = date("F j, Y", strtotime($pics[$flag]->date)); ?>
|
259 |
+
<label><strong><?php echo $pics[$flag]->pic_name; ?></strong></label><br/><label><?php echo $dateFormat; ?></label><br/>
|
260 |
+
<?php
|
261 |
+
if ($pics[$flag]->album_cover == 1) {
|
262 |
+
?>
|
263 |
+
<input type="radio" style="cursor: pointer;" checked="checked"
|
264 |
+
id="ux_edit_rdl_cover_<?php echo $pics[$flag]->pic_id; ?>"
|
265 |
+
name="ux_album_cover"/>
|
266 |
+
<label><?php _e(" Set as Album Cover", gallery_bank) ?></label>
|
267 |
+
<?php
|
268 |
+
} else {
|
269 |
+
?>
|
270 |
+
<input type="radio" style="cursor: pointer;"
|
271 |
+
id="ux_edit_rdl_cover_<?php echo $pics[$flag]->pic_id; ?>"
|
272 |
+
name="ux_album_cover"/>
|
273 |
+
<label><?php _e(" Set as Album Cover", gallery_bank) ?></label>
|
274 |
+
<?php
|
275 |
+
}
|
276 |
+
?>
|
277 |
+
</td>
|
278 |
+
<td>
|
279 |
+
<input placeholder="<?php _e("Enter your Title", gallery_bank) ?>"
|
280 |
+
class="layout-span12 edit" type="text"
|
281 |
+
name="ux_edit_img_title_<?php echo $pics[$flag]->pic_id; ?>"
|
282 |
+
id="ux_edit_img_title_<?php echo $pics[$flag]->pic_id; ?>"
|
283 |
+
value="<?php echo html_entity_decode(stripcslashes(htmlspecialchars($pics[$flag]->title))); ?>"/>
|
284 |
+
<textarea placeholder="<?php _e("Enter your Description ", gallery_bank) ?>"
|
285 |
+
style="margin-top:20px" rows="5" class="layout-span12 edit"
|
286 |
+
name="ux_edit_txt_desc_<?php echo $pics[$flag]->pic_id; ?>"
|
287 |
+
id="ux_edit_txt_desc_<?php echo $pics[$flag]->pic_id; ?>"><?php echo html_entity_decode(stripcslashes(htmlspecialchars($pics[$flag]->description))); ?></textarea>
|
288 |
+
</td>
|
289 |
+
<td>
|
290 |
+
<input placeholder="<?php _e("Enter your Tags", gallery_bank) ?>"
|
291 |
+
class="layout-span12 edit" type="text" onkeypress="return preventDot(event);"
|
292 |
+
name="ux_edit_txt_tags_<?php echo $pics[$flag]->pic_id; ?>"
|
293 |
+
id="ux_edit_txt_tags_<?php echo $pics[$flag]->pic_id; ?>" readonly="readonly"
|
294 |
+
value=""/>
|
295 |
+
</td>
|
296 |
+
<td>
|
297 |
+
<?php
|
298 |
+
if ($pics[$flag]->url == "" || $pics[$flag]->url == "undefined") {
|
299 |
+
$domain = "http://";
|
300 |
+
} else {
|
301 |
+
$domain = str_replace("http://http://", "http://", $pics[$flag]->url);
|
302 |
+
}
|
303 |
+
?>
|
304 |
+
<input value="<?php echo $domain; ?>" type="text"
|
305 |
+
id="ux_edit_txt_url_<?php echo $pics[$flag]->pic_id; ?>"
|
306 |
+
name="ux_edit_txt_url_<?php echo $pics[$flag]->pic_id; ?>"
|
307 |
+
class="layout-span12 edit"/>
|
308 |
+
</td>
|
309 |
+
<td>
|
310 |
+
<a class="btn hovertip" id="ux_btn_delete" style="cursor: pointer;"
|
311 |
+
data-original-title="<?php _e("Delete Image", gallery_bank) ?>"
|
312 |
+
onclick="deleteImage(this);" type="edit"
|
313 |
+
controlId="<?php echo $pics[$flag]->pic_id; ?>">
|
314 |
+
<i class="icon-trash"></i>
|
315 |
+
</a>
|
316 |
+
</td>
|
317 |
+
<?php
|
318 |
+
}
|
319 |
+
?>
|
320 |
+
</tr>
|
321 |
+
<?php
|
322 |
+
}
|
323 |
+
?>
|
324 |
+
</tbody>
|
325 |
+
</table>
|
326 |
+
</div>
|
327 |
+
</div>
|
328 |
+
</div>
|
329 |
+
</div>
|
330 |
+
<div class="separator-doubled"></div>
|
331 |
+
<button type="submit" class="btn btn-info" style="float:right; margin-top: 20px;"><?php _e("Update Album", gallery_bank); ?></button>
|
332 |
+
<a class="btn btn-inverse" href="admin.php?page=gallery_bank" style="margin-top: 20px;"><?php _e("Back to Albums", gallery_bank); ?></a>
|
333 |
+
</div>
|
334 |
</div>
|
335 |
+
</div>
|
336 |
+
</div>
|
|
|
|
|
|
|
337 |
</div>
|
338 |
</div>
|
339 |
+
</div>
|
340 |
+
</form>
|
341 |
<script type="text/javascript">
|
342 |
|
343 |
jQuery(".hovertip").tooltip();
|
views/gallery-bank-system-report.php
CHANGED
@@ -1,481 +1,478 @@
|
|
1 |
<?php
|
2 |
global $wp_version;
|
3 |
?>
|
4 |
-
<form id="system_settings" class="layout-form"
|
5 |
-
<div
|
6 |
-
<div class="
|
7 |
-
<
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
<h4><?php _e("System Status", gallery_bank); ?></h4>
|
18 |
-
</div>
|
19 |
-
<div class="widget-layout-body">
|
20 |
-
<a class="btn btn-info system-report" href="#"><?php _e("Get System Report", gallery_bank); ?></a>
|
21 |
-
<div id="system-report" class="layout-system-report">
|
22 |
-
<textarea readonly="readonly"></textarea>
|
23 |
-
</div>
|
24 |
-
<a class="btn btn-info close-report" href="#"><?php _e("Close System Report", gallery_bank); ?></a>
|
25 |
-
<div class="separator-doubled"></div>
|
26 |
-
<div class="fluid-layout">
|
27 |
-
<div class="layout-span6">
|
28 |
-
<div class="widget-layout">
|
29 |
-
<div class="widget-layout-title">
|
30 |
-
<h4>Environment</h4>
|
31 |
-
<span class="tools">
|
32 |
-
<a data-target="#server_settings" data-toggle="collapse">
|
33 |
-
<i class="icon-chevron-down"></i>
|
34 |
-
</a>
|
35 |
-
</span>
|
36 |
</div>
|
37 |
-
<
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
<div class="layout-control-group">
|
49 |
-
<label class="layout-label-control-group">Site URL :</label>
|
50 |
-
|
51 |
-
<div class="layout-controls">
|
52 |
-
<span><?php echo site_url(); ?></span>
|
53 |
-
</div>
|
54 |
-
</div>
|
55 |
-
</div>
|
56 |
-
<div class="widget-layout-body">
|
57 |
-
<div class="layout-control-group">
|
58 |
-
<label class="layout-label-control-group">WP Version :</label>
|
59 |
-
|
60 |
-
<div class="layout-controls">
|
61 |
-
<span><?php bloginfo("version"); ?></span>
|
62 |
-
</div>
|
63 |
-
</div>
|
64 |
-
</div>
|
65 |
-
<div class="widget-layout-body">
|
66 |
-
<div class="layout-control-group">
|
67 |
-
<label class="layout-label-control-group">WP Multisite Enabled :</label>
|
68 |
-
|
69 |
-
<div class="layout-controls">
|
70 |
-
<span><?php if (is_multisite()) echo "Yes"; else echo "No"; ?></span>
|
71 |
-
</div>
|
72 |
-
</div>
|
73 |
-
</div>
|
74 |
-
<div class="widget-layout-body">
|
75 |
-
<div class="layout-control-group">
|
76 |
-
<label class="layout-label-control-group">Web Server Info :</label>
|
77 |
-
|
78 |
-
<div class="layout-controls">
|
79 |
-
<span><?php echo esc_html($_SERVER["SERVER_SOFTWARE"]); ?></span>
|
80 |
-
</div>
|
81 |
-
</div>
|
82 |
-
</div>
|
83 |
-
<div class="widget-layout-body">
|
84 |
-
<div class="layout-control-group">
|
85 |
-
<label class="layout-label-control-group">PHP Version :</label>
|
86 |
-
|
87 |
-
<div class="layout-controls">
|
88 |
-
<span><?php if (function_exists("phpversion")) echo esc_html(phpversion()); ?></span>
|
89 |
-
</div>
|
90 |
-
</div>
|
91 |
-
</div>
|
92 |
-
<div class="widget-layout-body">
|
93 |
-
<div class="layout-control-group">
|
94 |
-
<label class="layout-label-control-group">MySQL Version :</label>
|
95 |
-
|
96 |
-
<div class="layout-controls">
|
97 |
-
<span><?php if (function_exists("mysql_get_server_info")) echo esc_html(mysql_get_server_info()); ?></span>
|
98 |
-
</div>
|
99 |
-
</div>
|
100 |
-
</div>
|
101 |
-
<div class="widget-layout-body">
|
102 |
-
<div class="layout-control-group">
|
103 |
-
<label class="layout-label-control-group">WP Debug Mode :</label>
|
104 |
-
|
105 |
-
<div class="layout-controls">
|
106 |
-
<span><?php if (defined("WP_DEBUG") && WP_DEBUG) echo "Yes"; else echo "No"; ?></span>
|
107 |
-
</div>
|
108 |
-
</div>
|
109 |
-
</div>
|
110 |
-
<div class="widget-layout-body">
|
111 |
-
<div class="layout-control-group">
|
112 |
-
<label class="layout-label-control-group">WP Language :</label>
|
113 |
-
|
114 |
-
<div class="layout-controls">
|
115 |
-
<span><?php if (defined("WPLANG") && WPLANG) echo WPLANG; else _e("Default"); ?></span>
|
116 |
-
</div>
|
117 |
-
</div>
|
118 |
-
</div>
|
119 |
-
<div class="widget-layout-body">
|
120 |
-
<div class="layout-control-group">
|
121 |
-
<label class="layout-label-control-group">WP Max Upload Size :</label>
|
122 |
-
|
123 |
-
<div class="layout-controls">
|
124 |
-
<span><?php echo size_format(wp_max_upload_size()); ?></span>
|
125 |
-
</div>
|
126 |
-
</div>
|
127 |
-
</div>
|
128 |
-
<?php if (function_exists("ini_get")) : ?>
|
129 |
-
<div class="widget-layout-body">
|
130 |
-
<div class="layout-control-group">
|
131 |
-
<label class="layout-label-control-group">PHP Max Script Execute Time :</label>
|
132 |
-
|
133 |
-
<div class="layout-controls">
|
134 |
-
<span><?php echo ini_get("max_execution_time"); ?>s</span>
|
135 |
-
</div>
|
136 |
-
</div>
|
137 |
-
</div>
|
138 |
-
<div class="widget-layout-body">
|
139 |
-
<div class="layout-control-group">
|
140 |
-
<label class="layout-label-control-group">PHP Max Input Vars :</label>
|
141 |
-
|
142 |
-
<div class="layout-controls">
|
143 |
-
<span><?php echo ini_get("max_input_vars"); ?></span>
|
144 |
-
</div>
|
145 |
-
</div>
|
146 |
-
</div>
|
147 |
-
<div class="widget-layout-body">
|
148 |
-
<div class="layout-control-group">
|
149 |
-
<label class="layout-label-control-group">SUHOSIN Installed" :</label>
|
150 |
-
|
151 |
-
<div class="layout-controls">
|
152 |
-
<span><?php echo extension_loaded("suhosin") ? "Yes" : "No" ?></span>
|
153 |
-
</div>
|
154 |
-
</div>
|
155 |
-
</div>
|
156 |
-
<?php endif; ?>
|
157 |
-
<div class="widget-layout-body">
|
158 |
-
<div class="layout-control-group">
|
159 |
-
<label class="layout-label-control-group">Default Timezone :</label>
|
160 |
-
<div class="layout-controls">
|
161 |
-
<span>
|
162 |
-
<?php
|
163 |
-
$timezone = date_default_timezone_get();
|
164 |
-
if ("UTC" !== $timezone) {
|
165 |
-
echo sprintf("Default timezone is %s - it should be UTC", $timezone);
|
166 |
-
} else {
|
167 |
-
echo sprintf("Default timezone is %s", $timezone);
|
168 |
-
}
|
169 |
-
?>
|
170 |
</span>
|
171 |
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
172 |
</div>
|
173 |
</div>
|
174 |
-
|
175 |
-
|
176 |
-
|
177 |
-
|
178 |
-
|
179 |
-
|
180 |
-
|
181 |
-
|
182 |
-
// Get PHP Safe Mode
|
183 |
-
if (ini_get("safemode")) $safemode = "On";
|
184 |
-
else $safemode = "Off";
|
185 |
-
// Get PHP allow_url_fopen
|
186 |
-
if (ini_get("allow-url-fopen")) $allowurlfopen = "On";
|
187 |
-
else $allowurlfopen = "Off";
|
188 |
-
// Get PHP Max Upload Size
|
189 |
-
if (ini_get("upload_max_filesize")) $upload_maximum = ini_get("upload_max_filesize");
|
190 |
-
else $upload_maximum = "N/A";
|
191 |
-
// Get PHP Output buffer Size
|
192 |
-
if (ini_get("pcre.backtrack_limit")) $backtrack_lmt = ini_get("pcre.backtrack_limit");
|
193 |
-
else $backtrack_lmt = "N/A";
|
194 |
-
// Get PHP Max Post Size
|
195 |
-
if (ini_get("post_max_size")) $post_maximum = ini_get("post_max_size");
|
196 |
-
else $post_maximum = "N/A";
|
197 |
-
// Get PHP Memory Limit
|
198 |
-
if (ini_get("memory_limit")) $memory_limit = ini_get("memory_limit");
|
199 |
-
else $memory_limit = "N/A";
|
200 |
-
// Get actual memory_get_usage
|
201 |
-
if (function_exists("memory_get_usage")) $memory_usage = round(memory_get_usage() / 1024 / 1024, 2) . " MByte";
|
202 |
-
else $memory_usage = "N/A";
|
203 |
-
// required for EXIF read
|
204 |
-
if (is_callable("exif_read_data")) $exif = "Yes" . " ( V" . substr(phpversion("exif"), 0, 4) . ")";
|
205 |
-
else $exif = "No";
|
206 |
-
// required for meta data
|
207 |
-
if (is_callable("iptcparse")) $iptc = "Yes";
|
208 |
-
else $iptc = "No";
|
209 |
-
// required for meta data
|
210 |
-
if (is_callable("xml_parser_create")) $xml = "Yes";
|
211 |
-
else $xml = "No";
|
212 |
-
?>
|
213 |
-
<div class="widget-layout-body">
|
214 |
-
<div class="layout-control-group">
|
215 |
-
<label class="layout-label-control-group">Operating System :</label>
|
216 |
-
<div class="layout-controls">
|
217 |
-
<span>
|
218 |
-
<?php echo PHP_OS; ?> (<?php echo(PHP_INT_SIZE * 8) ?> Bit)
|
219 |
-
</span>
|
220 |
-
</div>
|
221 |
-
</div>
|
222 |
-
</div>
|
223 |
-
<div class="widget-layout-body">
|
224 |
-
<div class="layout-control-group">
|
225 |
-
<label class="layout-label-control-group">Memory usage :</label>
|
226 |
-
<div class="layout-controls">
|
227 |
-
<span>
|
228 |
-
<?php echo $memory_usage; ?>
|
229 |
-
</span>
|
230 |
-
</div>
|
231 |
-
</div>
|
232 |
-
</div>
|
233 |
-
<div class="widget-layout-body">
|
234 |
-
<div class="layout-control-group">
|
235 |
-
<label class="layout-label-control-group">SQL Mode :</label>
|
236 |
-
<div class="layout-controls">
|
237 |
-
<span>
|
238 |
-
<?php echo $sqlmode; ?>
|
239 |
-
</span>
|
240 |
-
</div>
|
241 |
-
</div>
|
242 |
-
</div>
|
243 |
-
<div class="widget-layout-body">
|
244 |
-
<div class="layout-control-group">
|
245 |
-
<label class="layout-label-control-group">PHP Safe Mode :</label>
|
246 |
-
<div class="layout-controls">
|
247 |
-
<span>
|
248 |
-
<?php echo PHP_VERSION; ?>
|
249 |
-
</span>
|
250 |
-
</div>
|
251 |
-
</div>
|
252 |
-
</div>
|
253 |
-
<div class="widget-layout-body">
|
254 |
-
<div class="layout-control-group">
|
255 |
-
<label class="layout-label-control-group">PHP Allow URL fopen :</label>
|
256 |
-
<div class="layout-controls">
|
257 |
-
<span>
|
258 |
-
<?php echo $allowurlfopen; ?>
|
259 |
</span>
|
260 |
-
|
261 |
-
|
262 |
-
|
263 |
-
|
264 |
-
|
265 |
-
|
266 |
-
|
267 |
-
|
268 |
-
|
269 |
-
|
270 |
-
|
271 |
-
|
272 |
-
|
273 |
-
|
274 |
-
|
275 |
-
|
276 |
-
|
277 |
-
|
278 |
-
|
279 |
-
|
280 |
-
|
281 |
-
|
282 |
-
|
283 |
-
|
284 |
-
|
285 |
-
|
286 |
-
|
287 |
-
|
288 |
-
|
289 |
-
|
290 |
-
|
291 |
-
|
292 |
-
|
293 |
-
|
294 |
-
|
295 |
-
|
296 |
-
|
297 |
-
|
298 |
-
|
299 |
-
|
300 |
-
|
301 |
-
|
302 |
-
|
303 |
-
|
304 |
-
|
305 |
-
|
306 |
-
|
307 |
-
|
308 |
-
|
309 |
-
|
310 |
-
|
311 |
-
|
312 |
-
|
313 |
-
|
314 |
-
|
315 |
-
|
316 |
-
|
317 |
-
|
318 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
319 |
</span>
|
320 |
</div>
|
321 |
-
|
322 |
-
|
323 |
-
|
324 |
-
|
325 |
-
|
326 |
-
|
327 |
-
|
328 |
-
|
329 |
-
|
330 |
-
|
331 |
-
|
332 |
-
|
333 |
-
|
334 |
-
|
335 |
-
|
336 |
-
|
337 |
-
|
338 |
-
|
339 |
-
|
340 |
-
|
341 |
-
|
342 |
-
|
343 |
-
$active_plugins = (array)get_option("active_plugins", array());
|
344 |
-
|
345 |
-
if (is_multisite())
|
346 |
-
$active_plugins = array_merge($active_plugins, get_site_option("active_sitewide_plugins", array()));
|
347 |
-
$get_plugins = array();
|
348 |
-
|
349 |
-
foreach ($active_plugins as $plugin) {
|
350 |
-
$plugin_data = @get_plugin_data(WP_PLUGIN_DIR . "/" . $plugin);
|
351 |
-
$dirname = dirname($plugin);
|
352 |
-
$version_string = "";
|
353 |
-
if (!empty($plugin_data["Name"])) {
|
354 |
-
$plugin_name = $plugin_data["Name"];
|
355 |
-
|
356 |
-
if (!empty($plugin_data["PluginURI"])) {
|
357 |
-
$plugin_name = "<a href=\"" . esc_url($plugin_data["PluginURI"]) . "\" title=\"" . "Visit plugin homepage" . "\">" . $plugin_name . "</a>";
|
358 |
-
}
|
359 |
-
|
360 |
-
if (strstr($dirname, gallery_bank)) {
|
361 |
-
if (false === ($version_data = get_transient($plugin . "_version_data"))) {
|
362 |
-
$changelog = wp_remote_get("http://dzv365zjfbd8v.cloudfront.net/changelogs/" . $dirname . "/changelog.txt");
|
363 |
-
$change_log = explode("\n", wp_remote_retrieve_body($changelog));
|
364 |
-
if (!empty($change_log)) {
|
365 |
-
foreach ($change_log as $line_num => $change_log_line) {
|
366 |
-
if (preg_match("/^[0-9]/", $change_log_line)) {
|
367 |
-
$date = str_replace(".", "-", trim(substr($change_log_line, 0, strpos($change_log_line, "-"))));
|
368 |
-
$version = preg_replace("~[^0-9,.]~", "", stristr($change_log_line, "version"));
|
369 |
-
$update = trim(str_replace("*", "", $change_log[$line_num + 1]));
|
370 |
-
$version_data = array("date" => $date, "version" => $version, "update" => $update, "changelog" => $changelog);
|
371 |
-
set_transient($plugin . "_version_data", $version_data, 60 * 60 * 12);
|
372 |
-
break;
|
373 |
-
}
|
374 |
-
}
|
375 |
-
}
|
376 |
-
}
|
377 |
-
if (!empty($version_data["version"]) && version_compare($version_data["version"], $plugin_data["Version"], "!="))
|
378 |
-
$version_string = " – <strong style=\"color:red;\">" . $version_data["version"] . " " . "is available" . "</strong>";
|
379 |
-
}
|
380 |
-
$get_plugins[] = $plugin_name . " " . "by" . " " . $plugin_data["Author"] . " " . "version" . " " . $plugin_data["Version"] . $version_string;
|
381 |
-
}
|
382 |
-
}
|
383 |
-
if (sizeof($get_plugins) == 0)
|
384 |
-
echo "-";
|
385 |
-
else
|
386 |
-
echo implode("<div class=\"separator-single\"></div>", $get_plugins);
|
387 |
-
?>
|
388 |
-
</span>
|
389 |
</div>
|
390 |
</div>
|
391 |
</div>
|
392 |
</div>
|
393 |
</div>
|
394 |
-
<?php
|
395 |
-
if($wp_version >= 3.4)
|
396 |
-
{
|
397 |
-
$active_theme = wp_get_theme();
|
398 |
-
?>
|
399 |
-
<div class="widget-layout">
|
400 |
-
<div class="widget-layout-title">
|
401 |
-
<h4>Themes</h4>
|
402 |
-
<span class="tools">
|
403 |
-
<a data-target="#themes_settings" data-toggle="collapse">
|
404 |
-
<i class="icon-chevron-down"></i>
|
405 |
-
</a>
|
406 |
-
</span>
|
407 |
-
</div>
|
408 |
-
|
409 |
-
<div id="themes_settings" class="collapse in">
|
410 |
-
<div class="widget-layout-body">
|
411 |
-
<div class="layout-control-group">
|
412 |
-
<label class="layout-label-control-group">Theme Name :</label>
|
413 |
-
|
414 |
-
<div class="layout-controls">
|
415 |
-
<span><?php echo $active_theme->Name; ?></span>
|
416 |
-
</div>
|
417 |
-
</div>
|
418 |
-
</div>
|
419 |
-
<div class="widget-layout-body">
|
420 |
-
<div class="layout-control-group">
|
421 |
-
<label class="layout-label-control-group">Theme Version :</label>
|
422 |
-
<div class="layout-controls">
|
423 |
-
<span><?php
|
424 |
-
echo $active_theme->Version;
|
425 |
-
if (!empty($theme_version_data["version"]) && version_compare($theme_version_data["version"], $active_theme->Version, "!="))
|
426 |
-
echo " – <strong style=\"color:red;\">" . $theme_version_data["version"] . " " . "is available" . "</strong>";?>
|
427 |
-
</span>
|
428 |
-
</div>
|
429 |
-
</div>
|
430 |
-
</div>
|
431 |
-
<div class="widget-layout-body">
|
432 |
-
<div class="layout-control-group">
|
433 |
-
<label class="layout-label-control-group">Author URL :</label>
|
434 |
-
|
435 |
-
<div class="layout-controls">
|
436 |
-
<span><?php echo $active_theme->{"Author URI"}; ?></span>
|
437 |
-
</div>
|
438 |
-
</div>
|
439 |
-
</div>
|
440 |
-
</div>
|
441 |
-
</div>
|
442 |
-
<?php
|
443 |
-
}
|
444 |
-
?>
|
445 |
-
|
446 |
-
<div class="widget-layout">
|
447 |
-
<div class="widget-layout-title">
|
448 |
-
<h4>Graphic Library Settings</h4>
|
449 |
-
<span class="tools">
|
450 |
-
<a data-target="#library_settings" data-toggle="collapse">
|
451 |
-
<i class="icon-chevron-down"></i>
|
452 |
-
</a>
|
453 |
-
</span>
|
454 |
-
</div>
|
455 |
-
<div id="library_settings" class="collapse in">
|
456 |
-
<?php
|
457 |
-
if (function_exists("gd_info")) {
|
458 |
-
$information = gd_info();
|
459 |
-
$key = array_keys($information);
|
460 |
-
for ($i = 0; $i < count($key); $i++) {
|
461 |
-
if (is_bool($information[$key[$i]]))
|
462 |
-
echo "<div class=\"widget-layout-body\"><div class=\"layout-control-group\"><label class=\"layout-label-control-group\">" . $key[$i] . " : </label><div class=\"layout-controls\"> <span>" . ngg_gd_yesNo($information[$key[$i]]) . " </span></div></div></div>";
|
463 |
-
else
|
464 |
-
echo "<div class=\"widget-layout-body\"><div class=\"layout-control-group\"><label class=\"layout-label-control-group\">" . $key[$i] . " : </label><div class=\"layout-controls\"> <span>" . $information[$key[$i]] . "</span></div></div></div>";
|
465 |
-
}
|
466 |
-
} else {
|
467 |
-
echo "<h4>" . "No GD support" . "!</h4>";
|
468 |
-
}
|
469 |
-
function ngg_gd_yesNo($bool)
|
470 |
-
{
|
471 |
-
if ($bool)
|
472 |
-
return "Yes";
|
473 |
-
else
|
474 |
-
return "No";
|
475 |
-
}
|
476 |
-
?>
|
477 |
-
</div>
|
478 |
-
</div>
|
479 |
</div>
|
480 |
</div>
|
481 |
</div>
|
1 |
<?php
|
2 |
global $wp_version;
|
3 |
?>
|
4 |
+
<form id="system_settings" class="layout-form">
|
5 |
+
<div id="poststuff" style="width: 99% !important;">
|
6 |
+
<div id="post-body" class="metabox-holder">
|
7 |
+
<div id="postbox-container-2" class="postbox-container">
|
8 |
+
<div id="advanced" class="meta-box-sortables">
|
9 |
+
<div id="gallery_bank_get_started" class="postbox" >
|
10 |
+
<div class="handlediv" data-target="#ux_system_settings" title="Click to toggle" data-toggle="collapse"><br></div>
|
11 |
+
<h3 class="hndle"><span><?php _e("System Status", gallery_bank); ?></span></h3>
|
12 |
+
<div class="inside">
|
13 |
+
<div id="ux_system_settings" class="gallery_bank_layout">
|
14 |
+
<a class="btn btn-info system-report" href="#"><?php _e("Get System Report", gallery_bank); ?></a>
|
15 |
+
<div id="system-report" class="layout-system-report">
|
16 |
+
<textarea readonly="readonly"></textarea>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
17 |
</div>
|
18 |
+
<a class="btn btn-info close-report" href="#"><?php _e("Close System Report", gallery_bank); ?></a>
|
19 |
+
<div class="separator-doubled"></div>
|
20 |
+
<div class="fluid-layout">
|
21 |
+
<div class="layout-span6">
|
22 |
+
<div class="widget-layout">
|
23 |
+
<div class="widget-layout-title">
|
24 |
+
<h4>Environment</h4>
|
25 |
+
<span class="tools">
|
26 |
+
<a data-target="#server_settings" data-toggle="collapse">
|
27 |
+
<i class="icon-chevron-down"></i>
|
28 |
+
</a>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
29 |
</span>
|
30 |
</div>
|
31 |
+
<div id="server_settings" class="collapse in">
|
32 |
+
<div class="widget-layout-body">
|
33 |
+
<div class="layout-control-group">
|
34 |
+
<label class="layout-label-control-group">Home URL :</label>
|
35 |
+
|
36 |
+
<div class="layout-controls">
|
37 |
+
<span><?php echo home_url(); ?></span>
|
38 |
+
</div>
|
39 |
+
</div>
|
40 |
+
</div>
|
41 |
+
<div class="widget-layout-body">
|
42 |
+
<div class="layout-control-group">
|
43 |
+
<label class="layout-label-control-group">Site URL :</label>
|
44 |
+
|
45 |
+
<div class="layout-controls">
|
46 |
+
<span><?php echo site_url(); ?></span>
|
47 |
+
</div>
|
48 |
+
</div>
|
49 |
+
</div>
|
50 |
+
<div class="widget-layout-body">
|
51 |
+
<div class="layout-control-group">
|
52 |
+
<label class="layout-label-control-group">WP Version :</label>
|
53 |
+
|
54 |
+
<div class="layout-controls">
|
55 |
+
<span><?php bloginfo("version"); ?></span>
|
56 |
+
</div>
|
57 |
+
</div>
|
58 |
+
</div>
|
59 |
+
<div class="widget-layout-body">
|
60 |
+
<div class="layout-control-group">
|
61 |
+
<label class="layout-label-control-group">WP Multisite Enabled :</label>
|
62 |
+
|
63 |
+
<div class="layout-controls">
|
64 |
+
<span><?php if (is_multisite()) echo "Yes"; else echo "No"; ?></span>
|
65 |
+
</div>
|
66 |
+
</div>
|
67 |
+
</div>
|
68 |
+
<div class="widget-layout-body">
|
69 |
+
<div class="layout-control-group">
|
70 |
+
<label class="layout-label-control-group">Web Server Info :</label>
|
71 |
+
|
72 |
+
<div class="layout-controls">
|
73 |
+
<span><?php echo esc_html($_SERVER["SERVER_SOFTWARE"]); ?></span>
|
74 |
+
</div>
|
75 |
+
</div>
|
76 |
+
</div>
|
77 |
+
<div class="widget-layout-body">
|
78 |
+
<div class="layout-control-group">
|
79 |
+
<label class="layout-label-control-group">PHP Version :</label>
|
80 |
+
|
81 |
+
<div class="layout-controls">
|
82 |
+
<span><?php if (function_exists("phpversion")) echo esc_html(phpversion()); ?></span>
|
83 |
+
</div>
|
84 |
+
</div>
|
85 |
+
</div>
|
86 |
+
<div class="widget-layout-body">
|
87 |
+
<div class="layout-control-group">
|
88 |
+
<label class="layout-label-control-group">MySQL Version :</label>
|
89 |
+
|
90 |
+
<div class="layout-controls">
|
91 |
+
<span><?php if (function_exists("mysql_get_server_info")) echo esc_html(mysql_get_server_info()); ?></span>
|
92 |
+
</div>
|
93 |
+
</div>
|
94 |
+
</div>
|
95 |
+
<div class="widget-layout-body">
|
96 |
+
<div class="layout-control-group">
|
97 |
+
<label class="layout-label-control-group">WP Debug Mode :</label>
|
98 |
+
|
99 |
+
<div class="layout-controls">
|
100 |
+
<span><?php if (defined("WP_DEBUG") && WP_DEBUG) echo "Yes"; else echo "No"; ?></span>
|
101 |
+
</div>
|
102 |
+
</div>
|
103 |
+
</div>
|
104 |
+
<div class="widget-layout-body">
|
105 |
+
<div class="layout-control-group">
|
106 |
+
<label class="layout-label-control-group">WP Language :</label>
|
107 |
+
|
108 |
+
<div class="layout-controls">
|
109 |
+
<span><?php if (defined("WPLANG") && WPLANG) echo WPLANG; else _e("Default"); ?></span>
|
110 |
+
</div>
|
111 |
+
</div>
|
112 |
+
</div>
|
113 |
+
<div class="widget-layout-body">
|
114 |
+
<div class="layout-control-group">
|
115 |
+
<label class="layout-label-control-group">WP Max Upload Size :</label>
|
116 |
+
|
117 |
+
<div class="layout-controls">
|
118 |
+
<span><?php echo size_format(wp_max_upload_size()); ?></span>
|
119 |
+
</div>
|
120 |
+
</div>
|
121 |
+
</div>
|
122 |
+
<?php if (function_exists("ini_get")) : ?>
|
123 |
+
<div class="widget-layout-body">
|
124 |
+
<div class="layout-control-group">
|
125 |
+
<label class="layout-label-control-group">PHP Max Script Execute Time :</label>
|
126 |
+
|
127 |
+
<div class="layout-controls">
|
128 |
+
<span><?php echo ini_get("max_execution_time"); ?>s</span>
|
129 |
+
</div>
|
130 |
+
</div>
|
131 |
+
</div>
|
132 |
+
<div class="widget-layout-body">
|
133 |
+
<div class="layout-control-group">
|
134 |
+
<label class="layout-label-control-group">PHP Max Input Vars :</label>
|
135 |
+
|
136 |
+
<div class="layout-controls">
|
137 |
+
<span><?php echo ini_get("max_input_vars"); ?></span>
|
138 |
+
</div>
|
139 |
+
</div>
|
140 |
+
</div>
|
141 |
+
<div class="widget-layout-body">
|
142 |
+
<div class="layout-control-group">
|
143 |
+
<label class="layout-label-control-group">SUHOSIN Installed" :</label>
|
144 |
+
|
145 |
+
<div class="layout-controls">
|
146 |
+
<span><?php echo extension_loaded("suhosin") ? "Yes" : "No" ?></span>
|
147 |
+
</div>
|
148 |
+
</div>
|
149 |
+
</div>
|
150 |
+
<?php endif; ?>
|
151 |
+
<div class="widget-layout-body">
|
152 |
+
<div class="layout-control-group">
|
153 |
+
<label class="layout-label-control-group">Default Timezone :</label>
|
154 |
+
<div class="layout-controls">
|
155 |
+
<span>
|
156 |
+
<?php
|
157 |
+
$timezone = date_default_timezone_get();
|
158 |
+
if ("UTC" !== $timezone) {
|
159 |
+
echo sprintf("Default timezone is %s - it should be UTC", $timezone);
|
160 |
+
} else {
|
161 |
+
echo sprintf("Default timezone is %s", $timezone);
|
162 |
+
}
|
163 |
+
?>
|
164 |
+
</span>
|
165 |
+
</div>
|
166 |
+
</div>
|
167 |
+
</div>
|
168 |
+
<?php
|
169 |
+
global $wpdb, $gb;
|
170 |
+
// Get MYSQL Version
|
171 |
+
$sql_version = $wpdb->get_var("SELECT VERSION() AS version");
|
172 |
+
// GET SQL Mode
|
173 |
+
$my_sql_info = $wpdb->get_results("SHOW VARIABLES LIKE \"sql_mode\"");
|
174 |
+
if (is_array($my_sql_info)) $sqlmode = $my_sql_info[0]->Value;
|
175 |
+
if (empty($sqlmode)) $sqlmode = "Not set";
|
176 |
+
// Get PHP Safe Mode
|
177 |
+
if (ini_get("safemode")) $safemode = "On";
|
178 |
+
else $safemode = "Off";
|
179 |
+
// Get PHP allow_url_fopen
|
180 |
+
if (ini_get("allow-url-fopen")) $allowurlfopen = "On";
|
181 |
+
else $allowurlfopen = "Off";
|
182 |
+
// Get PHP Max Upload Size
|
183 |
+
if (ini_get("upload_max_filesize")) $upload_maximum = ini_get("upload_max_filesize");
|
184 |
+
else $upload_maximum = "N/A";
|
185 |
+
// Get PHP Output buffer Size
|
186 |
+
if (ini_get("pcre.backtrack_limit")) $backtrack_lmt = ini_get("pcre.backtrack_limit");
|
187 |
+
else $backtrack_lmt = "N/A";
|
188 |
+
// Get PHP Max Post Size
|
189 |
+
if (ini_get("post_max_size")) $post_maximum = ini_get("post_max_size");
|
190 |
+
else $post_maximum = "N/A";
|
191 |
+
// Get PHP Memory Limit
|
192 |
+
if (ini_get("memory_limit")) $memory_limit = ini_get("memory_limit");
|
193 |
+
else $memory_limit = "N/A";
|
194 |
+
// Get actual memory_get_usage
|
195 |
+
if (function_exists("memory_get_usage")) $memory_usage = round(memory_get_usage() / 1024 / 1024, 2) . " MByte";
|
196 |
+
else $memory_usage = "N/A";
|
197 |
+
// required for EXIF read
|
198 |
+
if (is_callable("exif_read_data")) $exif = "Yes" . " ( V" . substr(phpversion("exif"), 0, 4) . ")";
|
199 |
+
else $exif = "No";
|
200 |
+
// required for meta data
|
201 |
+
if (is_callable("iptcparse")) $iptc = "Yes";
|
202 |
+
else $iptc = "No";
|
203 |
+
// required for meta data
|
204 |
+
if (is_callable("xml_parser_create")) $xml = "Yes";
|
205 |
+
else $xml = "No";
|
206 |
+
?>
|
207 |
+
<div class="widget-layout-body">
|
208 |
+
<div class="layout-control-group">
|
209 |
+
<label class="layout-label-control-group">Operating System :</label>
|
210 |
+
<div class="layout-controls">
|
211 |
+
<span>
|
212 |
+
<?php echo PHP_OS; ?> (<?php echo(PHP_INT_SIZE * 8) ?> Bit)
|
213 |
+
</span>
|
214 |
+
</div>
|
215 |
+
</div>
|
216 |
+
</div>
|
217 |
+
<div class="widget-layout-body">
|
218 |
+
<div class="layout-control-group">
|
219 |
+
<label class="layout-label-control-group">Memory usage :</label>
|
220 |
+
<div class="layout-controls">
|
221 |
+
<span>
|
222 |
+
<?php echo $memory_usage; ?>
|
223 |
+
</span>
|
224 |
+
</div>
|
225 |
+
</div>
|
226 |
+
</div>
|
227 |
+
<div class="widget-layout-body">
|
228 |
+
<div class="layout-control-group">
|
229 |
+
<label class="layout-label-control-group">SQL Mode :</label>
|
230 |
+
<div class="layout-controls">
|
231 |
+
<span>
|
232 |
+
<?php echo $sqlmode; ?>
|
233 |
+
</span>
|
234 |
+
</div>
|
235 |
+
</div>
|
236 |
+
</div>
|
237 |
+
<div class="widget-layout-body">
|
238 |
+
<div class="layout-control-group">
|
239 |
+
<label class="layout-label-control-group">PHP Safe Mode :</label>
|
240 |
+
<div class="layout-controls">
|
241 |
+
<span>
|
242 |
+
<?php echo PHP_VERSION; ?>
|
243 |
+
</span>
|
244 |
+
</div>
|
245 |
+
</div>
|
246 |
+
</div>
|
247 |
+
<div class="widget-layout-body">
|
248 |
+
<div class="layout-control-group">
|
249 |
+
<label class="layout-label-control-group">PHP Allow URL fopen :</label>
|
250 |
+
<div class="layout-controls">
|
251 |
+
<span>
|
252 |
+
<?php echo $allowurlfopen; ?>
|
253 |
+
</span>
|
254 |
+
</div>
|
255 |
+
</div>
|
256 |
+
</div>
|
257 |
+
<div class="widget-layout-body">
|
258 |
+
<div class="layout-control-group">
|
259 |
+
<label class="layout-label-control-group">PHP Memory Limit :</label>
|
260 |
+
<div class="layout-controls">
|
261 |
+
<span>
|
262 |
+
<?php echo $memory_limit; ?>
|
263 |
+
</span>
|
264 |
+
</div>
|
265 |
+
</div>
|
266 |
+
</div>
|
267 |
+
<div class="widget-layout-body">
|
268 |
+
<div class="layout-control-group">
|
269 |
+
<label class="layout-label-control-group">PHP Max Post Size :</label>
|
270 |
+
<div class="layout-controls">
|
271 |
+
<span>
|
272 |
+
<?php echo $post_maximum; ?>
|
273 |
+
</span>
|
274 |
+
</div>
|
275 |
+
</div>
|
276 |
+
</div>
|
277 |
+
<div class="widget-layout-body">
|
278 |
+
<div class="layout-control-group">
|
279 |
+
<label class="layout-label-control-group">PCRE Backtracking Limit :</label>
|
280 |
+
<div class="layout-controls">
|
281 |
+
<span>
|
282 |
+
<?php echo $backtrack_lmt; ?>
|
283 |
+
</span>
|
284 |
+
</div>
|
285 |
+
</div>
|
286 |
+
</div>
|
287 |
+
<div class="widget-layout-body">
|
288 |
+
<div class="layout-control-group">
|
289 |
+
<label class="layout-label-control-group">PHP Exif support :</label>
|
290 |
+
<div class="layout-controls">
|
291 |
+
<span>
|
292 |
+
<?php echo $exif; ?>
|
293 |
+
</span>
|
294 |
+
</div>
|
295 |
+
</div>
|
296 |
+
</div>
|
297 |
+
<div class="widget-layout-body">
|
298 |
+
<div class="layout-control-group">
|
299 |
+
<label class="layout-label-control-group">PHP IPTC support :</label>
|
300 |
+
<div class="layout-controls">
|
301 |
+
<span>
|
302 |
+
<?php echo $iptc; ?>
|
303 |
+
</span>
|
304 |
+
</div>
|
305 |
+
</div>
|
306 |
+
</div>
|
307 |
+
<div class="widget-layout-body">
|
308 |
+
<div class="layout-control-group">
|
309 |
+
<label class="layout-label-control-group">PHP XML support :</label>
|
310 |
+
<div class="layout-controls">
|
311 |
+
<span>
|
312 |
+
<?php echo $xml; ?>
|
313 |
+
</span>
|
314 |
+
</div>
|
315 |
+
</div>
|
316 |
+
</div>
|
317 |
+
</div>
|
318 |
</div>
|
319 |
</div>
|
320 |
+
<div class="layout-span6">
|
321 |
+
<div class="widget-layout">
|
322 |
+
<div class="widget-layout-title">
|
323 |
+
<h4>Plugins</h4>
|
324 |
+
<span class="tools">
|
325 |
+
<a data-target="#plugin_settings" data-toggle="collapse">
|
326 |
+
<i class="icon-chevron-down"></i>
|
327 |
+
</a>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
328 |
</span>
|
329 |
+
</div>
|
330 |
+
<div id="plugin_settings" class="collapse in">
|
331 |
+
<div class="widget-layout-body">
|
332 |
+
<div class="layout-control-group">
|
333 |
+
<label class="layout-label-control-group">Installed Plugins :</label>
|
334 |
+
<div class="layout-controls">
|
335 |
+
<span>
|
336 |
+
<?php
|
337 |
+
$active_plugins = (array)get_option("active_plugins", array());
|
338 |
+
|
339 |
+
if (is_multisite())
|
340 |
+
$active_plugins = array_merge($active_plugins, get_site_option("active_sitewide_plugins", array()));
|
341 |
+
$get_plugins = array();
|
342 |
+
|
343 |
+
foreach ($active_plugins as $plugin) {
|
344 |
+
$plugin_data = @get_plugin_data(WP_PLUGIN_DIR . "/" . $plugin);
|
345 |
+
$dirname = dirname($plugin);
|
346 |
+
$version_string = "";
|
347 |
+
if (!empty($plugin_data["Name"])) {
|
348 |
+
$plugin_name = $plugin_data["Name"];
|
349 |
+
|
350 |
+
if (!empty($plugin_data["PluginURI"])) {
|
351 |
+
$plugin_name = "<a href=\"" . esc_url($plugin_data["PluginURI"]) . "\" title=\"" . "Visit plugin homepage" . "\">" . $plugin_name . "</a>";
|
352 |
+
}
|
353 |
+
|
354 |
+
if (strstr($dirname, gallery_bank)) {
|
355 |
+
if (false === ($version_data = get_transient($plugin . "_version_data"))) {
|
356 |
+
$changelog = wp_remote_get("http://dzv365zjfbd8v.cloudfront.net/changelogs/" . $dirname . "/changelog.txt");
|
357 |
+
$change_log = explode("\n", wp_remote_retrieve_body($changelog));
|
358 |
+
if (!empty($change_log)) {
|
359 |
+
foreach ($change_log as $line_num => $change_log_line) {
|
360 |
+
if (preg_match("/^[0-9]/", $change_log_line)) {
|
361 |
+
$date = str_replace(".", "-", trim(substr($change_log_line, 0, strpos($change_log_line, "-"))));
|
362 |
+
$version = preg_replace("~[^0-9,.]~", "", stristr($change_log_line, "version"));
|
363 |
+
$update = trim(str_replace("*", "", $change_log[$line_num + 1]));
|
364 |
+
$version_data = array("date" => $date, "version" => $version, "update" => $update, "changelog" => $changelog);
|
365 |
+
set_transient($plugin . "_version_data", $version_data, 60 * 60 * 12);
|
366 |
+
break;
|
367 |
+
}
|
368 |
+
}
|
369 |
+
}
|
370 |
+
}
|
371 |
+
if (!empty($version_data["version"]) && version_compare($version_data["version"], $plugin_data["Version"], "!="))
|
372 |
+
$version_string = " – <strong style=\"color:red;\">" . $version_data["version"] . " " . "is available" . "</strong>";
|
373 |
+
}
|
374 |
+
$get_plugins[] = $plugin_name . " " . "by" . " " . $plugin_data["Author"] . " " . "version" . " " . $plugin_data["Version"] . $version_string;
|
375 |
+
}
|
376 |
+
}
|
377 |
+
if (sizeof($get_plugins) == 0)
|
378 |
+
echo "-";
|
379 |
+
else
|
380 |
+
echo implode("<div class=\"separator-single\"></div>", $get_plugins);
|
381 |
+
?>
|
382 |
+
</span>
|
383 |
+
</div>
|
384 |
+
</div>
|
385 |
+
</div>
|
386 |
+
</div>
|
387 |
+
</div>
|
388 |
+
<?php
|
389 |
+
if($wp_version >= 3.4)
|
390 |
+
{
|
391 |
+
$active_theme = wp_get_theme();
|
392 |
+
?>
|
393 |
+
<div class="widget-layout">
|
394 |
+
<div class="widget-layout-title">
|
395 |
+
<h4>Themes</h4>
|
396 |
+
<span class="tools">
|
397 |
+
<a data-target="#themes_settings" data-toggle="collapse">
|
398 |
+
<i class="icon-chevron-down"></i>
|
399 |
+
</a>
|
400 |
+
</span>
|
401 |
+
</div>
|
402 |
+
|
403 |
+
<div id="themes_settings" class="collapse in">
|
404 |
+
<div class="widget-layout-body">
|
405 |
+
<div class="layout-control-group">
|
406 |
+
<label class="layout-label-control-group">Theme Name :</label>
|
407 |
+
|
408 |
+
<div class="layout-controls">
|
409 |
+
<span><?php echo $active_theme->Name; ?></span>
|
410 |
+
</div>
|
411 |
+
</div>
|
412 |
+
</div>
|
413 |
+
<div class="widget-layout-body">
|
414 |
+
<div class="layout-control-group">
|
415 |
+
<label class="layout-label-control-group">Theme Version :</label>
|
416 |
+
<div class="layout-controls">
|
417 |
+
<span><?php
|
418 |
+
echo $active_theme->Version;
|
419 |
+
if (!empty($theme_version_data["version"]) && version_compare($theme_version_data["version"], $active_theme->Version, "!="))
|
420 |
+
echo " – <strong style=\"color:red;\">" . $theme_version_data["version"] . " " . "is available" . "</strong>";?>
|
421 |
+
</span>
|
422 |
+
</div>
|
423 |
+
</div>
|
424 |
+
</div>
|
425 |
+
<div class="widget-layout-body">
|
426 |
+
<div class="layout-control-group">
|
427 |
+
<label class="layout-label-control-group">Author URL :</label>
|
428 |
+
|
429 |
+
<div class="layout-controls">
|
430 |
+
<span><?php echo $active_theme->{"Author URI"}; ?></span>
|
431 |
+
</div>
|
432 |
+
</div>
|
433 |
+
</div>
|
434 |
+
</div>
|
435 |
+
</div>
|
436 |
+
<?php
|
437 |
+
}
|
438 |
+
?>
|
439 |
+
|
440 |
+
<div class="widget-layout">
|
441 |
+
<div class="widget-layout-title">
|
442 |
+
<h4>Graphic Library Settings</h4>
|
443 |
+
<span class="tools">
|
444 |
+
<a data-target="#library_settings" data-toggle="collapse">
|
445 |
+
<i class="icon-chevron-down"></i>
|
446 |
+
</a>
|
447 |
</span>
|
448 |
</div>
|
449 |
+
<div id="library_settings" class="collapse in">
|
450 |
+
<?php
|
451 |
+
if (function_exists("gd_info")) {
|
452 |
+
$information = gd_info();
|
453 |
+
$key = array_keys($information);
|
454 |
+
for ($i = 0; $i < count($key); $i++) {
|
455 |
+
if (is_bool($information[$key[$i]]))
|
456 |
+
echo "<div class=\"widget-layout-body\"><div class=\"layout-control-group\"><label class=\"layout-label-control-group\">" . $key[$i] . " : </label><div class=\"layout-controls\"> <span>" . ngg_gd_yesNo($information[$key[$i]]) . " </span></div></div></div>";
|
457 |
+
else
|
458 |
+
echo "<div class=\"widget-layout-body\"><div class=\"layout-control-group\"><label class=\"layout-label-control-group\">" . $key[$i] . " : </label><div class=\"layout-controls\"> <span>" . $information[$key[$i]] . "</span></div></div></div>";
|
459 |
+
}
|
460 |
+
} else {
|
461 |
+
echo "<h4>" . "No GD support" . "!</h4>";
|
462 |
+
}
|
463 |
+
function ngg_gd_yesNo($bool)
|
464 |
+
{
|
465 |
+
if ($bool)
|
466 |
+
return "Yes";
|
467 |
+
else
|
468 |
+
return "No";
|
469 |
+
}
|
470 |
+
?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
471 |
</div>
|
472 |
</div>
|
473 |
</div>
|
474 |
</div>
|
475 |
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
476 |
</div>
|
477 |
</div>
|
478 |
</div>
|
views/header.php
CHANGED
@@ -5,14 +5,68 @@ array_push($gb_lang, "ar", "bg_BG", "da_DK", "he_IL", "hu_HU", "id_ID",
|
|
5 |
"ja", "ko_KR", "ms_MY", "pl_PL", "ro_RO", "ru_RU", "sk_SK", "sl_SI", "sq_AL",
|
6 |
"sr_RS", "th", "tr", "zh_CN");
|
7 |
array_push($gb_translated_lang, "en_GB", "en_US", "es_ES", "nl_NL", "uk", "sv_SE", "fr_FR", "pt_PT", "pt_BR", "et", "it_IT",
|
8 |
-
"de_DE", "
|
9 |
$language = get_locale();
|
10 |
?>
|
11 |
-
|
12 |
<img src="<?php echo GALLERY_BK_PLUGIN_URL . '/assets/images/gallery-bank-logo.png'; ?>" style="margin-top:20px"/>
|
13 |
-
<
|
14 |
-
|
15 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
16 |
<?php
|
17 |
if(in_array($language, $gb_lang))
|
18 |
{
|
5 |
"ja", "ko_KR", "ms_MY", "pl_PL", "ro_RO", "ru_RU", "sk_SK", "sl_SI", "sq_AL",
|
6 |
"sr_RS", "th", "tr", "zh_CN");
|
7 |
array_push($gb_translated_lang, "en_GB", "en_US", "es_ES", "nl_NL", "uk", "sv_SE", "fr_FR", "pt_PT", "pt_BR", "et", "it_IT",
|
8 |
+
"de_DE", "fi");
|
9 |
$language = get_locale();
|
10 |
?>
|
|
|
11 |
<img src="<?php echo GALLERY_BK_PLUGIN_URL . '/assets/images/gallery-bank-logo.png'; ?>" style="margin-top:20px"/>
|
12 |
+
<script>
|
13 |
+
jQuery(document).ready(function()
|
14 |
+
{
|
15 |
+
jQuery(".nav-tab-wrapper > a#<?php echo $_REQUEST["page"];?>").addClass("nav-tab-active");
|
16 |
+
});
|
17 |
+
</script>
|
18 |
+
<?php
|
19 |
+
switch($_REQUEST["page"])
|
20 |
+
{
|
21 |
+
case "gallery_bank":
|
22 |
+
$page = "Dashboard";
|
23 |
+
break;
|
24 |
+
case "add_album":
|
25 |
+
$page = "Add New Album";
|
26 |
+
break;
|
27 |
+
case "gallery_bank_shortcode":
|
28 |
+
$page = "Short-Codes";
|
29 |
+
break;
|
30 |
+
case "gallery_album_sorting":
|
31 |
+
$page = "Album Sorting";
|
32 |
+
break;
|
33 |
+
case "global_settings":
|
34 |
+
$page = "Global Settings";
|
35 |
+
break;
|
36 |
+
case "gallery_bank_system_status":
|
37 |
+
$page = "System Status";
|
38 |
+
break;
|
39 |
+
case "gallery_bank_purchase":
|
40 |
+
$page = "Purchase Pro Version";
|
41 |
+
break;
|
42 |
+
case "edit_album":
|
43 |
+
$page = "Edit Album";
|
44 |
+
break;
|
45 |
+
case "images_sorting":
|
46 |
+
$page = "Re-order Images";
|
47 |
+
break;
|
48 |
+
case "album_preview":
|
49 |
+
$page = "Album Preview";
|
50 |
+
break;
|
51 |
+
}
|
52 |
+
?>
|
53 |
+
<ul class="breadcrumb">
|
54 |
+
<li>
|
55 |
+
<i class="icon-home"></i>
|
56 |
+
<a href="admin.php?page=gallery_bank"><?php _e("Gallery Bank", gallery_bank); ?></a>
|
57 |
+
<span class="divider">/</span>
|
58 |
+
<a href="#"><?php _e($page, gallery_bank); ?></a>
|
59 |
+
</li>
|
60 |
+
</ul>
|
61 |
+
<h2 class="nav-tab-wrapper">
|
62 |
+
<a class="nav-tab " id="gallery_bank" href="admin.php?page=gallery_bank">Dashboard</a>
|
63 |
+
<a class="nav-tab " id="add_album" href="admin.php?page=add_album">Add New Album</a>
|
64 |
+
<a class="nav-tab " id="gallery_bank_shortcode" href="admin.php?page=gallery_bank_shortcode">Short-Codes</a>
|
65 |
+
<a class="nav-tab " id="gallery_album_sorting" href="admin.php?page=gallery_album_sorting">Album Sorting</a>
|
66 |
+
<a class="nav-tab " id="global_settings" href="admin.php?page=global_settings">Global Settings</a>
|
67 |
+
<a class="nav-tab " id="gallery_bank_system_status" href="admin.php?page=gallery_bank_system_status">System Status</a>
|
68 |
+
<a class="nav-tab " id="gallery_bank_purchase" href="admin.php?page=gallery_bank_purchase">Purchase Pro Version</a>
|
69 |
+
</h2>
|
70 |
<?php
|
71 |
if(in_array($language, $gb_lang))
|
72 |
{
|
views/images-sorting.php
CHANGED
@@ -169,112 +169,106 @@ if (count($album_css) != 0)
|
|
169 |
}
|
170 |
?>
|
171 |
<form id="reodering_images" class="layout-form" method="post">
|
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 |
-
|
238 |
-
|
239 |
-
|
240 |
-
|
241 |
-
|
242 |
-
|
243 |
-
|
244 |
-
|
245 |
-
|
246 |
-
|
247 |
-
|
248 |
-
|
249 |
-
|
250 |
-
|
251 |
-
|
252 |
-
|
253 |
-
|
254 |
-
|
255 |
-
|
256 |
-
|
257 |
-
|
258 |
-
|
259 |
-
|
260 |
-
|
261 |
-
|
262 |
-
|
263 |
-
|
264 |
-
|
265 |
-
|
266 |
-
|
267 |
-
|
268 |
-
|
269 |
-
|
270 |
-
|
271 |
-
|
272 |
-
</div>
|
273 |
-
</div>
|
274 |
-
</div>
|
275 |
-
</div>
|
276 |
-
</div>
|
277 |
-
</div>
|
278 |
</form>
|
279 |
<script type="text/javascript">
|
280 |
jQuery(document).ready(function () {
|
169 |
}
|
170 |
?>
|
171 |
<form id="reodering_images" class="layout-form" method="post">
|
172 |
+
<div id="poststuff" style="width: 99% !important;">
|
173 |
+
<div id="post-body" class="metabox-holder">
|
174 |
+
<div id="postbox-container-2" class="postbox-container">
|
175 |
+
<div id="advanced" class="meta-box-sortables">
|
176 |
+
<div id="gallery_bank_get_started" class="postbox" >
|
177 |
+
<div class="handlediv" data-target="#ux_image_sorting" title="Click to toggle" data-toggle="collapse"><br></div>
|
178 |
+
<h3 class="hndle"><span><?php _e("Re-Order Images", gallery_bank); ?></span></h3>
|
179 |
+
<div class="inside">
|
180 |
+
<div id="ux_image_sorting" class="gallery_bank_layout">
|
181 |
+
<a class="btn btn-inverse"
|
182 |
+
href="admin.php?page=gallery_bank"><?php _e("Back to Albums", gallery_bank); ?></a>
|
183 |
+
<a href="#" class="btn btn-info" onclick="show_premium_message();"
|
184 |
+
style="float:right"><?php _e("Update Order", gallery_bank); ?></a>
|
185 |
+
<div id="sort_order_message" class="message green" style="display: none;">
|
186 |
+
<span>
|
187 |
+
<strong><?php _e("Sorting Order has been updated.", gallery_bank); ?></strong>
|
188 |
+
</span>
|
189 |
+
</div>
|
190 |
+
<div class="separator-doubled"></div>
|
191 |
+
<div class="fluid-layout">
|
192 |
+
<div class="layout-span12">
|
193 |
+
<div class="widget-layout">
|
194 |
+
<div class="widget-layout-title">
|
195 |
+
<h4><?php echo stripcslashes(htmlspecialchars_decode($album->album_name)); ?></h4>
|
196 |
+
</div>
|
197 |
+
<div class="widget-layout-body">
|
198 |
+
<div class="layout-control-group">
|
199 |
+
<ul class="breadcrumb">
|
200 |
+
<li>
|
201 |
+
<label class="layout-control-label"><strong>Presort :</strong></label>
|
202 |
+
<div class="layout-controls" style="margin-top: 8px;">
|
203 |
+
<a id="unsort" href="admin.php?page=images_sorting&album_id=<?php echo $album_id ?>&row=<?php echo $img_in_row ?>&order_id=unsort">Unsorted</a>
|
204 |
+
|
|
205 |
+
<a id="picId" href="admin.php?page=images_sorting&album_id=<?php echo $album_id ?>&row=<?php echo $img_in_row ?>&order_id=picId">Image ID</a>
|
206 |
+
|
|
207 |
+
<a id="name" href="admin.php?page=images_sorting&album_id=<?php echo $album_id ?>&row=<?php echo $img_in_row ?>&order_id=name">File Name</a>
|
208 |
+
|
|
209 |
+
<a id="title" href="admin.php?page=images_sorting&album_id=<?php echo $album_id ?>&row=<?php echo $img_in_row ?>&order_id=title">Title Text</a>
|
210 |
+
|
|
211 |
+
<a id="date" href="admin.php?page=images_sorting&album_id=<?php echo $album_id ?>&row=<?php echo $img_in_row ?>&order_id=date">Date</a>
|
212 |
+
|
|
213 |
+
<a id="asc" href="admin.php?page=images_sorting&album_id=<?php echo $album_id ?>&row=<?php echo $img_in_row ?>&order_id=asc">Ascending</a>
|
214 |
+
|
|
215 |
+
<a id="desc" href="admin.php?page=images_sorting&album_id=<?php echo $album_id ?>&row=<?php echo $img_in_row ?>&order_id=desc">Descending</a>
|
216 |
+
</div>
|
217 |
+
<br>
|
218 |
+
<label class="layout-control-label">
|
219 |
+
<strong>
|
220 |
+
<?php _e("Images in Row", gallery_bank); ?> :
|
221 |
+
</strong>
|
222 |
+
</label>
|
223 |
+
<select id="ux_ddl_img_in_Row" name="ux_ddl_img_in_Row" class="layout-span2" style="margin-left: 16px;" onchange="img_in_row();">
|
224 |
+
<option id="" value=""><?php _e("Please Choose", gallery_bank); ?></option>
|
225 |
+
<?php
|
226 |
+
for ($i = 1; $i <= 10; $i++):
|
227 |
+
?>
|
228 |
+
<option <?php if ($i == $img_in_row) echo "selected=\"selected\"" ?>
|
229 |
+
value="<?php echo $i ?>"><?php echo $i; ?></option>
|
230 |
+
<?php
|
231 |
+
endfor;
|
232 |
+
?>
|
233 |
+
</select>
|
234 |
+
</li>
|
235 |
+
</ul>
|
236 |
+
</div>
|
237 |
+
<div id="images_sort" class="sort">
|
238 |
+
<?php
|
239 |
+
for ($flag = 0; $flag < count($pics_order); $flag++) {
|
240 |
+
?>
|
241 |
+
<div id="sortOrder_<?php echo $pics_order[$flag]->pic_id; ?>"
|
242 |
+
class="imgLiquidFill dynamic_css">
|
243 |
+
<?php
|
244 |
+
if ($pics_order[$flag]->video == 1) {
|
245 |
+
?>
|
246 |
+
<img id="imgOrder_<?php echo $pics_order[$flag]->pic_id; ?>"
|
247 |
+
src="<?php echo $video_thumb_url; ?>"/>
|
248 |
+
<?php
|
249 |
+
} else {
|
250 |
+
?>
|
251 |
+
<img id="imgOrder_<?php echo $pics_order[$flag]->pic_id; ?>"
|
252 |
+
src="<?php echo GALLERY_BK_THUMB_SMALL_URL . $pics_order[$flag]->thumbnail_url; ?>"/>
|
253 |
+
<?php
|
254 |
+
}
|
255 |
+
?>
|
256 |
+
</div>
|
257 |
+
<?php
|
258 |
+
}
|
259 |
+
?>
|
260 |
+
</div>
|
261 |
+
</div>
|
262 |
+
</div>
|
263 |
+
</div>
|
264 |
+
</div>
|
265 |
+
</div>
|
266 |
+
</div>
|
267 |
+
</div>
|
268 |
+
</div>
|
269 |
+
</div>
|
270 |
+
</div>
|
271 |
+
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
272 |
</form>
|
273 |
<script type="text/javascript">
|
274 |
jQuery(document).ready(function () {
|
views/purchase_pro_version.php
CHANGED
@@ -16,628 +16,645 @@ if (isset($_REQUEST["msg"]))
|
|
16 |
}
|
17 |
?>
|
18 |
<form id="gallery_bank_pricing" class="layout-form">
|
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 |
-
|
238 |
-
<
|
239 |
-
|
240 |
-
|
241 |
-
<
|
242 |
-
|
243 |
-
|
244 |
-
<
|
245 |
-
|
246 |
-
|
247 |
-
<
|
248 |
-
|
249 |
-
|
250 |
-
<
|
251 |
-
|
252 |
-
|
253 |
-
<
|
254 |
-
|
255 |
-
|
256 |
-
<
|
257 |
-
|
258 |
-
|
259 |
-
<
|
260 |
-
|
261 |
-
|
262 |
-
<
|
263 |
-
|
264 |
-
|
265 |
-
|
266 |
-
|
267 |
-
|
268 |
-
|
269 |
-
|
270 |
-
|
271 |
-
|
272 |
-
|
273 |
-
|
274 |
-
|
275 |
-
|
276 |
-
|
277 |
-
|
278 |
-
|
279 |
-
|
280 |
-
|
281 |
-
|
282 |
-
<
|
283 |
-
|
284 |
-
|
285 |
-
<
|
286 |
-
|
287 |
-
|
288 |
-
<
|
289 |
-
|
290 |
-
|
291 |
-
<
|
292 |
-
|
293 |
-
|
294 |
-
<
|
295 |
-
|
296 |
-
|
297 |
-
<
|
298 |
-
|
299 |
-
|
300 |
-
<
|
301 |
-
|
302 |
-
|
303 |
-
<
|
304 |
-
|
305 |
-
|
306 |
-
<
|
307 |
-
|
308 |
-
|
309 |
-
<
|
310 |
-
|
311 |
-
|
312 |
-
<
|
313 |
-
|
314 |
-
|
315 |
-
<
|
316 |
-
|
317 |
-
|
318 |
-
<
|
319 |
-
|
320 |
-
|
321 |
-
<
|
322 |
-
|
323 |
-
|
324 |
-
<
|
325 |
-
|
326 |
-
|
327 |
-
<
|
328 |
-
|
329 |
-
|
330 |
-
<
|
331 |
-
|
332 |
-
|
333 |
-
<
|
334 |
-
|
335 |
-
|
336 |
-
<
|
337 |
-
|
338 |
-
|
339 |
-
<
|
340 |
-
|
341 |
-
|
342 |
-
<
|
343 |
-
|
344 |
-
|
345 |
-
<
|
346 |
-
|
347 |
-
|
348 |
-
<
|
349 |
-
|
350 |
-
|
351 |
-
<
|
352 |
-
|
353 |
-
|
354 |
-
<
|
355 |
-
|
356 |
-
|
357 |
-
<
|
358 |
-
|
359 |
-
|
360 |
-
<
|
361 |
-
|
362 |
-
|
363 |
-
<
|
364 |
-
|
365 |
-
|
366 |
-
<
|
367 |
-
|
368 |
-
|
369 |
-
<
|
370 |
-
|
371 |
-
|
372 |
-
<
|
373 |
-
|
374 |
-
|
375 |
-
<
|
376 |
-
|
377 |
-
|
378 |
-
<
|
379 |
-
|
380 |
-
|
381 |
-
<
|
382 |
-
|
383 |
-
|
384 |
-
|
385 |
-
|
386 |
-
|
387 |
-
|
388 |
-
|
389 |
-
|
390 |
-
|
391 |
-
|
392 |
-
|
393 |
-
|
394 |
-
|
395 |
-
|
396 |
-
|
397 |
-
|
398 |
-
|
399 |
-
|
400 |
-
|
401 |
-
<
|
402 |
-
|
403 |
-
|
404 |
-
<
|
405 |
-
|
406 |
-
|
407 |
-
<
|
408 |
-
|
409 |
-
|
410 |
-
<
|
411 |
-
|
412 |
-
|
413 |
-
<
|
414 |
-
|
415 |
-
|
416 |
-
<
|
417 |
-
|
418 |
-
|
419 |
-
<
|
420 |
-
|
421 |
-
|
422 |
-
<
|
423 |
-
|
424 |
-
|
425 |
-
<
|
426 |
-
|
427 |
-
|
428 |
-
<
|
429 |
-
|
430 |
-
|
431 |
-
<
|
432 |
-
|
433 |
-
|
434 |
-
<
|
435 |
-
|
436 |
-
|
437 |
-
<
|
438 |
-
|
439 |
-
|
440 |
-
<
|
441 |
-
|
442 |
-
|
443 |
-
<
|
444 |
-
|
445 |
-
|
446 |
-
<
|
447 |
-
|
448 |
-
|
449 |
-
<
|
450 |
-
|
451 |
-
|
452 |
-
<
|
453 |
-
|
454 |
-
|
455 |
-
<
|
456 |
-
|
457 |
-
|
458 |
-
<
|
459 |
-
|
460 |
-
|
461 |
-
<
|
462 |
-
|
463 |
-
|
464 |
-
<
|
465 |
-
|
466 |
-
|
467 |
-
<
|
468 |
-
|
469 |
-
|
470 |
-
<
|
471 |
-
|
472 |
-
|
473 |
-
<
|
474 |
-
|
475 |
-
|
476 |
-
<
|
477 |
-
|
478 |
-
|
479 |
-
<
|
480 |
-
|
481 |
-
|
482 |
-
<
|
483 |
-
|
484 |
-
|
485 |
-
<
|
486 |
-
|
487 |
-
|
488 |
-
<
|
489 |
-
|
490 |
-
|
491 |
-
<
|
492 |
-
|
493 |
-
|
494 |
-
<
|
495 |
-
|
496 |
-
|
497 |
-
<
|
498 |
-
|
499 |
-
|
500 |
-
<
|
501 |
-
|
502 |
-
|
503 |
-
|
504 |
-
|
505 |
-
|
506 |
-
|
507 |
-
|
508 |
-
|
509 |
-
|
510 |
-
|
511 |
-
|
512 |
-
|
513 |
-
|
514 |
-
|
515 |
-
|
516 |
-
|
517 |
-
|
518 |
-
|
519 |
-
|
520 |
-
<
|
521 |
-
|
522 |
-
|
523 |
-
<
|
524 |
-
|
525 |
-
|
526 |
-
<
|
527 |
-
|
528 |
-
|
529 |
-
<
|
530 |
-
|
531 |
-
|
532 |
-
<
|
533 |
-
|
534 |
-
|
535 |
-
<
|
536 |
-
|
537 |
-
|
538 |
-
<
|
539 |
-
|
540 |
-
|
541 |
-
<
|
542 |
-
|
543 |
-
|
544 |
-
<
|
545 |
-
|
546 |
-
|
547 |
-
<
|
548 |
-
|
549 |
-
|
550 |
-
<
|
551 |
-
|
552 |
-
|
553 |
-
<
|
554 |
-
|
555 |
-
|
556 |
-
<
|
557 |
-
|
558 |
-
|
559 |
-
<
|
560 |
-
|
561 |
-
|
562 |
-
<
|
563 |
-
|
564 |
-
|
565 |
-
<
|
566 |
-
|
567 |
-
|
568 |
-
<
|
569 |
-
|
570 |
-
|
571 |
-
<
|
572 |
-
|
573 |
-
|
574 |
-
<
|
575 |
-
|
576 |
-
|
577 |
-
<
|
578 |
-
|
579 |
-
|
580 |
-
<
|
581 |
-
|
582 |
-
|
583 |
-
<
|
584 |
-
|
585 |
-
|
586 |
-
<
|
587 |
-
|
588 |
-
|
589 |
-
<
|
590 |
-
|
591 |
-
|
592 |
-
<
|
593 |
-
|
594 |
-
|
595 |
-
<
|
596 |
-
|
597 |
-
|
598 |
-
<
|
599 |
-
|
600 |
-
|
601 |
-
<
|
602 |
-
|
603 |
-
|
604 |
-
<
|
605 |
-
|
606 |
-
|
607 |
-
<
|
608 |
-
|
609 |
-
|
610 |
-
<
|
611 |
-
|
612 |
-
|
613 |
-
<
|
614 |
-
|
615 |
-
|
616 |
-
<
|
617 |
-
|
618 |
-
|
619 |
-
<
|
620 |
-
|
621 |
-
|
622 |
-
|
623 |
-
|
624 |
-
<li class="css3_grid_row_35 row_style_2 css3_grid_row_35_responsive align_center">
|
625 |
-
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><img src="http://tech-banker.com/wp-content/plugins/css3_web_pricing_tables_grids/img/tick_02.png" alt="yes"></span></span></span>
|
626 |
-
</li>
|
627 |
-
<li class="css3_grid_row_36 row_style_4 css3_grid_row_36_responsive align_center">
|
628 |
-
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><img src="http://tech-banker.com/wp-content/plugins/css3_web_pricing_tables_grids/img/tick_02.png" alt="yes"></span></span></span>
|
629 |
-
</li>
|
630 |
-
<li class="css3_grid_row_37 footer_row css3_grid_row_37_responsive">
|
631 |
-
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><a href="http://tech-banker.com/product/gallery-bank-developer-edition/" target="_blank" class="sign_up sign_up_yellow radius3">Order Now!</a></span></span>
|
632 |
-
</li>
|
633 |
-
</ul>
|
634 |
</div>
|
635 |
</div>
|
636 |
</div>
|
637 |
</div>
|
638 |
-
|
639 |
-
|
640 |
-
|
641 |
-
|
642 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
643 |
</form>
|
16 |
}
|
17 |
?>
|
18 |
<form id="gallery_bank_pricing" class="layout-form">
|
19 |
+
<div id="poststuff" style="width: 99% !important;">
|
20 |
+
<div id="post-body" class="metabox-holder columns-2">
|
21 |
+
<div id="postbox-container-2" class="postbox-container">
|
22 |
+
<div id="advanced" class="meta-box-sortables">
|
23 |
+
<div id="gallery_bank_get_started" class="postbox" >
|
24 |
+
<div class="handlediv" data-target="#ux_gallery_bank_pricing" title="Click to toggle" data-toggle="collapse"><br></div>
|
25 |
+
<h3 class="hndle"><span><?php _e("Gallery Bank Pricing", gallery_bank); ?></span></h3>
|
26 |
+
<div class="inside">
|
27 |
+
<div id="ux_gallery_bank_pricing" class="gallery_bank_layout">
|
28 |
+
<div class="wpb_wrapper" style="margin: 15px 0 15px 0;">
|
29 |
+
<div id="Table_t1_s11" class="p_table_responsive p_table_1 p_table_1_11 css3_grid_clearfix p_table_hover_disabled">
|
30 |
+
<div class="caption_column column_0_responsive">
|
31 |
+
<ul>
|
32 |
+
<li style="text-align: left;" class="css3_grid_row_0 header_row_1 align_center css3_grid_row_0_responsive radius5_topleft">
|
33 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"></span></span>
|
34 |
+
</li>
|
35 |
+
<li style="text-align: left;" class="css3_grid_row_1 header_row_2 css3_grid_row_1_responsive">
|
36 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><h2 class="caption">Choose <span>your</span> Plan</h2></span></span>
|
37 |
+
</li>
|
38 |
+
<li style="text-align: left;" class="css3_grid_row_2 row_style_4 css3_grid_row_2_responsive">
|
39 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><span class="css3_grid_tooltip"><span>Number of websites that can use the plugin on purchase of a License.</span>Domain per License</span></span></span></span>
|
40 |
+
</li>
|
41 |
+
<li style="text-align: left;" class="css3_grid_row_3 row_style_2 css3_grid_row_3_responsive">
|
42 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><span class="css3_grid_tooltip"><span>Automatic Plugin Update Notification with New Features, Bug Fixing and much more....</span><strong>Plugin Updates</strong></span></span></span></span>
|
43 |
+
</li>
|
44 |
+
<li style="text-align: left;" class="css3_grid_row_4 row_style_4 css3_grid_row_4_responsive">
|
45 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><span class="css3_grid_tooltip"><span>Technical Support by the Development Team for Installation, Bug Fixing, Plugin Compatibility Issues.</span><strong>Technical Support</strong></span></span></span></span>
|
46 |
+
</li>
|
47 |
+
<li style="text-align: left;" class="css3_grid_row_5 row_style_2 css3_grid_row_5_responsive">
|
48 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><span class="css3_grid_tooltip"><span>Multi-Lingual Facility allows the plugin to be used in 25 languages.</span>Multi-Lingual</span></span></span></span>
|
49 |
+
</li>
|
50 |
+
<li style="text-align: left;" class="css3_grid_row_6 row_style_4 css3_grid_row_6_responsive">
|
51 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><span class="css3_grid_tooltip"><span>Number of Albums allowed to be Published.</span>Number of Albums</span></span></span></span>
|
52 |
+
</li>
|
53 |
+
<li style="text-align: left;" class="css3_grid_row_7 row_style_2 css3_grid_row_7_responsive">
|
54 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><span class="css3_grid_tooltip"><span>Number of Images per Album allowed to be Published.</span>Images per Album</span></span></span></span>
|
55 |
+
</li>
|
56 |
+
<li style="text-align: left;" class="css3_grid_row_8 row_style_4 css3_grid_row_8_responsive">
|
57 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><span class="css3_grid_tooltip"><span>Optimal Viewing Experience across a wide range of devices.</span> Responsive Gallery</span></span></span></span>
|
58 |
+
</li>
|
59 |
+
<li style="text-align: left;" class="css3_grid_row_9 row_style_2 css3_grid_row_9_responsive">
|
60 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><span class="css3_grid_tooltip"><span>Shortcode Wizard to easily insert albums/images to any Page/Post.</span>Shortcode Wizard</span></span></span></span>
|
61 |
+
</li>
|
62 |
+
<li style="text-align: left;" class="css3_grid_row_10 row_style_4 css3_grid_row_10_responsive">
|
63 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><span class="css3_grid_tooltip"><span>Bulk Upload of Images in single time.</span>Bulk Upload of Images</span></span></span></span>
|
64 |
+
</li>
|
65 |
+
<li style="text-align: left;" class="css3_grid_row_11 row_style_2 css3_grid_row_11_responsive">
|
66 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><span class="css3_grid_tooltip"><span>Lightbox is a script used to overlay images on the current page. It's a snap to setup and works on all modern browsers.</span>Lightbox</span></span></span></span>
|
67 |
+
</li>
|
68 |
+
<li style="text-align: left;" class="css3_grid_row_12 row_style_4 css3_grid_row_12_responsive">
|
69 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><span class="css3_grid_tooltip"><span>Basic Thumbnail gallery is a grid of images that when clicked on, open in a pop-up full view.</span>Basic Thumbnail Gallery</span></span></span></span>
|
70 |
+
</li>
|
71 |
+
<li style="text-align: left;" class="css3_grid_row_13 row_style_2 css3_grid_row_13_responsive">
|
72 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><span class="css3_grid_tooltip"><span>Displays images inside of the album is in a Grid Format.</span>Grid Album Format</span></span></span></span>
|
73 |
+
</li>
|
74 |
+
<li style="text-align: left;" class="css3_grid_row_14 row_style_4 css3_grid_row_14_responsive">
|
75 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><span class="css3_grid_tooltip"><span>Each thumbnail in the Compact Album links to the gallery you include in your album, along with the title of the gallery with the amount of images per gallery.</span>Compact Album</span></span></span></span>
|
76 |
+
</li>
|
77 |
+
<li style="text-align: left;" class="css3_grid_row_15 row_style_2 css3_grid_row_15_responsive">
|
78 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><span class="css3_grid_tooltip"><span>Extended Album displays as a list, with thumbnails to the left. Alongside the right of the thumbnail is the title and description of the gallery and amount of images within the gallery.</span>Extended Album</span></span></span></span>
|
79 |
+
</li>
|
80 |
+
<li style="text-align: left;" class="css3_grid_row_16 row_style_4 css3_grid_row_16_responsive">
|
81 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><span class="css3_grid_tooltip"><span>Masonry is a JavaScript grid layout library. It works by placing elements in optimal position based on available vertical space.</span>Masonry Gallery Format </span></span></span></span>
|
82 |
+
</li>
|
83 |
+
<li style="text-align: left;" class="css3_grid_row_17 row_style_2 css3_grid_row_17_responsive">
|
84 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><span class="css3_grid_tooltip"><span>Cool slide-film style galleries – great for displaying non-cropped thumbnails in clean grids.</span>Filmstrip Gallery Format</span></span></span></span>
|
85 |
+
</li>
|
86 |
+
<li style="text-align: left;" class="css3_grid_row_18 row_style_4 css3_grid_row_18_responsive">
|
87 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><span class="css3_grid_tooltip"><span>Vertically stacked, thumbnails images common to photography blogs.</span>Blog Style Gallery Format</span></span></span></span>
|
88 |
+
</li>
|
89 |
+
<li style="text-align: left;" class="css3_grid_row_19 row_style_2 css3_grid_row_19_responsive">
|
90 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><span class="css3_grid_tooltip"><span>Vertically stacked album covers with title and description.</span>List Album Format</span></span></span></span>
|
91 |
+
</li>
|
92 |
+
<li style="text-align: left;" class="css3_grid_row_20 row_style_4 css3_grid_row_20_responsive">
|
93 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><span class="css3_grid_tooltip"><span>Mobile-friendly, non-flash slideshows with nice transitions.</span>Slideshow Gallery</span></span></span></span>
|
94 |
+
</li>
|
95 |
+
<li style="text-align: left;" class="css3_grid_row_21 row_style_2 css3_grid_row_21_responsive">
|
96 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><span class="css3_grid_tooltip"><span>You can give your photos and videos a "tag", which is like a keyword or category label.</span>Tags</span></span></span></span>
|
97 |
+
</li>
|
98 |
+
<li style="text-align: left;" class="css3_grid_row_22 row_style_4 css3_grid_row_22_responsive">
|
99 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><span class="css3_grid_tooltip"><span>You can upload video links from Youtube, Vimeo and other supportive Media Sharing sites</span>Videos</span></span></span></span>
|
100 |
+
</li>
|
101 |
+
<li style="text-align: left;" class="css3_grid_row_23 row_style_2 css3_grid_row_23_responsive">
|
102 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><span class="css3_grid_tooltip"><span>Settings for Image Thumbnails, Lightbox, Albums, Layout and much more.</span>Global Settings</span></span></span></span>
|
103 |
+
</li>
|
104 |
+
<li style="text-align: left;" class="css3_grid_row_24 row_style_4 css3_grid_row_24_responsive">
|
105 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><span class="css3_grid_tooltip"><span>Allowed to customize thumbnails with any size suitable for you. This may howerver disort the image if not used with TimThumb.</span>Custom Size Thumbnails</span></span></span></span>
|
106 |
+
</li>
|
107 |
+
<li style="text-align: left;" class="css3_grid_row_25 row_style_2 css3_grid_row_25_responsive">
|
108 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><span class="css3_grid_tooltip"><span>TimThumb is a simple, flexible, PHP script that re-sizes images.</span>TimThumb Script</span></span></span></span>
|
109 |
+
</li>
|
110 |
+
<li style="text-align: left;" class="css3_grid_row_26 row_style_4 css3_grid_row_26_responsive">
|
111 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><span class="css3_grid_tooltip"><span>Pagination allows number of images allowed on a single page and provide navigation for the rest.</span>Pagination for Images</span></span></span></span>
|
112 |
+
</li>
|
113 |
+
<li style="text-align: left;" class="css3_grid_row_27 row_style_2 css3_grid_row_27_responsive">
|
114 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><span class="css3_grid_tooltip"><span>Pagination allows number of albums allowed on a single page and provide navigation for the rest.</span>Pagination for Albums</span></span></span></span>
|
115 |
+
</li>
|
116 |
+
<li style="text-align: left;" class="css3_grid_row_28 row_style_4 css3_grid_row_28_responsive">
|
117 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><span class="css3_grid_tooltip"><span>Sorting of Image allows to re-order images according to different parameters so as per user choice by simply dragging and dropping it.</span>Sorting of Images</span></span></span></span>
|
118 |
+
</li>
|
119 |
+
<li style="text-align: left;" class="css3_grid_row_29 row_style_2 css3_grid_row_29_responsive">
|
120 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><span class="css3_grid_tooltip"><span>Sorting of Albums allows to re-order images according to different parameters so as per user choice by simply dragging and dropping it.</span>Sorting of Albums</span></span></span></span>
|
121 |
+
</li>
|
122 |
+
<li style="text-align: left;" class="css3_grid_row_30 row_style_4 css3_grid_row_30_responsive">
|
123 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><span class="css3_grid_tooltip"><span>Special Effects to impliment on Thumbnails.</span>Special Effects</span></span></span></span>
|
124 |
+
</li>
|
125 |
+
<li style="text-align: left;" class="css3_grid_row_31 row_style_2 css3_grid_row_31_responsive">
|
126 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><span class="css3_grid_tooltip"><span>You can choose Pretty Photo, ColorBox, Photo Swipe, Foo Box, Fancy Box, Lightbox 2, GB Lightbox for display of Images.</span>Different Lightboxes</span></span></span></span>
|
127 |
+
</li>
|
128 |
+
<li style="text-align: left;" class="css3_grid_row_32 row_style_4 css3_grid_row_32_responsive">
|
129 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><span class="css3_grid_tooltip"><span>Social Sharing makes easy to share your images across social networks with one click.</span>Social Sharing</span></span></span></span>
|
130 |
+
</li>
|
131 |
+
<li style="text-align: left;" class="css3_grid_row_33 row_style_2 css3_grid_row_33_responsive">
|
132 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><span class="css3_grid_tooltip"><span>Commenting on Images allows your users to post comments on images.</span>Commenting on Images</span></span></span></span>
|
133 |
+
</li>
|
134 |
+
<li style="text-align: left;" class="css3_grid_row_34 row_style_4 css3_grid_row_34_responsive">
|
135 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><span class="css3_grid_tooltip"><span>Widgets allows albums and images to be shown in your sidebar, footer, header etc.</span>Widgets</span></span></span></span>
|
136 |
+
</li>
|
137 |
+
<li style="text-align: left;" class="css3_grid_row_35 row_style_2 css3_grid_row_35_responsive">
|
138 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><span class="css3_grid_tooltip"><span>It allows to delete bulk deletion of images and albums on a single click.</span>Bulk Deletion</span></span></span></span>
|
139 |
+
</li>
|
140 |
+
<li style="text-align: left;" class="css3_grid_row_36 row_style_4 css3_grid_row_36_responsive">
|
141 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><span class="css3_grid_tooltip"><span>Purging of albums is used to hard delete the images and thumbnails from the server which are not used anymore.</span>Purging of Albums</span></span></span></span>
|
142 |
+
</li>
|
143 |
+
<li style="text-align: left;" class="css3_grid_row_37 footer_row css3_grid_row_37_responsive">
|
144 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"></span></span>
|
145 |
+
</li>
|
146 |
+
</ul>
|
147 |
+
</div>
|
148 |
+
<div class="column_1 column_1_responsive">
|
149 |
+
<div class="column_ribbon ribbon_style1_free"></div>
|
150 |
+
<ul>
|
151 |
+
<li style="text-align: center;" class="css3_grid_row_0 header_row_1 align_center css3_grid_row_0_responsive">
|
152 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><h2 class="col1">Standard</h2></span></span>
|
153 |
+
</li>
|
154 |
+
<li style="text-align: center;" class="css3_grid_row_1 header_row_2 css3_grid_row_1_responsive align_center">
|
155 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><h1 class="col1"><span>FREE</span></h1><h3 class="col1">one time</h3></span></span>
|
156 |
+
</li>
|
157 |
+
<li style="text-align: center;" class="css3_grid_row_2 row_style_3 css3_grid_row_2_responsive align_center">
|
158 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span>1</span></span></span>
|
159 |
+
</li>
|
160 |
+
<li style="text-align: center;" class="css3_grid_row_3 row_style_1 css3_grid_row_3_responsive align_center">
|
161 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><img src="http://tech-banker.com/wp-content/plugins/css3_web_pricing_tables_grids/img/cross_02.png" alt="no"></span></span></span>
|
162 |
+
</li>
|
163 |
+
<li style="text-align: center;" class="css3_grid_row_4 row_style_3 css3_grid_row_4_responsive align_center">
|
164 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><img src="http://tech-banker.com/wp-content/plugins/css3_web_pricing_tables_grids/img/cross_02.png" alt="no"></span></span></span>
|
165 |
+
</li>
|
166 |
+
<li style="text-align: center;" class="css3_grid_row_5 row_style_1 css3_grid_row_5_responsive align_center">
|
167 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><img src="http://tech-banker.com/wp-content/plugins/css3_web_pricing_tables_grids/img/tick_02.png" alt="yes"></span></span></span>
|
168 |
+
</li>
|
169 |
+
<li style="text-align: center;" class="css3_grid_row_6 row_style_3 css3_grid_row_6_responsive align_center">
|
170 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span>2</span></span></span>
|
171 |
+
</li>
|
172 |
+
<li style="text-align: center;" class="css3_grid_row_7 row_style_1 css3_grid_row_7_responsive align_center">
|
173 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span>Unlimited</span></span></span>
|
174 |
+
</li>
|
175 |
+
<li style="text-align: center;" class="css3_grid_row_8 row_style_3 css3_grid_row_8_responsive align_center">
|
176 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><img src="http://tech-banker.com/wp-content/plugins/css3_web_pricing_tables_grids/img/tick_02.png" alt="yes"></span></span></span>
|
177 |
+
</li>
|
178 |
+
<li style="text-align: center;" class="css3_grid_row_9 row_style_1 css3_grid_row_9_responsive align_center">
|
179 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><img src="http://tech-banker.com/wp-content/plugins/css3_web_pricing_tables_grids/img/tick_02.png" alt="yes"></span></span></span>
|
180 |
+
</li>
|
181 |
+
<li style="text-align: center;" class="css3_grid_row_10 row_style_3 css3_grid_row_10_responsive align_center">
|
182 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><img src="http://tech-banker.com/wp-content/plugins/css3_web_pricing_tables_grids/img/tick_02.png" alt="yes"></span></span></span>
|
183 |
+
</li>
|
184 |
+
<li style="text-align: center;" class="css3_grid_row_11 row_style_1 css3_grid_row_11_responsive align_center">
|
185 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><img src="http://tech-banker.com/wp-content/plugins/css3_web_pricing_tables_grids/img/tick_02.png" alt="yes"></span></span></span>
|
186 |
+
</li>
|
187 |
+
<li style="text-align: center;" class="css3_grid_row_12 row_style_3 css3_grid_row_12_responsive align_center">
|
188 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><img src="http://tech-banker.com/wp-content/plugins/css3_web_pricing_tables_grids/img/tick_02.png" alt="yes"></span></span></span>
|
189 |
+
</li>
|
190 |
+
<li style="text-align: center;" class="css3_grid_row_13 row_style_1 css3_grid_row_13_responsive align_center">
|
191 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><img src="http://tech-banker.com/wp-content/plugins/css3_web_pricing_tables_grids/img/tick_02.png" alt="yes"></span></span></span>
|
192 |
+
</li>
|
193 |
+
<li style="text-align: center;" class="css3_grid_row_14 row_style_3 css3_grid_row_14_responsive align_center">
|
194 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><img src="http://tech-banker.com/wp-content/plugins/css3_web_pricing_tables_grids/img/tick_02.png" alt="yes"></span></span></span>
|
195 |
+
</li>
|
196 |
+
<li style="text-align: center;" class="css3_grid_row_15 row_style_1 css3_grid_row_15_responsive align_center">
|
197 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><img src="http://tech-banker.com/wp-content/plugins/css3_web_pricing_tables_grids/img/tick_02.png" alt="yes"></span></span></span>
|
198 |
+
</li>
|
199 |
+
<li style="text-align: center;" class="css3_grid_row_16 row_style_3 css3_grid_row_16_responsive align_center">
|
200 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><img src="http://tech-banker.com/wp-content/plugins/css3_web_pricing_tables_grids/img/cross_02.png" alt="no"></span></span></span>
|
201 |
+
</li>
|
202 |
+
<li style="text-align: center;" class="css3_grid_row_17 row_style_1 css3_grid_row_17_responsive align_center">
|
203 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><img src="http://tech-banker.com/wp-content/plugins/css3_web_pricing_tables_grids/img/cross_02.png" alt="no"></span></span></span>
|
204 |
+
</li>
|
205 |
+
<li style="text-align: center;" class="css3_grid_row_18 row_style_3 css3_grid_row_18_responsive align_center">
|
206 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><img src="http://tech-banker.com/wp-content/plugins/css3_web_pricing_tables_grids/img/cross_02.png" alt="no"></span></span></span>
|
207 |
+
</li>
|
208 |
+
<li style="text-align: center;" class="css3_grid_row_19 row_style_1 css3_grid_row_19_responsive align_center">
|
209 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><img src="http://tech-banker.com/wp-content/plugins/css3_web_pricing_tables_grids/img/cross_02.png" alt="no"></span></span></span>
|
210 |
+
</li>
|
211 |
+
<li style="text-align: center;" class="css3_grid_row_20 row_style_3 css3_grid_row_20_responsive align_center">
|
212 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><img src="http://tech-banker.com/wp-content/plugins/css3_web_pricing_tables_grids/img/cross_02.png" alt="no"></span></span></span>
|
213 |
+
</li>
|
214 |
+
<li style="text-align: center;" class="css3_grid_row_21 row_style_1 css3_grid_row_21_responsive align_center">
|
215 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><img src="http://tech-banker.com/wp-content/plugins/css3_web_pricing_tables_grids/img/cross_02.png" alt="no"></span></span></span>
|
216 |
+
</li>
|
217 |
+
<li style="text-align: center;" class="css3_grid_row_22 row_style_3 css3_grid_row_22_responsive align_center">
|
218 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><img src="http://tech-banker.com/wp-content/plugins/css3_web_pricing_tables_grids/img/cross_02.png" alt="no"></span></span></span>
|
219 |
+
</li>
|
220 |
+
<li style="text-align: center;" class="css3_grid_row_23 row_style_1 css3_grid_row_23_responsive align_center">
|
221 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><img src="http://tech-banker.com/wp-content/plugins/css3_web_pricing_tables_grids/img/cross_02.png" alt="no"></span></span></span>
|
222 |
+
</li>
|
223 |
+
<li style="text-align: center;" class="css3_grid_row_24 row_style_3 css3_grid_row_24_responsive align_center">
|
224 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><img src="http://tech-banker.com/wp-content/plugins/css3_web_pricing_tables_grids/img/cross_02.png" alt="no"></span></span></span>
|
225 |
+
</li>
|
226 |
+
<li style="text-align: center;" class="css3_grid_row_25 row_style_1 css3_grid_row_25_responsive align_center">
|
227 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><img src="http://tech-banker.com/wp-content/plugins/css3_web_pricing_tables_grids/img/cross_02.png" alt="no"></span></span></span>
|
228 |
+
</li>
|
229 |
+
<li style="text-align: center;" class="css3_grid_row_26 row_style_3 css3_grid_row_26_responsive align_center">
|
230 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><img src="http://tech-banker.com/wp-content/plugins/css3_web_pricing_tables_grids/img/cross_02.png" alt="no"></span></span></span>
|
231 |
+
</li>
|
232 |
+
<li style="text-align: center;" class="css3_grid_row_27 row_style_1 css3_grid_row_27_responsive align_center">
|
233 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><img src="http://tech-banker.com/wp-content/plugins/css3_web_pricing_tables_grids/img/cross_02.png" alt="no"></span></span></span>
|
234 |
+
</li>
|
235 |
+
<li style="text-align: center;" class="css3_grid_row_28 row_style_3 css3_grid_row_28_responsive align_center">
|
236 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><img src="http://tech-banker.com/wp-content/plugins/css3_web_pricing_tables_grids/img/cross_02.png" alt="no"></span></span></span>
|
237 |
+
</li>
|
238 |
+
<li style="text-align: center;" class="css3_grid_row_29 row_style_1 css3_grid_row_29_responsive align_center">
|
239 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><img src="http://tech-banker.com/wp-content/plugins/css3_web_pricing_tables_grids/img/cross_02.png" alt="no"></span></span></span>
|
240 |
+
</li>
|
241 |
+
<li style="text-align: center;" class="css3_grid_row_30 row_style_3 css3_grid_row_30_responsive align_center">
|
242 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><img src="http://tech-banker.com/wp-content/plugins/css3_web_pricing_tables_grids/img/cross_02.png" alt="no"></span></span></span>
|
243 |
+
</li>
|
244 |
+
<li style="text-align: center;" class="css3_grid_row_31 row_style_1 css3_grid_row_31_responsive align_center">
|
245 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><img src="http://tech-banker.com/wp-content/plugins/css3_web_pricing_tables_grids/img/cross_02.png" alt="no"></span></span></span>
|
246 |
+
</li>
|
247 |
+
<li style="text-align: center;" class="css3_grid_row_32 row_style_3 css3_grid_row_32_responsive align_center">
|
248 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><img src="http://tech-banker.com/wp-content/plugins/css3_web_pricing_tables_grids/img/cross_02.png" alt="no"></span></span></span>
|
249 |
+
</li>
|
250 |
+
<li style="text-align: center;" class="css3_grid_row_33 row_style_1 css3_grid_row_33_responsive align_center">
|
251 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><img src="http://tech-banker.com/wp-content/plugins/css3_web_pricing_tables_grids/img/cross_02.png" alt="no"></span></span></span>
|
252 |
+
</li>
|
253 |
+
<li style="text-align: center;" class="css3_grid_row_34 row_style_3 css3_grid_row_34_responsive align_center">
|
254 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><img src="http://tech-banker.com/wp-content/plugins/css3_web_pricing_tables_grids/img/cross_02.png" alt="no"></span></span></span>
|
255 |
+
</li>
|
256 |
+
<li style="text-align: center;" class="css3_grid_row_35 row_style_1 css3_grid_row_35_responsive align_center">
|
257 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><img src="http://tech-banker.com/wp-content/plugins/css3_web_pricing_tables_grids/img/cross_02.png" alt="no"></span></span></span>
|
258 |
+
</li>
|
259 |
+
<li style="text-align: center;" class="css3_grid_row_36 row_style_3 css3_grid_row_36_responsive align_center">
|
260 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><img src="http://tech-banker.com/wp-content/plugins/css3_web_pricing_tables_grids/img/cross_02.png" alt="no"></span></span></span>
|
261 |
+
</li>
|
262 |
+
<li style="text-align: center;" class="css3_grid_row_37 footer_row css3_grid_row_37_responsive">
|
263 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><a href="http://wordpress.org/plugins/gallery-bank/" target="_blank" class="sign_up sign_up_orange radius3">Download Now!!</a></span></span>
|
264 |
+
</li>
|
265 |
+
</ul>
|
266 |
+
</div>
|
267 |
+
<div class="column_2 column_2_responsive">
|
268 |
+
<div class="column_ribbon ribbon_style1_save"></div>
|
269 |
+
<ul>
|
270 |
+
<li style="text-align: center;" class="css3_grid_row_0 header_row_1 align_center css3_grid_row_0_responsive">
|
271 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><h2 class="col2">Eco</h2></span></span>
|
272 |
+
</li>
|
273 |
+
<li style="text-align: center;" class="css3_grid_row_1 header_row_2 css3_grid_row_1_responsive align_center">
|
274 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><h1 class="col1"> £<span>10</span></h1><h3 class="col1">one time</h3></span></span>
|
275 |
+
</li>
|
276 |
+
<li style="text-align: center;" class="css3_grid_row_2 row_style_4 css3_grid_row_2_responsive align_center">
|
277 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span>1</span></span></span>
|
278 |
+
</li>
|
279 |
+
<li style="text-align: center;" class="css3_grid_row_3 row_style_2 css3_grid_row_3_responsive align_center">
|
280 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><img src="http://tech-banker.com/wp-content/plugins/css3_web_pricing_tables_grids/img/cross_02.png" alt="no"></span></span></span>
|
281 |
+
</li>
|
282 |
+
<li style="text-align: center;" class="css3_grid_row_4 row_style_4 css3_grid_row_4_responsive align_center">
|
283 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span>1 Week</span></span></span>
|
284 |
+
</li>
|
285 |
+
<li style="text-align: center;" class="css3_grid_row_5 row_style_2 css3_grid_row_5_responsive align_center">
|
286 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><img src="http://tech-banker.com/wp-content/plugins/css3_web_pricing_tables_grids/img/tick_02.png" alt="yes"></span></span></span>
|
287 |
+
</li>
|
288 |
+
<li style="text-align: center;" class="css3_grid_row_6 row_style_4 css3_grid_row_6_responsive align_center">
|
289 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span>Unlimited</span></span></span>
|
290 |
+
</li>
|
291 |
+
<li style="text-align: center;" class="css3_grid_row_7 row_style_2 css3_grid_row_7_responsive align_center">
|
292 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span>Unlimited</span></span></span>
|
293 |
+
</li>
|
294 |
+
<li style="text-align: center;" class="css3_grid_row_8 row_style_4 css3_grid_row_8_responsive align_center">
|
295 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><img src="http://tech-banker.com/wp-content/plugins/css3_web_pricing_tables_grids/img/tick_02.png" alt="yes"></span></span></span>
|
296 |
+
</li>
|
297 |
+
<li style="text-align: center;" class="css3_grid_row_9 row_style_2 css3_grid_row_9_responsive align_center">
|
298 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><img src="http://tech-banker.com/wp-content/plugins/css3_web_pricing_tables_grids/img/tick_02.png" alt="yes"></span></span></span>
|
299 |
+
</li>
|
300 |
+
<li style="text-align: center;" class="css3_grid_row_10 row_style_4 css3_grid_row_10_responsive align_center">
|
301 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><img src="http://tech-banker.com/wp-content/plugins/css3_web_pricing_tables_grids/img/tick_02.png" alt="yes"></span></span></span>
|
302 |
+
</li>
|
303 |
+
<li style="text-align: center;" class="css3_grid_row_11 row_style_2 css3_grid_row_11_responsive align_center">
|
304 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><img src="http://tech-banker.com/wp-content/plugins/css3_web_pricing_tables_grids/img/tick_02.png" alt="yes"></span></span></span>
|
305 |
+
</li>
|
306 |
+
<li style="text-align: center;" class="css3_grid_row_12 row_style_4 css3_grid_row_12_responsive align_center">
|
307 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><img src="http://tech-banker.com/wp-content/plugins/css3_web_pricing_tables_grids/img/tick_02.png" alt="yes"></span></span></span>
|
308 |
+
</li>
|
309 |
+
<li style="text-align: center;" class="css3_grid_row_13 row_style_2 css3_grid_row_13_responsive align_center">
|
310 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><img src="http://tech-banker.com/wp-content/plugins/css3_web_pricing_tables_grids/img/tick_02.png" alt="yes"></span></span></span>
|
311 |
+
</li>
|
312 |
+
<li style="text-align: center;" class="css3_grid_row_14 row_style_4 css3_grid_row_14_responsive align_center">
|
313 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><img src="http://tech-banker.com/wp-content/plugins/css3_web_pricing_tables_grids/img/tick_02.png" alt="yes"></span></span></span>
|
314 |
+
</li>
|
315 |
+
<li style="text-align: center;" class="css3_grid_row_15 row_style_2 css3_grid_row_15_responsive align_center">
|
316 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><img src="http://tech-banker.com/wp-content/plugins/css3_web_pricing_tables_grids/img/tick_02.png" alt="yes"></span></span></span>
|
317 |
+
</li>
|
318 |
+
<li style="text-align: center;" class="css3_grid_row_16 row_style_4 css3_grid_row_16_responsive align_center">
|
319 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><img src="http://tech-banker.com/wp-content/plugins/css3_web_pricing_tables_grids/img/tick_02.png" alt="yes"></span></span></span>
|
320 |
+
</li>
|
321 |
+
<li style="text-align: center;" class="css3_grid_row_17 row_style_2 css3_grid_row_17_responsive align_center">
|
322 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><img src="http://tech-banker.com/wp-content/plugins/css3_web_pricing_tables_grids/img/tick_02.png" alt="yes"></span></span></span>
|
323 |
+
</li>
|
324 |
+
<li style="text-align: center;" class="css3_grid_row_18 row_style_4 css3_grid_row_18_responsive align_center">
|
325 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><img src="http://tech-banker.com/wp-content/plugins/css3_web_pricing_tables_grids/img/tick_02.png" alt="yes"></span></span></span>
|
326 |
+
</li>
|
327 |
+
<li style="text-align: center;" class="css3_grid_row_19 row_style_2 css3_grid_row_19_responsive align_center">
|
328 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><img src="http://tech-banker.com/wp-content/plugins/css3_web_pricing_tables_grids/img/tick_02.png" alt="yes"></span></span></span>
|
329 |
+
</li>
|
330 |
+
<li style="text-align: center;" class="css3_grid_row_20 row_style_4 css3_grid_row_20_responsive align_center">
|
331 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><img src="http://tech-banker.com/wp-content/plugins/css3_web_pricing_tables_grids/img/tick_02.png" alt="yes"></span></span></span>
|
332 |
+
</li>
|
333 |
+
<li style="text-align: center;" class="css3_grid_row_21 row_style_2 css3_grid_row_21_responsive align_center">
|
334 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><img src="http://tech-banker.com/wp-content/plugins/css3_web_pricing_tables_grids/img/tick_02.png" alt="yes"></span></span></span>
|
335 |
+
</li>
|
336 |
+
<li style="text-align: center;" class="css3_grid_row_22 row_style_4 css3_grid_row_22_responsive align_center">
|
337 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><img src="http://tech-banker.com/wp-content/plugins/css3_web_pricing_tables_grids/img/tick_02.png" alt="yes"></span></span></span>
|
338 |
+
</li>
|
339 |
+
<li style="text-align: center;" class="css3_grid_row_23 row_style_2 css3_grid_row_23_responsive align_center">
|
340 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><img src="http://tech-banker.com/wp-content/plugins/css3_web_pricing_tables_grids/img/tick_02.png" alt="yes"></span></span></span>
|
341 |
+
</li>
|
342 |
+
<li style="text-align: center;" class="css3_grid_row_24 row_style_4 css3_grid_row_24_responsive align_center">
|
343 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><img src="http://tech-banker.com/wp-content/plugins/css3_web_pricing_tables_grids/img/tick_02.png" alt="yes"></span></span></span>
|
344 |
+
</li>
|
345 |
+
<li style="text-align: center;" class="css3_grid_row_25 row_style_2 css3_grid_row_25_responsive align_center">
|
346 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><img src="http://tech-banker.com/wp-content/plugins/css3_web_pricing_tables_grids/img/tick_02.png" alt="yes"></span></span></span>
|
347 |
+
</li>
|
348 |
+
<li style="text-align: center;" class="css3_grid_row_26 row_style_4 css3_grid_row_26_responsive align_center">
|
349 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><img src="http://tech-banker.com/wp-content/plugins/css3_web_pricing_tables_grids/img/tick_02.png" alt="yes"></span></span></span>
|
350 |
+
</li>
|
351 |
+
<li style="text-align: center;" class="css3_grid_row_27 row_style_2 css3_grid_row_27_responsive align_center">
|
352 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><img src="http://tech-banker.com/wp-content/plugins/css3_web_pricing_tables_grids/img/tick_02.png" alt="yes"></span></span></span>
|
353 |
+
</li>
|
354 |
+
<li style="text-align: center;" class="css3_grid_row_28 row_style_4 css3_grid_row_28_responsive align_center">
|
355 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><img src="http://tech-banker.com/wp-content/plugins/css3_web_pricing_tables_grids/img/tick_02.png" alt="yes"></span></span></span>
|
356 |
+
</li>
|
357 |
+
<li style="text-align: center;" class="css3_grid_row_29 row_style_2 css3_grid_row_29_responsive align_center">
|
358 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><img src="http://tech-banker.com/wp-content/plugins/css3_web_pricing_tables_grids/img/tick_02.png" alt="yes"></span></span></span>
|
359 |
+
</li>
|
360 |
+
<li style="text-align: center;" class="css3_grid_row_30 row_style_4 css3_grid_row_30_responsive align_center">
|
361 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><img src="http://tech-banker.com/wp-content/plugins/css3_web_pricing_tables_grids/img/tick_02.png" alt="yes"></span></span></span>
|
362 |
+
</li>
|
363 |
+
<li style="text-align: center;" class="css3_grid_row_31 row_style_2 css3_grid_row_31_responsive align_center">
|
364 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><img src="http://tech-banker.com/wp-content/plugins/css3_web_pricing_tables_grids/img/cross_02.png" alt="no"></span></span></span>
|
365 |
+
</li>
|
366 |
+
<li style="text-align: center;" class="css3_grid_row_32 row_style_4 css3_grid_row_32_responsive align_center">
|
367 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><img src="http://tech-banker.com/wp-content/plugins/css3_web_pricing_tables_grids/img/cross_02.png" alt="no"></span></span></span>
|
368 |
+
</li>
|
369 |
+
<li style="text-align: center;" class="css3_grid_row_33 row_style_2 css3_grid_row_33_responsive align_center">
|
370 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><img src="http://tech-banker.com/wp-content/plugins/css3_web_pricing_tables_grids/img/cross_02.png" alt="no"></span></span></span>
|
371 |
+
</li>
|
372 |
+
<li style="text-align: center;" class="css3_grid_row_34 row_style_4 css3_grid_row_34_responsive align_center">
|
373 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><img src="http://tech-banker.com/wp-content/plugins/css3_web_pricing_tables_grids/img/cross_02.png" alt="no"></span></span></span>
|
374 |
+
</li>
|
375 |
+
<li style="text-align: center;" class="css3_grid_row_35 row_style_2 css3_grid_row_35_responsive align_center">
|
376 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><img src="http://tech-banker.com/wp-content/plugins/css3_web_pricing_tables_grids/img/cross_02.png" alt="no"></span></span></span>
|
377 |
+
</li>
|
378 |
+
<li style="text-align: center;" class="css3_grid_row_36 row_style_4 css3_grid_row_36_responsive align_center">
|
379 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><img src="http://tech-banker.com/wp-content/plugins/css3_web_pricing_tables_grids/img/cross_02.png" alt="no"></span></span></span>
|
380 |
+
</li>
|
381 |
+
<li style="text-align: center;" class="css3_grid_row_37 footer_row css3_grid_row_37_responsive">
|
382 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><a href="http://tech-banker.com/product/gallery-bank-eco-edition/" target="_blank" class="sign_up sign_up_yellow radius3">Order Now!</a></span></span>
|
383 |
+
</li>
|
384 |
+
</ul>
|
385 |
+
</div>
|
386 |
+
<div class="column_3 column_3_responsive">
|
387 |
+
<div class="column_ribbon ribbon_style2_best"></div>
|
388 |
+
<ul>
|
389 |
+
<li style="text-align: center;" class="css3_grid_row_0 header_row_1 align_center css3_grid_row_0_responsive">
|
390 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><h2 class="col1">Pro</h2></span></span>
|
391 |
+
</li>
|
392 |
+
<li style="text-align: center;" class="css3_grid_row_1 header_row_2 css3_grid_row_1_responsive align_center">
|
393 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><h1 class="col1"> £<span>16</span></h1><h3 class="col1">one time</h3></span></span>
|
394 |
+
</li>
|
395 |
+
<li style="text-align: center;" class="css3_grid_row_2 row_style_3 css3_grid_row_2_responsive align_center">
|
396 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span>1</span></span></span>
|
397 |
+
</li>
|
398 |
+
<li style="text-align: center;" class="css3_grid_row_3 row_style_1 css3_grid_row_3_responsive align_center">
|
399 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><img src="http://tech-banker.com/wp-content/plugins/css3_web_pricing_tables_grids/img/tick_02.png" alt="yes"></span></span></span>
|
400 |
+
</li>
|
401 |
+
<li style="text-align: center;" class="css3_grid_row_4 row_style_3 css3_grid_row_4_responsive align_center">
|
402 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span>1 Month </span></span></span>
|
403 |
+
</li>
|
404 |
+
<li style="text-align: center;" class="css3_grid_row_5 row_style_1 css3_grid_row_5_responsive align_center">
|
405 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><img src="http://tech-banker.com/wp-content/plugins/css3_web_pricing_tables_grids/img/tick_02.png" alt="yes"></span></span></span>
|
406 |
+
</li>
|
407 |
+
<li style="text-align: center;" class="css3_grid_row_6 row_style_3 css3_grid_row_6_responsive align_center">
|
408 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span>Unlimited</span></span></span>
|
409 |
+
</li>
|
410 |
+
<li style="text-align: center;" class="css3_grid_row_7 row_style_1 css3_grid_row_7_responsive align_center">
|
411 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span>Unlimited</span></span></span>
|
412 |
+
</li>
|
413 |
+
<li style="text-align: center;" class="css3_grid_row_8 row_style_3 css3_grid_row_8_responsive align_center">
|
414 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><img src="http://tech-banker.com/wp-content/plugins/css3_web_pricing_tables_grids/img/tick_02.png" alt="yes"></span></span></span>
|
415 |
+
</li>
|
416 |
+
<li style="text-align: center;" class="css3_grid_row_9 row_style_1 css3_grid_row_9_responsive align_center">
|
417 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><img src="http://tech-banker.com/wp-content/plugins/css3_web_pricing_tables_grids/img/tick_02.png" alt="yes"></span></span></span>
|
418 |
+
</li>
|
419 |
+
<li style="text-align: center;" class="css3_grid_row_10 row_style_3 css3_grid_row_10_responsive align_center">
|
420 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><img src="http://tech-banker.com/wp-content/plugins/css3_web_pricing_tables_grids/img/tick_02.png" alt="yes"></span></span></span>
|
421 |
+
</li>
|
422 |
+
<li style="text-align: center;" class="css3_grid_row_11 row_style_1 css3_grid_row_11_responsive align_center">
|
423 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><img src="http://tech-banker.com/wp-content/plugins/css3_web_pricing_tables_grids/img/tick_02.png" alt="yes"></span></span></span>
|
424 |
+
</li>
|
425 |
+
<li style="text-align: center;" class="css3_grid_row_12 row_style_3 css3_grid_row_12_responsive align_center">
|
426 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><img src="http://tech-banker.com/wp-content/plugins/css3_web_pricing_tables_grids/img/tick_02.png" alt="yes"></span></span></span>
|
427 |
+
</li>
|
428 |
+
<li style="text-align: center;" class="css3_grid_row_13 row_style_1 css3_grid_row_13_responsive align_center">
|
429 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><img src="http://tech-banker.com/wp-content/plugins/css3_web_pricing_tables_grids/img/tick_02.png" alt="yes"></span></span></span>
|
430 |
+
</li>
|
431 |
+
<li style="text-align: center;" class="css3_grid_row_14 row_style_3 css3_grid_row_14_responsive align_center">
|
432 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><img src="http://tech-banker.com/wp-content/plugins/css3_web_pricing_tables_grids/img/tick_02.png" alt="yes"></span></span></span>
|
433 |
+
</li>
|
434 |
+
<li style="text-align: center;" class="css3_grid_row_15 row_style_1 css3_grid_row_15_responsive align_center">
|
435 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><img src="http://tech-banker.com/wp-content/plugins/css3_web_pricing_tables_grids/img/tick_02.png" alt="yes"></span></span></span>
|
436 |
+
</li>
|
437 |
+
<li style="text-align: center;" class="css3_grid_row_16 row_style_3 css3_grid_row_16_responsive align_center">
|
438 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><img src="http://tech-banker.com/wp-content/plugins/css3_web_pricing_tables_grids/img/tick_02.png" alt="yes"></span></span></span>
|
439 |
+
</li>
|
440 |
+
<li style="text-align: center;" class="css3_grid_row_17 row_style_1 css3_grid_row_17_responsive align_center">
|
441 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><img src="http://tech-banker.com/wp-content/plugins/css3_web_pricing_tables_grids/img/tick_02.png" alt="yes"></span></span></span>
|
442 |
+
</li>
|
443 |
+
<li style="text-align: center;" class="css3_grid_row_18 row_style_3 css3_grid_row_18_responsive align_center">
|
444 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><img src="http://tech-banker.com/wp-content/plugins/css3_web_pricing_tables_grids/img/tick_02.png" alt="yes"></span></span></span>
|
445 |
+
</li>
|
446 |
+
<li style="text-align: center;" class="css3_grid_row_19 row_style_1 css3_grid_row_19_responsive align_center">
|
447 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><img src="http://tech-banker.com/wp-content/plugins/css3_web_pricing_tables_grids/img/tick_02.png" alt="yes"></span></span></span>
|
448 |
+
</li>
|
449 |
+
<li style="text-align: center;" class="css3_grid_row_20 row_style_3 css3_grid_row_20_responsive align_center">
|
450 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><img src="http://tech-banker.com/wp-content/plugins/css3_web_pricing_tables_grids/img/tick_02.png" alt="yes"></span></span></span>
|
451 |
+
</li>
|
452 |
+
<li style="text-align: center;" class="css3_grid_row_21 row_style_1 css3_grid_row_21_responsive align_center">
|
453 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><img src="http://tech-banker.com/wp-content/plugins/css3_web_pricing_tables_grids/img/tick_02.png" alt="yes"></span></span></span>
|
454 |
+
</li>
|
455 |
+
<li style="text-align: center;" class="css3_grid_row_22 row_style_3 css3_grid_row_22_responsive align_center">
|
456 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><img src="http://tech-banker.com/wp-content/plugins/css3_web_pricing_tables_grids/img/tick_02.png" alt="yes"></span></span></span>
|
457 |
+
</li>
|
458 |
+
<li style="text-align: center;" class="css3_grid_row_23 row_style_1 css3_grid_row_23_responsive align_center">
|
459 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><img src="http://tech-banker.com/wp-content/plugins/css3_web_pricing_tables_grids/img/tick_02.png" alt="yes"></span></span></span>
|
460 |
+
</li>
|
461 |
+
<li style="text-align: center;" class="css3_grid_row_24 row_style_3 css3_grid_row_24_responsive align_center">
|
462 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><img src="http://tech-banker.com/wp-content/plugins/css3_web_pricing_tables_grids/img/tick_02.png" alt="yes"></span></span></span>
|
463 |
+
</li>
|
464 |
+
<li style="text-align: center;" class="css3_grid_row_25 row_style_1 css3_grid_row_25_responsive align_center">
|
465 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><img src="http://tech-banker.com/wp-content/plugins/css3_web_pricing_tables_grids/img/tick_02.png" alt="yes"></span></span></span>
|
466 |
+
</li>
|
467 |
+
<li style="text-align: center;" class="css3_grid_row_26 row_style_3 css3_grid_row_26_responsive align_center">
|
468 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><img src="http://tech-banker.com/wp-content/plugins/css3_web_pricing_tables_grids/img/tick_02.png" alt="yes"></span></span></span>
|
469 |
+
</li>
|
470 |
+
<li style="text-align: center;" class="css3_grid_row_27 row_style_1 css3_grid_row_27_responsive align_center">
|
471 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><img src="http://tech-banker.com/wp-content/plugins/css3_web_pricing_tables_grids/img/tick_02.png" alt="yes"></span></span></span>
|
472 |
+
</li>
|
473 |
+
<li style="text-align: center;" class="css3_grid_row_28 row_style_3 css3_grid_row_28_responsive align_center">
|
474 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><img src="http://tech-banker.com/wp-content/plugins/css3_web_pricing_tables_grids/img/tick_02.png" alt="yes"></span></span></span>
|
475 |
+
</li>
|
476 |
+
<li style="text-align: center;" class="css3_grid_row_29 row_style_1 css3_grid_row_29_responsive align_center">
|
477 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><img src="http://tech-banker.com/wp-content/plugins/css3_web_pricing_tables_grids/img/tick_02.png" alt="yes"></span></span></span>
|
478 |
+
</li>
|
479 |
+
<li style="text-align: center;" class="css3_grid_row_30 row_style_3 css3_grid_row_30_responsive align_center">
|
480 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><img src="http://tech-banker.com/wp-content/plugins/css3_web_pricing_tables_grids/img/tick_02.png" alt="yes"></span></span></span>
|
481 |
+
</li>
|
482 |
+
<li style="text-align: center;" class="css3_grid_row_31 row_style_1 css3_grid_row_31_responsive align_center">
|
483 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><img src="http://tech-banker.com/wp-content/plugins/css3_web_pricing_tables_grids/img/tick_02.png" alt="yes"></span></span></span>
|
484 |
+
</li>
|
485 |
+
<li style="text-align: center;" class="css3_grid_row_32 row_style_3 css3_grid_row_32_responsive align_center">
|
486 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><img src="http://tech-banker.com/wp-content/plugins/css3_web_pricing_tables_grids/img/tick_02.png" alt="yes"></span></span></span>
|
487 |
+
</li>
|
488 |
+
<li style="text-align: center;" class="css3_grid_row_33 row_style_1 css3_grid_row_33_responsive align_center">
|
489 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><img src="http://tech-banker.com/wp-content/plugins/css3_web_pricing_tables_grids/img/tick_02.png" alt="yes"></span></span></span>
|
490 |
+
</li>
|
491 |
+
<li style="text-align: center;" class="css3_grid_row_34 row_style_3 css3_grid_row_34_responsive align_center">
|
492 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><img src="http://tech-banker.com/wp-content/plugins/css3_web_pricing_tables_grids/img/tick_02.png" alt="yes"></span></span></span>
|
493 |
+
</li>
|
494 |
+
<li style="text-align: center;" class="css3_grid_row_35 row_style_1 css3_grid_row_35_responsive align_center">
|
495 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><img src="http://tech-banker.com/wp-content/plugins/css3_web_pricing_tables_grids/img/tick_02.png" alt="yes"></span></span></span>
|
496 |
+
</li>
|
497 |
+
<li style="text-align: center;" class="css3_grid_row_36 row_style_3 css3_grid_row_36_responsive align_center">
|
498 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><img src="http://tech-banker.com/wp-content/plugins/css3_web_pricing_tables_grids/img/tick_02.png" alt="yes"></span></span></span>
|
499 |
+
</li>
|
500 |
+
<li style="text-align: center;" class="css3_grid_row_37 footer_row css3_grid_row_37_responsive">
|
501 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><a href="http://tech-banker.com/product/gallery-bank-pro-edition/" target="_blank" class="sign_up sign_up_yellow radius3">Order Now!</a></span></span>
|
502 |
+
</li>
|
503 |
+
</ul>
|
504 |
+
</div>
|
505 |
+
<div class="column_4 column_4_responsive">
|
506 |
+
<div class="column_ribbon ribbon_style1_off30"></div>
|
507 |
+
<ul>
|
508 |
+
<li class="css3_grid_row_0 header_row_1 align_center css3_grid_row_0_responsive radius5_topright">
|
509 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><h2 class="col1">Developer</h2></span></span>
|
510 |
+
</li>
|
511 |
+
<li class="css3_grid_row_1 header_row_2 css3_grid_row_1_responsive align_center">
|
512 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><h1 class="col1"> £<span>56</span></h1><h3 class="col1">one time</h3></span></span>
|
513 |
+
</li>
|
514 |
+
<li class="css3_grid_row_2 row_style_4 css3_grid_row_2_responsive align_center">
|
515 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span>5</span></span></span>
|
516 |
+
</li>
|
517 |
+
<li class="css3_grid_row_3 row_style_2 css3_grid_row_3_responsive align_center">
|
518 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><img src="http://tech-banker.com/wp-content/plugins/css3_web_pricing_tables_grids/img/tick_02.png" alt="yes"></span></span></span>
|
519 |
+
</li>
|
520 |
+
<li class="css3_grid_row_4 row_style_4 css3_grid_row_4_responsive align_center">
|
521 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span>1 Year </span></span></span>
|
522 |
+
</li>
|
523 |
+
<li class="css3_grid_row_5 row_style_2 css3_grid_row_5_responsive align_center">
|
524 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><img src="http://tech-banker.com/wp-content/plugins/css3_web_pricing_tables_grids/img/tick_02.png" alt="yes"></span></span></span>
|
525 |
+
</li>
|
526 |
+
<li class="css3_grid_row_6 row_style_4 css3_grid_row_6_responsive align_center">
|
527 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span>Unlimited </span></span></span>
|
528 |
+
</li>
|
529 |
+
<li class="css3_grid_row_7 row_style_2 css3_grid_row_7_responsive align_center">
|
530 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span>Unlimited</span></span></span>
|
531 |
+
</li>
|
532 |
+
<li class="css3_grid_row_8 row_style_4 css3_grid_row_8_responsive align_center">
|
533 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><img src="http://tech-banker.com/wp-content/plugins/css3_web_pricing_tables_grids/img/tick_02.png" alt="yes"></span></span></span>
|
534 |
+
</li>
|
535 |
+
<li class="css3_grid_row_9 row_style_2 css3_grid_row_9_responsive align_center">
|
536 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><img src="http://tech-banker.com/wp-content/plugins/css3_web_pricing_tables_grids/img/tick_02.png" alt="yes"></span></span></span>
|
537 |
+
</li>
|
538 |
+
<li class="css3_grid_row_10 row_style_4 css3_grid_row_10_responsive align_center">
|
539 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><img src="http://tech-banker.com/wp-content/plugins/css3_web_pricing_tables_grids/img/tick_02.png" alt="yes"></span></span></span>
|
540 |
+
</li>
|
541 |
+
<li class="css3_grid_row_11 row_style_2 css3_grid_row_11_responsive align_center">
|
542 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><img src="http://tech-banker.com/wp-content/plugins/css3_web_pricing_tables_grids/img/tick_02.png" alt="yes"></span></span></span>
|
543 |
+
</li>
|
544 |
+
<li class="css3_grid_row_12 row_style_4 css3_grid_row_12_responsive align_center">
|
545 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><img src="http://tech-banker.com/wp-content/plugins/css3_web_pricing_tables_grids/img/tick_02.png" alt="yes"></span></span></span>
|
546 |
+
</li>
|
547 |
+
<li class="css3_grid_row_13 row_style_2 css3_grid_row_13_responsive align_center">
|
548 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><img src="http://tech-banker.com/wp-content/plugins/css3_web_pricing_tables_grids/img/tick_02.png" alt="yes"></span></span></span>
|
549 |
+
</li>
|
550 |
+
<li class="css3_grid_row_14 row_style_4 css3_grid_row_14_responsive align_center">
|
551 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><img src="http://tech-banker.com/wp-content/plugins/css3_web_pricing_tables_grids/img/tick_02.png" alt="yes"></span></span></span>
|
552 |
+
</li>
|
553 |
+
<li class="css3_grid_row_15 row_style_2 css3_grid_row_15_responsive align_center">
|
554 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><img src="http://tech-banker.com/wp-content/plugins/css3_web_pricing_tables_grids/img/tick_02.png" alt="yes"></span></span></span>
|
555 |
+
</li>
|
556 |
+
<li class="css3_grid_row_16 row_style_4 css3_grid_row_16_responsive align_center">
|
557 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><img src="http://tech-banker.com/wp-content/plugins/css3_web_pricing_tables_grids/img/tick_02.png" alt="yes"></span></span></span>
|
558 |
+
</li>
|
559 |
+
<li class="css3_grid_row_17 row_style_2 css3_grid_row_17_responsive align_center">
|
560 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><img src="http://tech-banker.com/wp-content/plugins/css3_web_pricing_tables_grids/img/tick_02.png" alt="yes"></span></span></span>
|
561 |
+
</li>
|
562 |
+
<li class="css3_grid_row_18 row_style_4 css3_grid_row_18_responsive align_center">
|
563 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><img src="http://tech-banker.com/wp-content/plugins/css3_web_pricing_tables_grids/img/tick_02.png" alt="yes"></span></span></span>
|
564 |
+
</li>
|
565 |
+
<li class="css3_grid_row_19 row_style_2 css3_grid_row_19_responsive align_center">
|
566 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><img src="http://tech-banker.com/wp-content/plugins/css3_web_pricing_tables_grids/img/tick_02.png" alt="yes"></span></span></span>
|
567 |
+
</li>
|
568 |
+
<li class="css3_grid_row_20 row_style_4 css3_grid_row_20_responsive align_center">
|
569 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><img src="http://tech-banker.com/wp-content/plugins/css3_web_pricing_tables_grids/img/tick_02.png" alt="yes"></span></span></span>
|
570 |
+
</li>
|
571 |
+
<li class="css3_grid_row_21 row_style_2 css3_grid_row_21_responsive align_center">
|
572 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><img src="http://tech-banker.com/wp-content/plugins/css3_web_pricing_tables_grids/img/tick_02.png" alt="yes"></span></span></span>
|
573 |
+
</li>
|
574 |
+
<li class="css3_grid_row_22 row_style_4 css3_grid_row_22_responsive align_center">
|
575 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><img src="http://tech-banker.com/wp-content/plugins/css3_web_pricing_tables_grids/img/tick_02.png" alt="yes"></span></span></span>
|
576 |
+
</li>
|
577 |
+
<li class="css3_grid_row_23 row_style_2 css3_grid_row_23_responsive align_center">
|
578 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><img src="http://tech-banker.com/wp-content/plugins/css3_web_pricing_tables_grids/img/tick_02.png" alt="yes"></span></span></span>
|
579 |
+
</li>
|
580 |
+
<li class="css3_grid_row_24 row_style_4 css3_grid_row_24_responsive align_center">
|
581 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><img src="http://tech-banker.com/wp-content/plugins/css3_web_pricing_tables_grids/img/tick_02.png" alt="yes"></span></span></span>
|
582 |
+
</li>
|
583 |
+
<li class="css3_grid_row_25 row_style_2 css3_grid_row_25_responsive align_center">
|
584 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><img src="http://tech-banker.com/wp-content/plugins/css3_web_pricing_tables_grids/img/tick_02.png" alt="yes"></span></span></span>
|
585 |
+
</li>
|
586 |
+
<li class="css3_grid_row_26 row_style_4 css3_grid_row_26_responsive align_center">
|
587 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><img src="http://tech-banker.com/wp-content/plugins/css3_web_pricing_tables_grids/img/tick_02.png" alt="yes"></span></span></span>
|
588 |
+
</li>
|
589 |
+
<li class="css3_grid_row_27 row_style_2 css3_grid_row_27_responsive align_center">
|
590 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><img src="http://tech-banker.com/wp-content/plugins/css3_web_pricing_tables_grids/img/tick_02.png" alt="yes"></span></span></span>
|
591 |
+
</li>
|
592 |
+
<li class="css3_grid_row_28 row_style_4 css3_grid_row_28_responsive align_center">
|
593 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><img src="http://tech-banker.com/wp-content/plugins/css3_web_pricing_tables_grids/img/tick_02.png" alt="yes"></span></span></span>
|
594 |
+
</li>
|
595 |
+
<li class="css3_grid_row_29 row_style_2 css3_grid_row_29_responsive align_center">
|
596 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><img src="http://tech-banker.com/wp-content/plugins/css3_web_pricing_tables_grids/img/tick_02.png" alt="yes"></span></span></span>
|
597 |
+
</li>
|
598 |
+
<li class="css3_grid_row_30 row_style_4 css3_grid_row_30_responsive align_center">
|
599 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><img src="http://tech-banker.com/wp-content/plugins/css3_web_pricing_tables_grids/img/tick_02.png" alt="yes"></span></span></span>
|
600 |
+
</li>
|
601 |
+
<li class="css3_grid_row_31 row_style_2 css3_grid_row_31_responsive align_center">
|
602 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><img src="http://tech-banker.com/wp-content/plugins/css3_web_pricing_tables_grids/img/tick_02.png" alt="yes"></span></span></span>
|
603 |
+
</li>
|
604 |
+
<li class="css3_grid_row_32 row_style_4 css3_grid_row_32_responsive align_center">
|
605 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><img src="http://tech-banker.com/wp-content/plugins/css3_web_pricing_tables_grids/img/tick_02.png" alt="yes"></span></span></span>
|
606 |
+
</li>
|
607 |
+
<li class="css3_grid_row_33 row_style_2 css3_grid_row_33_responsive align_center">
|
608 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><img src="http://tech-banker.com/wp-content/plugins/css3_web_pricing_tables_grids/img/tick_02.png" alt="yes"></span></span></span>
|
609 |
+
</li>
|
610 |
+
<li class="css3_grid_row_34 row_style_4 css3_grid_row_34_responsive align_center">
|
611 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><img src="http://tech-banker.com/wp-content/plugins/css3_web_pricing_tables_grids/img/tick_02.png" alt="yes"></span></span></span>
|
612 |
+
</li>
|
613 |
+
<li class="css3_grid_row_35 row_style_2 css3_grid_row_35_responsive align_center">
|
614 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><img src="http://tech-banker.com/wp-content/plugins/css3_web_pricing_tables_grids/img/tick_02.png" alt="yes"></span></span></span>
|
615 |
+
</li>
|
616 |
+
<li class="css3_grid_row_36 row_style_4 css3_grid_row_36_responsive align_center">
|
617 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><span><img src="http://tech-banker.com/wp-content/plugins/css3_web_pricing_tables_grids/img/tick_02.png" alt="yes"></span></span></span>
|
618 |
+
</li>
|
619 |
+
<li class="css3_grid_row_37 footer_row css3_grid_row_37_responsive">
|
620 |
+
<span class="css3_grid_vertical_align_table"><span class="css3_grid_vertical_align"><a href="http://tech-banker.com/product/gallery-bank-developer-edition/" target="_blank" class="sign_up sign_up_yellow radius3">Order Now!</a></span></span>
|
621 |
+
</li>
|
622 |
+
</ul>
|
623 |
+
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
624 |
</div>
|
625 |
</div>
|
626 |
</div>
|
627 |
</div>
|
628 |
+
</div>
|
629 |
+
</div>
|
630 |
+
</div>
|
631 |
+
<div id="postbox-container-1" class="postbox-container">
|
632 |
+
<div id="priority_side" class="meta-box-sortables">
|
633 |
+
<div id="gallery_bank_get_started" class="postbox" >
|
634 |
+
<div class="handlediv" data-target="#uxdownload" title="Click to toggle" data-toggle="collapse"><br></div>
|
635 |
+
<h3 class="hndle"><span><?php _e("Need Support Help?", gallery_bank); ?></span></h3>
|
636 |
+
<div class="inside">
|
637 |
+
<div id="uxdownload" class="gallery_bank_getting_started">
|
638 |
+
<p>
|
639 |
+
We’re interested in hearing from you.</p>
|
640 |
+
|
641 |
+
<p>We will help you through the process and try to provide the answers.</p>
|
642 |
+
|
643 |
+
<p>If you need to know more about our services or have something to share, please feel free to contact us.
|
644 |
+
</p>
|
645 |
+
<p>We commit to responses within 24 hours on weekdays – generally within hours during week day work hours.</p>
|
646 |
+
<p>
|
647 |
+
<a class="btn btn-danger" href="http://tech-banker.com/get-in-touch/" target="_blank" style="text-decoration: none;"><?php _e("Let’s get in touch!", gallery_bank); ?></a>
|
648 |
+
</p>
|
649 |
+
<img src="<?php echo GALLERY_BK_PLUGIN_URL . "/assets/images/img.png";?>" style="max-width:100%;cursor: pointer;" />
|
650 |
+
<p>
|
651 |
+
<a class="btn btn-danger" href="http://tech-banker.com/gallery-bank/" target="_blank" style="text-decoration: none;"><?php _e("Order Now!", gallery_bank); ?></a>
|
652 |
+
</p>
|
653 |
+
</div>
|
654 |
+
</div>
|
655 |
+
</div>
|
656 |
+
</div>
|
657 |
+
</div>
|
658 |
+
</div>
|
659 |
+
</div>
|
660 |
</form>
|
views/settings.php
CHANGED
@@ -249,1259 +249,1254 @@ if (count($album_css) != 0) {
|
|
249 |
|
250 |
?>
|
251 |
<!--suppress ALL -->
|
252 |
-
|
253 |
-
<div
|
254 |
-
<div class="
|
255 |
-
<
|
256 |
-
<
|
257 |
-
<
|
258 |
-
|
259 |
-
|
260 |
-
|
261 |
-
|
262 |
-
|
263 |
-
|
264 |
-
|
265 |
-
|
266 |
-
|
267 |
-
|
268 |
-
|
269 |
-
|
270 |
-
|
271 |
-
|
272 |
-
|
273 |
-
|
274 |
-
|
275 |
-
|
276 |
-
|
277 |
-
|
278 |
-
<div class="widget-layout-title">
|
279 |
-
<h4>
|
280 |
-
<?php _e("Thumbnail Settings", gallery_bank); ?>
|
281 |
-
<i class="widget_premium_feature"><?php _e(" (Available in Premium Versions)", gallery_bank); ?></i>
|
282 |
-
</h4>
|
283 |
-
<span class="tools">
|
284 |
-
<a data-target="#thumbnail_settings" data-toggle="collapse">
|
285 |
-
<i class="icon-chevron-down"></i>
|
286 |
-
</a>
|
287 |
-
</span>
|
288 |
-
</div>
|
289 |
-
<div id="thumbnail_settings" class="collapse in">
|
290 |
-
<div class="widget-layout-body">
|
291 |
-
<div class="layout-control-group">
|
292 |
-
<label class="layout-control-label"><?php _e("Thumbnail Size", gallery_bank); ?> : </label>
|
293 |
-
<div class="layout-controls-radio">
|
294 |
-
<?php
|
295 |
-
if ($thumbnails_custom_enable == 1) {
|
296 |
-
?>
|
297 |
-
<input type="radio" name="ux_thumbnail" value="1" checked="checked"
|
298 |
-
onclick="check_thumbnail_settings();"/> <label
|
299 |
-
style="vertical-align: baseline;"><?php _e("Original", gallery_bank); ?></label>
|
300 |
-
<input type="radio" style="margin-left: 10px;" name="ux_thumbnail" value="0"
|
301 |
-
onclick="check_thumbnail_settings();"/><label style="vertical-align: baseline;">
|
302 |
-
<?php _e("Custom", gallery_bank); ?> </label>
|
303 |
-
<?php
|
304 |
-
} else {
|
305 |
-
?>
|
306 |
-
<input type="radio" name="ux_thumbnail" value="1" onclick="check_thumbnail_settings();"/>
|
307 |
-
<label style="vertical-align: baseline;"><?php _e("Original", gallery_bank); ?></label>
|
308 |
-
<input type="radio" style="margin-left: 10px;" name="ux_thumbnail" checked="checked"
|
309 |
-
value="0" onclick="check_thumbnail_settings();"/> <label style="vertical-align: baseline;">
|
310 |
-
<?php _e("Custom", gallery_bank); ?></label>
|
311 |
-
<?php
|
312 |
-
}
|
313 |
-
?>
|
314 |
-
</div>
|
315 |
-
</div>
|
316 |
-
</div>
|
317 |
-
<div class="widget-layout-body" id="image_width">
|
318 |
-
<div class="layout-control-group">
|
319 |
-
<label class="layout-control-label"><?php _e("Width", gallery_bank); ?> : </label>
|
320 |
-
<div class="layout-controls">
|
321 |
-
<input type="text" class="layout-span10" id="ux_image_width" name="ux_image_width"
|
322 |
-
onkeypress="return OnlyNumbers(event)" value="<?php echo $thumbnails_width; ?>"/>
|
323 |
-
<span style="padding-top:3px;">(px)</span>
|
324 |
-
</div>
|
325 |
-
</div>
|
326 |
-
</div>
|
327 |
-
<div class="widget-layout-body" id="image_height">
|
328 |
-
<div class="layout-control-group">
|
329 |
-
<label class="layout-control-label"><?php _e("Height", gallery_bank); ?> : </label>
|
330 |
-
<div class="layout-controls">
|
331 |
-
<input type="text" id="ux_image_height" name="ux_image_height"
|
332 |
-
onkeypress="return OnlyNumbers(event)" class="layout-span10"
|
333 |
-
value="<?php echo $thumbnails_height; ?>">
|
334 |
-
<span style="padding-top:3px;">(px)</span>
|
335 |
-
</div>
|
336 |
-
</div>
|
337 |
-
</div>
|
338 |
-
<div class="widget-layout-body">
|
339 |
-
<div class="layout-control-group">
|
340 |
-
<label class="layout-control-label"
|
341 |
-
id="ux_label_thumb_opacity"><?php _e("Opacity", gallery_bank); ?> : </label>
|
342 |
-
<div class="layout-controls">
|
343 |
-
<input type="text" class="layout-span10" id="ux_image_opacity_val"
|
344 |
-
onkeyup="set_value('thumb_opacity')" onblur="set_value('thumb_opacity')"
|
345 |
-
name="ux_image_opacity_val" onkeypress="return OnlyNumbers(event)"
|
346 |
-
value="<?php echo $thumbnails_opacity * 100; ?>"/>
|
347 |
-
<span style="padding-top:3px;">(%)</span>
|
348 |
-
</div>
|
349 |
-
</div>
|
350 |
-
</div>
|
351 |
-
<div class="widget-layout-body">
|
352 |
-
<div class="layout-control-group">
|
353 |
-
<label class="layout-control-label"><?php _e("Border Size", gallery_bank); ?> : </label>
|
354 |
-
<div class="layout-controls">
|
355 |
-
<input type="text" class="layout-span10" id="ux_image_border_val" name="ux_image_border_val"
|
356 |
-
onblur="set_value('thumb_border_size');" onkeyup="set_value('thumb_border_size');"
|
357 |
-
onkeypress="return OnlyNumbers(event);" value="<?php echo $thumbnails_border_size; ?>"/>
|
358 |
-
<span style="padding-top:3px;">(0 - 20)</span>
|
359 |
-
</div>
|
360 |
-
</div>
|
361 |
-
</div>
|
362 |
-
<div class="widget-layout-body">
|
363 |
-
<div class="layout-control-group">
|
364 |
-
<label class="layout-control-label"><?php _e("Border Radius", gallery_bank); ?> : </label>
|
365 |
-
<div class="layout-controls">
|
366 |
-
<input type="text" class="layout-span10" id="ux_image_radius_val" name="ux_image_radius_val"
|
367 |
-
onblur="set_value('thumb_border_radius')" onkeyup="set_value('thumb_border_radius')"
|
368 |
-
onkeypress="return OnlyNumbers(event)" value="<?php echo $thumbnails_border_radius; ?>"/>
|
369 |
-
<span style="padding-top:3px;">(0 - 20)</span>
|
370 |
</div>
|
371 |
-
|
372 |
-
|
373 |
-
|
374 |
-
|
375 |
-
|
376 |
-
|
377 |
-
|
378 |
-
|
379 |
-
|
380 |
-
|
381 |
-
|
382 |
-
|
383 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
384 |
</div>
|
385 |
</div>
|
386 |
-
|
387 |
-
|
388 |
-
|
389 |
-
|
390 |
-
|
391 |
-
<
|
392 |
-
|
393 |
-
|
|
|
|
|
394 |
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
395 |
</div>
|
396 |
</div>
|
397 |
-
<div class="
|
398 |
-
<div class="layout
|
399 |
-
<
|
400 |
-
|
401 |
-
|
402 |
-
|
403 |
-
|
404 |
-
|
405 |
-
|
406 |
-
|
407 |
-
|
408 |
</div>
|
409 |
-
|
410 |
-
|
411 |
-
|
412 |
-
|
413 |
-
|
414 |
-
|
415 |
-
|
416 |
-
|
417 |
-
|
418 |
-
|
419 |
-
|
420 |
-
|
421 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
422 |
</div>
|
423 |
</div>
|
424 |
-
|
425 |
-
|
426 |
-
|
427 |
-
|
428 |
-
|
429 |
-
|
430 |
-
|
431 |
-
|
432 |
-
|
433 |
-
|
434 |
-
<option value="Helvetica">Helvetica</option>
|
435 |
-
<option value="inherit">inherit</option>
|
436 |
-
<option value="Lucida Grande">Lucida Grande</option>
|
437 |
-
<option value="Lucida Sans Unicode">Lucida Sans Unicode</option>
|
438 |
-
<option value="Monospace">Monospace</option>
|
439 |
-
<option value="Sans-serif">Sans-serif</option>
|
440 |
-
<option value="Tahoma">Tahoma</option>
|
441 |
-
<option value="Times">Times</option>
|
442 |
-
<option value="Times New Roman">Times New Roman</option>
|
443 |
-
<option value="Verdana">Verdana</option>
|
444 |
-
</select>
|
445 |
</div>
|
446 |
-
|
447 |
-
|
448 |
-
|
449 |
-
|
450 |
-
|
451 |
-
|
452 |
-
|
453 |
-
|
454 |
-
|
455 |
-
|
456 |
-
|
457 |
-
|
458 |
-
|
459 |
-
|
460 |
-
|
461 |
-
|
462 |
-
|
463 |
-
|
464 |
-
|
465 |
-
|
466 |
-
|
467 |
-
|
468 |
-
|
469 |
-
|
470 |
-
|
471 |
-
|
472 |
-
|
473 |
-
|
474 |
-
|
475 |
-
|
476 |
-
|
477 |
-
|
478 |
-
|
479 |
-
|
480 |
-
|
481 |
-
|
482 |
-
|
483 |
-
|
484 |
-
|
485 |
-
|
486 |
-
|
487 |
-
|
488 |
-
|
489 |
-
|
490 |
-
|
491 |
-
|
492 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
493 |
</div>
|
494 |
-
<div class="widget-layout">
|
495 |
-
<div class="widget-layout-title">
|
496 |
-
<h4><?php _e("Album Cover Settings", gallery_bank); ?>
|
497 |
-
<i class="widget_premium_feature"><?php _e(" (Available in Premium Versions)", gallery_bank); ?></i>
|
498 |
-
</h4>
|
499 |
-
<span class="tools">
|
500 |
-
<a data-target="#album_cover_settings" data-toggle="collapse">
|
501 |
-
<i class="icon-chevron-down"></i>
|
502 |
-
</a>
|
503 |
-
</span>
|
504 |
-
</div>
|
505 |
-
<div id="album_cover_settings" class="collapse in">
|
506 |
-
<div class="widget-layout-body">
|
507 |
-
<div class="layout-control-group">
|
508 |
-
<label class="layout-control-label"><?php _e("Cover Size", gallery_bank); ?> : </label>
|
509 |
-
<div class="layout-controls-radio">
|
510 |
-
<?php
|
511 |
-
if ($cover_custom_enable == 1) {
|
512 |
-
?>
|
513 |
-
<input type="radio" name="ux_cover_size" value="1" checked="checked"
|
514 |
-
onclick="check_cover_settings();"/> <label
|
515 |
-
style="vertical-align: baseline;"><?php _e("Original", gallery_bank); ?></label>
|
516 |
-
<input type="radio" style="margin-left: 10px;" name="ux_cover_size" value="0"
|
517 |
-
onclick="check_cover_settings();"/> <label
|
518 |
-
style="vertical-align: baseline;"><?php _e("Custom", gallery_bank); ?></label>
|
519 |
-
<?php
|
520 |
-
} else {
|
521 |
-
?>
|
522 |
-
<input type="radio" name="ux_cover_size" value="1" onclick="check_cover_settings();"/>
|
523 |
-
<label style="vertical-align: baseline;"><?php _e("Original", gallery_bank); ?></label>
|
524 |
-
<input type="radio" style="margin-left: 10px;" name="ux_cover_size" checked="checked"
|
525 |
-
value="0" onclick="check_cover_settings();"/> <label
|
526 |
-
style="vertical-align: baseline;"><?php _e("Custom", gallery_bank); ?></label>
|
527 |
-
<?php
|
528 |
-
}
|
529 |
-
?>
|
530 |
-
</div>
|
531 |
-
</div>
|
532 |
-
</div>
|
533 |
-
<div class="widget-layout-body" id="cover_width">
|
534 |
-
<div class="layout-control-group">
|
535 |
-
<label class="layout-control-label"><?php _e("Width", gallery_bank); ?> : </label>
|
536 |
-
<div class="layout-controls">
|
537 |
-
<input type="text" class="layout-span10" id="ux_cover_width" name="ux_cover_width"
|
538 |
-
onkeypress="return OnlyNumbers(event)" value="<?php echo $cover_thumbnail_width; ?>"/>
|
539 |
-
<span style="padding-top:3px;">(px)</span>
|
540 |
-
</div>
|
541 |
-
</div>
|
542 |
-
</div>
|
543 |
-
<div class="widget-layout-body" id="cover_height">
|
544 |
-
<div class="layout-control-group">
|
545 |
-
<label class="layout-control-label"><?php _e("Height", gallery_bank); ?> : </label>
|
546 |
-
<div class="layout-controls">
|
547 |
-
<input type="text" id="ux_cover_height" name="ux_cover_height"
|
548 |
-
onkeypress="return OnlyNumbers(event)" class="layout-span10"
|
549 |
-
value="<?php echo $cover_thumbnail_height; ?>">
|
550 |
-
<span style="padding-top:3px;">(px)</span>
|
551 |
-
</div>
|
552 |
-
</div>
|
553 |
-
</div>
|
554 |
-
<div class="widget-layout-body">
|
555 |
-
<div class="layout-control-group">
|
556 |
-
<label class="layout-control-label" id="ux_label_cover_opacity"><?php _e("Opacity", gallery_bank); ?> : </label>
|
557 |
-
<div class="layout-controls">
|
558 |
-
<input type="text" class="layout-span10" id="ux_cover_opacity_val" name="ux_cover_opacity_val"
|
559 |
-
onblur="set_value('cover_opacity')" onkeyup="set_value('cover_opacity')"
|
560 |
-
onkeypress="return OnlyNumbers(event)"
|
561 |
-
value="<?php echo $cover_thumbnail_opacity * 100; ?>"/>
|
562 |
-
<span style="padding-top:3px;">(%)</span>
|
563 |
-
</div>
|
564 |
-
</div>
|
565 |
-
</div>
|
566 |
-
<div class="widget-layout-body">
|
567 |
-
<div class="layout-control-group">
|
568 |
-
<label class="layout-control-label"><?php _e("Border Size", gallery_bank); ?> : </label>
|
569 |
-
<div class="layout-controls">
|
570 |
-
<input type="text" class="layout-span10" id="ux_cover_border_val" name="ux_cover_border_val"
|
571 |
-
onblur="set_value('cover_border_size')" onkeyup="set_value('cover_border_size')"
|
572 |
-
onkeypress="return OnlyNumbers(event)"
|
573 |
-
value="<?php echo $cover_thumbnail_border_size; ?>"/>
|
574 |
-
<span style="padding-top:3px;">(0 - 20)</span>
|
575 |
-
</div>
|
576 |
-
</div>
|
577 |
-
</div>
|
578 |
-
<div class="widget-layout-body">
|
579 |
-
<div class="layout-control-group">
|
580 |
-
<label class="layout-control-label"><?php _e("Border Radius", gallery_bank); ?> : </label>
|
581 |
-
<div class="layout-controls">
|
582 |
-
<input type="text" class="layout-span10" id="ux_cover_radius_val" name="ux_cover_radius_val"
|
583 |
-
onblur="set_value('cover_border_radius')" onkeyup="set_value('cover_border_radius')"
|
584 |
-
onkeypress="return OnlyNumbers(event)"
|
585 |
-
value="<?php echo $cover_thumbnail_border_radius; ?>"/>
|
586 |
-
<span style="padding-top:3px;">(0 - 20)</span>
|
587 |
-
</div>
|
588 |
-
</div>
|
589 |
-
</div>
|
590 |
-
<div class="widget-layout-body">
|
591 |
-
<div class="layout-control-group">
|
592 |
-
<label class="layout-control-label"><?php _e("Border Color", gallery_bank); ?> : </label>
|
593 |
-
<div class="layout-controls">
|
594 |
-
<input type="text" class="layout-span10" onclick="ux_clr_cover_border_color();"
|
595 |
-
name="ux_cover_border_color" id="ux_cover_border_color"
|
596 |
-
style="background-color:<?php echo $cover_thumbnail_border_color; ?>; "
|
597 |
-
value="<?php echo $cover_thumbnail_border_color; ?>"/><img
|
598 |
-
onclick="ux_clr_cover_border_color();" style="vertical-align: middle;margin-left: 5px;"
|
599 |
-
src="<?php echo GALLERY_BK_PLUGIN_URL . "/assets/images/color.png" ?>"/>
|
600 |
-
<div id="clr_cover_border_color"></div>
|
601 |
-
</div>
|
602 |
-
</div>
|
603 |
-
</div>
|
604 |
-
<div class="widget-layout-body">
|
605 |
-
<div class="layout-control-group">
|
606 |
-
<label class="layout-control-label"><?php _e("Margin Between Albums", gallery_bank); ?> : </label>
|
607 |
-
<div class="layout-controls">
|
608 |
-
<input type="text" class="layout-span10" name="ux_album_margin" id="ux_album_margin"
|
609 |
-
onkeypress="return OnlyNumbers(event)"
|
610 |
-
value="<?php echo $margin_btw_cover_thumbnails; ?>"/> (px)
|
611 |
-
</div>
|
612 |
-
</div>
|
613 |
-
</div>
|
614 |
-
<div class="widget-layout-body">
|
615 |
-
<div class="layout-control-group">
|
616 |
-
<label class="layout-control-label"><?php _e("Text for Album Click", gallery_bank); ?> : </label>
|
617 |
-
|
618 |
-
<div class="layout-controls">
|
619 |
-
<input type="text" class="layout-span10" id="ux_album_view" name="ux_album_view"
|
620 |
-
value="<?php echo $album_click_text; ?>"/>
|
621 |
-
</div>
|
622 |
-
</div>
|
623 |
-
</div>
|
624 |
-
<div class="widget-layout-body">
|
625 |
-
<div class="layout-control-group">
|
626 |
-
<label class="layout-control-label"><?php _e("Text Color", gallery_bank); ?> : </label>
|
627 |
-
|
628 |
-
<div class="layout-controls">
|
629 |
-
<input type="text" class="layout-span10" id="ux_album_text_color" name="ux_album_text_color"
|
630 |
-
onclick="ux_clr_album_font_color();"
|
631 |
-
style="background-color: <?php echo $album_text_color; ?>;"
|
632 |
-
value="<?php echo $album_text_color; ?>"/>
|
633 |
-
<img onclick="ux_clr_album_font_color();"
|
634 |
-
style="vertical-align: middle;margin-left: 5px;"
|
635 |
-
src="<?php echo GALLERY_BK_PLUGIN_URL . "/assets/images/color.png" ?>"/>
|
636 |
-
|
637 |
-
<div id="clr_album_text_color"></div>
|
638 |
-
</div>
|
639 |
-
</div>
|
640 |
-
</div>
|
641 |
-
<div class="widget-layout-body">
|
642 |
-
<div class="layout-control-group">
|
643 |
-
<label class="layout-control-label"><?php _e("Text-Align", gallery_bank); ?> : </label>
|
644 |
-
<div class="layout-controls">
|
645 |
-
<select id="ux_album_text_align" class="layout-span10" name="ux_album_text_align">
|
646 |
-
<option value="center">Center</option>
|
647 |
-
<option value="inherit">Inherit</option>
|
648 |
-
<option value="justify">Justify</option>
|
649 |
-
<option value="left">Left</option>
|
650 |
-
<option value="right">Right</option>
|
651 |
-
</select>
|
652 |
-
</div>
|
653 |
-
</div>
|
654 |
-
</div>
|
655 |
-
<div class="widget-layout-body">
|
656 |
-
<div class="layout-control-group">
|
657 |
-
<label class="layout-control-label"><?php _e("Font-Family", gallery_bank); ?> : </label>
|
658 |
-
<div class="layout-controls">
|
659 |
-
<select id="ux_album_font_family" class="layout-span10" name="ux_album_font_family">
|
660 |
-
<option value="Arial">Arial</option>
|
661 |
-
<option value="Courier">Courier</option>
|
662 |
-
<option value="Courier New">Courier New</option>
|
663 |
-
<option value="Geneva">Geneva</option>
|
664 |
-
<option value="Helvetica">Helvetica</option>
|
665 |
-
<option value="inherit">inherit</option>
|
666 |
-
<option value="Lucida Grande">Lucida Grande</option>
|
667 |
-
<option value="Lucida Sans Unicode">Lucida Sans Unicode</option>
|
668 |
-
<option value="Monospace">Monospace</option>
|
669 |
-
<option value="Sans-serif">Sans-serif</option>
|
670 |
-
<option value="Tahoma">Tahoma</option>
|
671 |
-
<option value="Times">Times</option>
|
672 |
-
<option value="Times New Roman">Times New Roman</option>
|
673 |
-
<option value="Verdana">Verdana</option>
|
674 |
-
</select>
|
675 |
-
</div>
|
676 |
-
</div>
|
677 |
-
</div>
|
678 |
-
<div class="widget-layout-body">
|
679 |
-
<div class="layout-control-group">
|
680 |
-
<label class="layout-control-label"><?php _e("Heading Font-Size", gallery_bank); ?> : </label>
|
681 |
-
<div class="layout-controls">
|
682 |
-
<select id="ux_album_heading_font_size" class="layout-span10" name="ux_album_heading_font_size">
|
683 |
-
<?php
|
684 |
-
for ($album_heading = 8; $album_heading <= 24; $album_heading++) {
|
685 |
-
?>
|
686 |
-
<option <?php if ($album_heading == $album_heading_font_size) echo "selected=\"selected\"" ?>
|
687 |
-
value="<?php echo $album_heading; ?>"><?php echo $album_heading; ?></option>
|
688 |
-
<?php
|
689 |
-
}
|
690 |
-
?>
|
691 |
-
</select> (px)
|
692 |
-
</div>
|
693 |
-
</div>
|
694 |
-
</div>
|
695 |
-
<div class="widget-layout-body">
|
696 |
-
<div class="layout-control-group">
|
697 |
-
<label class="layout-control-label"><?php _e("Text Font-Size", gallery_bank); ?> : </label>
|
698 |
-
<div class="layout-controls">
|
699 |
-
<select id="ux_album_text_font_size" class="layout-span10" name="ux_album_text_font_size">
|
700 |
-
<?php
|
701 |
-
for ($albumfont = 8; $albumfont <= 15; $albumfont++) {
|
702 |
-
?>
|
703 |
-
<option <?php if ($albumfont == $album_text_font_size) echo "selected=\"selected\"" ?>
|
704 |
-
value="<?php echo $albumfont; ?>"><?php echo $albumfont; ?></option>
|
705 |
-
<?php
|
706 |
-
}
|
707 |
-
?>
|
708 |
-
</select> (px)
|
709 |
-
</div>
|
710 |
-
</div>
|
711 |
-
</div>
|
712 |
-
<div class="widget-layout-body">
|
713 |
-
<div class="layout-control-group">
|
714 |
-
<label class="layout-control-label"><?php _e("Description Length", gallery_bank); ?> : </label>
|
715 |
-
<div class="layout-controls">
|
716 |
-
<input type="text" id="ux_album_desc_length" class="layout-span10"
|
717 |
-
onkeypress="return OnlyNumbers(event)" name="ux_album_desc_length"
|
718 |
-
value="<?php echo $album_desc_length; ?>"/><label> (chars)</label>
|
719 |
-
</div>
|
720 |
-
</div>
|
721 |
-
</div>
|
722 |
-
</div>
|
723 |
-
</div>
|
724 |
-
<div class="widget-layout">
|
725 |
-
<div class="widget-layout-title">
|
726 |
-
<h4><?php _e("Filter Settings", gallery_bank); ?>
|
727 |
-
<i class="widget_premium_feature"><?php _e(" (Available in Premium Versions)", gallery_bank); ?></i>
|
728 |
-
</h4>
|
729 |
-
<span class="tools">
|
730 |
-
<a data-target="#filter_settings" data-toggle="collapse">
|
731 |
-
<i class="icon-chevron-down"></i>
|
732 |
-
</a>
|
733 |
-
</span>
|
734 |
-
</div>
|
735 |
-
<div id="filter_settings" class="collapse">
|
736 |
-
<div class="widget-layout-body">
|
737 |
-
<div class="layout-control-group">
|
738 |
-
<label class="layout-control-label"><?php _e("Filters", gallery_bank); ?> : </label>
|
739 |
-
<div class="layout-controls-radio">
|
740 |
-
<?php
|
741 |
-
if ($filters_setting == 1) {
|
742 |
-
?>
|
743 |
-
<input type="radio" onclick="show_filter_page();" name="ux_image_filters" value="1"
|
744 |
-
checked="checked"/> <label
|
745 |
-
style="vertical-align: baseline;"><?php _e("Enable", gallery_bank); ?></label>
|
746 |
-
<input type="radio" onclick="show_filter_page();" style="margin-left: 10px;"
|
747 |
-
name="ux_image_filters" value="0"/> <label
|
748 |
-
style="vertical-align: baseline;"><?php _e("Disable", gallery_bank); ?></label>
|
749 |
-
<?php
|
750 |
-
} else {
|
751 |
-
?>
|
752 |
-
<input type="radio" onclick="show_filter_page();" name="ux_image_filters" value="1"/> <label
|
753 |
-
style="vertical-align: baseline;"><?php _e("Enable", gallery_bank); ?></label>
|
754 |
-
<input type="radio" onclick="show_filter_page();" style="margin-left: 10px;"
|
755 |
-
name="ux_image_filters" value="0" checked="checked"/> <label
|
756 |
-
style="vertical-align: baseline;"><?php _e("Disable", gallery_bank); ?></label>
|
757 |
-
<?php
|
758 |
-
}
|
759 |
-
?>
|
760 |
-
</div>
|
761 |
-
</div>
|
762 |
-
</div>
|
763 |
-
<div id="ux_filter_setting_div" style="display:none;">
|
764 |
-
<div class="widget-layout-body">
|
765 |
-
<div class="layout-control-group">
|
766 |
-
<label class="layout-control-label"><?php _e("Filter Color", gallery_bank); ?> : </label>
|
767 |
-
<div class="layout-controls">
|
768 |
-
<input type="text" class="layout-span10" id="ux_filter_color" name="ux_filter_color"
|
769 |
-
onclick="ux_clr_filter_color();"
|
770 |
-
style="background-color: <?php echo $filters_color; ?>;"
|
771 |
-
value="<?php echo $filters_color; ?>"/>
|
772 |
-
<img onclick="ux_clr_filter_color();" style="vertical-align: middle;margin-left: 5px;"
|
773 |
-
src="<?php echo GALLERY_BK_PLUGIN_URL . "/assets/images/color.png" ?>"/>
|
774 |
-
<div id="clr_filter_color"></div>
|
775 |
-
</div>
|
776 |
-
</div>
|
777 |
-
</div>
|
778 |
-
<div class="widget-layout-body">
|
779 |
-
<div class="layout-control-group">
|
780 |
-
<label class="layout-control-label"><?php _e("Filter Text Color", gallery_bank); ?> : </label>
|
781 |
-
<div class="layout-controls">
|
782 |
-
<input type="text" class="layout-span10" id="ux_filter_text_color"
|
783 |
-
name="ux_filter_text_color" onclick="ux_clr_filter_text_color();"
|
784 |
-
style="background-color: <?php echo $filters_text_color; ?>;"
|
785 |
-
value="<?php echo $filters_text_color; ?>"/>
|
786 |
-
<img onclick="ux_clr_filter_text_color();" style="vertical-align: middle;margin-left: 5px;"
|
787 |
-
src="<?php echo GALLERY_BK_PLUGIN_URL . "/assets/images/color.png" ?>"/>
|
788 |
-
<div id="clr_filter_text_color"></div>
|
789 |
-
</div>
|
790 |
-
</div>
|
791 |
-
</div>
|
792 |
-
<div class="widget-layout-body">
|
793 |
-
<div class="layout-control-group">
|
794 |
-
<label class="layout-control-label"><?php _e("Font-Family", gallery_bank); ?> : </label>
|
795 |
-
<div class="layout-controls">
|
796 |
-
<select id="ux_filter_font_family" class="layout-span10" name="ux_filter_font_family">
|
797 |
-
<option value="Arial">Arial</option>
|
798 |
-
<option value="Courier">Courier</option>
|
799 |
-
<option value="Courier New">Courier New</option>
|
800 |
-
<option value="Geneva">Geneva</option>
|
801 |
-
<option value="Helvetica">Helvetica</option>
|
802 |
-
<option value="inherit">inherit</option>
|
803 |
-
<option value="Lucida Grande">Lucida Grande</option>
|
804 |
-
<option value="Lucida Sans Unicode">Lucida Sans Unicode</option>
|
805 |
-
<option value="Monospace">Monospace</option>
|
806 |
-
<option value="Sans-serif">Sans-serif</option>
|
807 |
-
<option value="Tahoma">Tahoma</option>
|
808 |
-
<option value="Times">Times</option>
|
809 |
-
<option value="Times New Roman">Times New Roman</option>
|
810 |
-
<option value="Verdana">Verdana</option>
|
811 |
-
</select>
|
812 |
-
</div>
|
813 |
-
</div>
|
814 |
-
</div>
|
815 |
-
<div class="widget-layout-body">
|
816 |
-
<div class="layout-control-group">
|
817 |
-
<label class="layout-control-label"><?php _e("Font-Size", gallery_bank); ?> : </label>
|
818 |
-
<div class="layout-controls">
|
819 |
-
<select id="ux_filter_font_size" class="layout-span10" name="ux_filter_font_size">
|
820 |
-
<?php
|
821 |
-
for ($filterfont = 8; $filterfont <= 15; $filterfont++) {
|
822 |
-
?>
|
823 |
-
<option <?php if ($filterfont == $filter_font_size) echo "selected=\"selected\"" ?>
|
824 |
-
value="<?php echo $filterfont; ?>"><?php echo $filterfont; ?></option>
|
825 |
-
<?php
|
826 |
-
}
|
827 |
-
?>
|
828 |
-
</select> (px)
|
829 |
-
</div>
|
830 |
-
</div>
|
831 |
-
</div>
|
832 |
-
</div>
|
833 |
-
</div>
|
834 |
-
</div>
|
835 |
-
<div class="widget-layout">
|
836 |
-
<div class="widget-layout-title">
|
837 |
-
<h4><?php _e("Roles & Capabilities", gallery_bank); ?>
|
838 |
-
<i class="widget_premium_feature"><?php _e(" (Available in Premium Versions)", gallery_bank); ?></i>
|
839 |
-
</h4>
|
840 |
-
<span class="tools">
|
841 |
-
<a data-target="#capabilities_settings" data-toggle="collapse">
|
842 |
-
<i class="icon-chevron-down"></i>
|
843 |
-
</a>
|
844 |
-
</span>
|
845 |
-
</div>
|
846 |
-
<div id="capabilities_settings" class="collapse">
|
847 |
-
<div class="widget-layout-body">
|
848 |
-
<div class="layout-control-group">
|
849 |
-
<label class="layout-control-label"><?php _e("Privileges for Admin", gallery_bank); ?> : </label>
|
850 |
-
<div class="layout-controls-radio">
|
851 |
-
<input type="checkbox" id="ux_full_control_to_admin" onclick="disable_admin_checkbox(this);"
|
852 |
-
name="ux_full_control_to_admin" value="1"/><label
|
853 |
-
style="vertical-align: baseline;"><?php _e("Full Control", gallery_bank); ?></label>
|
854 |
-
<input type="checkbox" id="ux_read_control_to_admin" name="ux_read_control_to_admin" value="1"
|
855 |
-
style="margin-left: 10px;"/><label
|
856 |
-
style="vertical-align: baseline;"><?php _e("Read", gallery_bank); ?></label>
|
857 |
-
<input type="checkbox" id="ux_write_control_to_admin" name="ux_write_control_to_admin" value="1"
|
858 |
-
style="margin-left: 10px;"/><label
|
859 |
-
style="vertical-align: baseline;"><?php _e("Write", gallery_bank); ?></label>
|
860 |
-
</div>
|
861 |
-
</div>
|
862 |
-
</div>
|
863 |
-
<div class="widget-layout-body">
|
864 |
-
<div class="layout-control-group">
|
865 |
-
<label class="layout-control-label"><?php _e("Privileges for Editor", gallery_bank); ?> : </label>
|
866 |
-
<div class="layout-controls-radio">
|
867 |
-
<input type="checkbox" id="ux_full_control_to_editor" onclick="disable_admin_checkbox(this);"
|
868 |
-
name="ux_full_control_to_editor" value="1"/><label
|
869 |
-
style="vertical-align: baseline;"><?php _e("Full Control", gallery_bank); ?></label>
|
870 |
-
<input type="checkbox" id="ux_read_control_to_editor" name="ux_read_control_to_editor" value="1"
|
871 |
-
style="margin-left: 10px;"/><label
|
872 |
-
style="vertical-align: baseline;"><?php _e("Read", gallery_bank); ?></label>
|
873 |
-
<input type="checkbox" id="ux_write_control_to_editor" name="ux_write_control_to_editor"
|
874 |
-
value="1" style="margin-left: 10px;"/><label
|
875 |
-
style="vertical-align: baseline;"><?php _e("Write", gallery_bank); ?></label>
|
876 |
-
</div>
|
877 |
-
</div>
|
878 |
-
</div>
|
879 |
-
<div class="widget-layout-body">
|
880 |
-
<div class="layout-control-group">
|
881 |
-
<label class="layout-control-label"><?php _e("Privileges for Author", gallery_bank); ?> : </label>
|
882 |
-
<div class="layout-controls-radio">
|
883 |
-
<input type="checkbox" id="ux_full_control_to_author" onclick="disable_admin_checkbox(this);"
|
884 |
-
name="ux_full_control_to_author" value="1"/><label
|
885 |
-
style="vertical-align: baseline;"><?php _e("Full Control", gallery_bank); ?></label>
|
886 |
-
<input type="checkbox" id="ux_read_control_to_author" name="ux_read_control_to_author" value="1"
|
887 |
-
style="margin-left: 10px;"/><label
|
888 |
-
style="vertical-align: baseline;"><?php _e("Read", gallery_bank); ?></label>
|
889 |
-
<input type="checkbox" id="ux_write_control_to_author" name="ux_write_control_to_author"
|
890 |
-
value="1" style="margin-left: 10px;"/><label
|
891 |
-
style="vertical-align: baseline;"><?php _e("Write", gallery_bank); ?></label>
|
892 |
-
</div>
|
893 |
-
</div>
|
894 |
-
</div>
|
895 |
-
<div class="widget-layout-body">
|
896 |
-
<div class="layout-control-group">
|
897 |
-
<label class="layout-control-label"><?php _e("Privileges for Contributor", gallery_bank); ?>
|
898 |
-
: </label>
|
899 |
-
<div class="layout-controls-radio">
|
900 |
-
<input type="checkbox" id="ux_full_control_to_contributor"
|
901 |
-
onclick="disable_admin_checkbox(this);" name="ux_full_control_to_contributor" value="1"/><label
|
902 |
-
style="vertical-align: baseline;"><?php _e("Full Control", gallery_bank); ?></label>
|
903 |
-
<input type="checkbox" id="ux_read_control_to_contributor" name="ux_read_control_to_contributor"
|
904 |
-
value="1" style="margin-left: 10px;"/><label
|
905 |
-
style="vertical-align: baseline;"><?php _e("Read", gallery_bank); ?></label>
|
906 |
-
<input type="checkbox" id="ux_write_control_to_contributor"
|
907 |
-
name="ux_write_control_to_contributor" value="1" style="margin-left: 10px;"/><label
|
908 |
-
style="vertical-align: baseline;"><?php _e("Write", gallery_bank); ?></label>
|
909 |
-
</div>
|
910 |
-
</div>
|
911 |
-
</div>
|
912 |
-
<div class="widget-layout-body">
|
913 |
-
<div class="layout-control-group">
|
914 |
-
<label class="layout-control-label"><?php _e("Privileges for Subscriber", gallery_bank); ?>
|
915 |
-
: </label>
|
916 |
-
<div class="layout-controls-radio">
|
917 |
-
<input type="checkbox" id="ux_full_control_to_subscriber"
|
918 |
-
onclick="disable_admin_checkbox(this);" name="ux_full_control_to_subscriber"
|
919 |
-
value="1"/><label
|
920 |
-
style="vertical-align: baseline;"><?php _e("Full Control", gallery_bank); ?></label>
|
921 |
-
<input type="checkbox" id="ux_read_control_to_subscriber" name="ux_read_control_to_subscriber"
|
922 |
-
value="1" style="margin-left: 10px;"/><label
|
923 |
-
style="vertical-align: baseline;"><?php _e("Read", gallery_bank); ?></label>
|
924 |
-
<input type="checkbox" id="ux_write_control_to_subscriber" name="ux_write_control_to_subscriber"
|
925 |
-
value="1" style="margin-left: 10px;"/><label
|
926 |
-
style="vertical-align: baseline;"><?php _e("Write", gallery_bank); ?></label>
|
927 |
-
</div>
|
928 |
-
</div>
|
929 |
-
</div>
|
930 |
-
</div>
|
931 |
</div>
|
932 |
</div>
|
933 |
-
|
934 |
-
|
935 |
-
|
936 |
-
|
937 |
-
|
938 |
-
|
939 |
-
<span class="tools">
|
940 |
-
<a data-target="#lightbox_settings" data-toggle="collapse">
|
941 |
-
<i class="icon-chevron-down"></i>
|
942 |
-
</a>
|
943 |
-
</span>
|
944 |
-
</div>
|
945 |
-
<div id="lightbox_settings" class="collapse in">
|
946 |
-
<div class="widget-layout-body">
|
947 |
-
<div class="layout-control-group">
|
948 |
-
<label class="layout-control-label"><?php _e("Lightbox Type", gallery_bank); ?> : </label>
|
949 |
-
<div class="layout-controls">
|
950 |
-
<select class="layout-span10" id="ux_lightbox_type" name="ux_lightbox_type">
|
951 |
-
<option value="pretty_photo">
|
952 |
-
Pretty Photo
|
953 |
-
</option>
|
954 |
-
<option value="color_box">
|
955 |
-
Color Box
|
956 |
-
</option>
|
957 |
-
<option value="photo_swipe">
|
958 |
-
Photo Swipe
|
959 |
-
</option>
|
960 |
-
<option value="foo_box">
|
961 |
-
Foo Box
|
962 |
-
</option>
|
963 |
-
<option value="fancy_box">
|
964 |
-
Fancy Box
|
965 |
-
</option>
|
966 |
-
<option value="lightbox2">
|
967 |
-
Lightbox 2
|
968 |
-
</option>
|
969 |
-
<option value="GB_lightbox">
|
970 |
-
GB Lightbox
|
971 |
-
</option>
|
972 |
-
</select>
|
973 |
-
</div>
|
974 |
-
</div>
|
975 |
-
</div>
|
976 |
-
<div class="widget-layout-body">
|
977 |
-
<div class="layout-control-group">
|
978 |
-
<label class="layout-control-label"><?php _e("Opacity", gallery_bank); ?> : </label>
|
979 |
-
<div class="layout-controls">
|
980 |
-
<input type="text" class="layout-span10" id="ux_lightbox_opacity_val" name="ux_lightbox_opacity_val"
|
981 |
-
onblur="set_value('lightbox_opacity')" onkeyup="set_value('lightbox_opacity')"
|
982 |
-
onkeypress="return OnlyNumbers(event)" value="<?php echo $lightbox_overlay_opacity * 100; ?>"/>
|
983 |
-
<span style="padding-top:3px;">(%)</span>
|
984 |
-
</div>
|
985 |
-
</div>
|
986 |
-
</div>
|
987 |
-
<div class="widget-layout-body">
|
988 |
-
<div class="layout-control-group">
|
989 |
-
<label class="layout-control-label"><?php _e("Border Size", gallery_bank); ?> : </label>
|
990 |
-
<div class="layout-controls">
|
991 |
-
<input type="text" class="layout-span10" id="ux_lightbox_border_val" name="ux_lightbox_border_val"
|
992 |
-
onblur="set_value('lightbox_border')" onkeyup="set_value('lightbox_border')"
|
993 |
-
onkeypress="return OnlyNumbers(event)" value="<?php echo $lightbox_overlay_border_size; ?>"/>
|
994 |
-
<span style="padding-top:3px;">(0 - 20)</span>
|
995 |
-
</div>
|
996 |
-
</div>
|
997 |
-
</div>
|
998 |
-
<div class="widget-layout-body">
|
999 |
-
<div class="layout-control-group">
|
1000 |
-
<label class="layout-control-label"><?php _e("Border Radius", gallery_bank); ?> : </label>
|
1001 |
-
<div class="layout-controls">
|
1002 |
-
<input type="text" class="layout-span10" id="ux_lightbox_radius_val" name="ux_lightbox_radius_val"
|
1003 |
-
onblur="set_value('lightbox_radius');" onkeyup="set_value('lightbox_radius');"
|
1004 |
-
onkeypress="return OnlyNumbers(event);" value="<?php echo $lightbox_overlay_border_radius; ?>"/>
|
1005 |
-
<span style="padding-top:3px;">(0 - 20)</span>
|
1006 |
-
</div>
|
1007 |
-
</div>
|
1008 |
-
</div>
|
1009 |
-
<div class="widget-layout-body">
|
1010 |
-
<div class="layout-control-group">
|
1011 |
-
<label class="layout-control-label"><?php _e("Text Color", gallery_bank); ?> : </label>
|
1012 |
-
<div class="layout-controls">
|
1013 |
-
<input type="text" class="layout-span10" name="ux_lightbox_text_color" id="ux_lightbox_text_color"
|
1014 |
-
onclick="ux_clr_lightbox_text_color();"
|
1015 |
-
style="background-color: <?php echo $lightbox_text_color; ?>;"
|
1016 |
-
value="<?php echo $lightbox_text_color; ?>"/>
|
1017 |
-
<img onclick="ux_clr_lightbox_text_color();" style="vertical-align: middle;margin-left: 5px;"
|
1018 |
-
src="<?php echo GALLERY_BK_PLUGIN_URL . "/assets/images/color.png" ?>"/>
|
1019 |
-
<div id="clr_lightbox_text_color"></div>
|
1020 |
-
</div>
|
1021 |
-
</div>
|
1022 |
-
</div>
|
1023 |
-
<div class="widget-layout-body">
|
1024 |
-
<div class="layout-control-group">
|
1025 |
-
<label class="layout-control-label"><?php _e("Border Color", gallery_bank); ?> : </label>
|
1026 |
-
<div class="layout-controls">
|
1027 |
-
<input type="text" class="layout-span10" name="ux_overlay_border_color"
|
1028 |
-
onclick="ux_clr_overlay_border_color();" id="ux_overlay_border_color"
|
1029 |
-
style="background-color: <?php echo $lightbox_overlay_border_color; ?>"
|
1030 |
-
value="<?php echo $lightbox_overlay_border_color; ?>"/><img
|
1031 |
-
onclick="ux_clr_overlay_border_color();" style="vertical-align: middle;margin-left: 5px;"
|
1032 |
-
src="<?php echo GALLERY_BK_PLUGIN_URL . "/assets/images/color.png" ?>"/>
|
1033 |
-
<div id="clr_overlay_border_color"></div>
|
1034 |
-
</div>
|
1035 |
-
</div>
|
1036 |
-
</div>
|
1037 |
-
<div class="widget-layout-body">
|
1038 |
-
<div class="layout-control-group">
|
1039 |
-
<label class="layout-control-label"><?php _e("Inline Background", gallery_bank); ?> : </label>
|
1040 |
-
<div class="layout-controls">
|
1041 |
-
<input type="text" class="layout-span10" name="ux_inline_overlay_color" id="ux_inline_overlay_color"
|
1042 |
-
onclick="ux_clr_inline_overlay_color();"
|
1043 |
-
style="background-color: <?php echo $lightbox_inline_bg_color; ?>;"
|
1044 |
-
value="<?php echo $lightbox_inline_bg_color; ?>"/>
|
1045 |
-
<img onclick="ux_clr_inline_overlay_color();" style="vertical-align: middle;margin-left: 5px;"
|
1046 |
-
src="<?php echo GALLERY_BK_PLUGIN_URL . "/assets/images/color.png" ?>"/>
|
1047 |
-
<div id="clr_inline_overlay_color"></div>
|
1048 |
-
</div>
|
1049 |
-
</div>
|
1050 |
-
</div>
|
1051 |
-
<div class="widget-layout-body">
|
1052 |
-
<div class="layout-control-group">
|
1053 |
-
<label class="layout-control-label"><?php _e("Overlay Background", gallery_bank); ?> : </label>
|
1054 |
-
<div class="layout-controls">
|
1055 |
-
<input type="text" class="layout-span10" name="ux_overlay_bg_color" id="ux_overlay_bg_color"
|
1056 |
-
onclick="ux_clr_overlay_bg_color();"
|
1057 |
-
style="background-color: <?php echo $lightbox_overlay_bg_color; ?>;"
|
1058 |
-
value="<?php echo $lightbox_overlay_bg_color; ?>"/>
|
1059 |
-
<img onclick="ux_clr_overlay_bg_color();" style="vertical-align: middle;margin-left: 5px;"
|
1060 |
-
src="<?php echo GALLERY_BK_PLUGIN_URL . "/assets/images/color.png" ?>"/>
|
1061 |
-
<div id="clr_overlay_bg_color"></div>
|
1062 |
-
</div>
|
1063 |
-
</div>
|
1064 |
-
</div>
|
1065 |
-
<div class="widget-layout-body">
|
1066 |
-
<div class="layout-control-group">
|
1067 |
-
<label class="layout-control-label"><?php _e("Fade In Time", gallery_bank); ?> : </label>
|
1068 |
-
<div class="layout-controls">
|
1069 |
-
<input type="text" class="layout-span10" name="ux_fade_in_time" id="ux_fade_in_time"
|
1070 |
-
onkeypress="return OnlyNumbers(event)" value="<?php echo $lightbox_fade_in_time; ?>"/>
|
1071 |
-
</div>
|
1072 |
-
</div>
|
1073 |
-
</div>
|
1074 |
-
<div class="widget-layout-body">
|
1075 |
-
<div class="layout-control-group">
|
1076 |
-
<label class="layout-control-label"><?php _e("Fade Out Time", gallery_bank); ?> : </label>
|
1077 |
-
<div class="layout-controls">
|
1078 |
-
<input type="text" class="layout-span10" name="ux_fade_out_time" id="ux_fade_out_time"
|
1079 |
-
onkeypress="return OnlyNumbers(event)" value="<?php echo $lightbox_fade_out_time; ?>"/>
|
1080 |
-
</div>
|
1081 |
-
</div>
|
1082 |
-
</div>
|
1083 |
-
<div class="widget-layout-body">
|
1084 |
-
<div class="layout-control-group">
|
1085 |
-
<label class="layout-control-label"><?php _e("Text-Align", gallery_bank); ?> : </label>
|
1086 |
-
<div class="layout-controls">
|
1087 |
-
<select id="ux_lightbox_text_align" class="layout-span10" name="ux_lightbox_text_align">
|
1088 |
-
<option value="center">Center</option>
|
1089 |
-
<option value="inherit">Inherit</option>
|
1090 |
-
<option value="justify">Justify</option>
|
1091 |
-
<option value="left">Left</option>
|
1092 |
-
<option value="right">Right</option>
|
1093 |
-
</select>
|
1094 |
-
</div>
|
1095 |
-
</div>
|
1096 |
-
</div>
|
1097 |
-
<div class="widget-layout-body">
|
1098 |
-
<div class="layout-control-group">
|
1099 |
-
<label class="layout-control-label"><?php _e("Font-Family", gallery_bank); ?> : </label>
|
1100 |
-
<div class="layout-controls">
|
1101 |
-
<select id="ux_lightbox_font_family" class="layout-span10" name="ux_lightbox_font_family">
|
1102 |
-
<option value="Arial">Arial</option>
|
1103 |
-
<option value="Courier">Courier</option>
|
1104 |
-
<option value="Courier New">Courier New</option>
|
1105 |
-
<option value="Geneva">Geneva</option>
|
1106 |
-
<option value="Helvetica">Helvetica</option>
|
1107 |
-
<option value="inherit">inherit</option>
|
1108 |
-
<option value="Lucida Grande">Lucida Grande</option>
|
1109 |
-
<option value="Lucida Sans Unicode">Lucida Sans Unicode</option>
|
1110 |
-
<option value="Monospace">Monospace</option>
|
1111 |
-
<option value="Sans-serif">Sans-serif</option>
|
1112 |
-
<option value="Tahoma">Tahoma</option>
|
1113 |
-
<option value="Times">Times</option>
|
1114 |
-
<option value="Times New Roman">Times New Roman</option>
|
1115 |
-
<option value="Verdana">Verdana</option>
|
1116 |
-
</select>
|
1117 |
-
</div>
|
1118 |
-
</div>
|
1119 |
-
</div>
|
1120 |
-
<div class="widget-layout-body">
|
1121 |
-
<div class="layout-control-group">
|
1122 |
-
<label class="layout-control-label"><?php _e("Heading Font-Size", gallery_bank); ?> : </label>
|
1123 |
-
<div class="layout-controls">
|
1124 |
-
<select id="ux_lightbox_heading_font_size" class="layout-span10" name="ux_lightbox_heading_font_size">
|
1125 |
-
<?php
|
1126 |
-
for ($lightbox_heading_font = 8; $lightbox_heading_font <= 24; $lightbox_heading_font++) {
|
1127 |
-
?>
|
1128 |
-
<option <?php if ($lightbox_heading_font == $lightbox_heading_font_size) echo "selected=\"selected\"" ?>
|
1129 |
-
value="<?php echo $lightbox_heading_font; ?>"><?php echo $lightbox_heading_font; ?></option>
|
1130 |
-
<?php
|
1131 |
-
}
|
1132 |
-
?>
|
1133 |
-
</select> (px)
|
1134 |
-
</div>
|
1135 |
-
</div>
|
1136 |
-
</div>
|
1137 |
-
<div class="widget-layout-body">
|
1138 |
-
<div class="layout-control-group">
|
1139 |
-
<label class="layout-control-label"><?php _e("Text Font-Size", gallery_bank); ?> : </label>
|
1140 |
-
<div class="layout-controls">
|
1141 |
-
<select id="ux_lightbox_text_font_size" class="layout-span10" name="ux_lightbox_text_font_size">
|
1142 |
-
<?php
|
1143 |
-
for ($lightboxfont = 8; $lightboxfont <= 15; $lightboxfont++) {
|
1144 |
-
?>
|
1145 |
-
<option <?php if ($lightboxfont == $lightbox_text_font_size) echo "selected=\"selected\"" ?>
|
1146 |
-
value="<?php echo $lightboxfont; ?>"><?php echo $lightboxfont; ?></option>
|
1147 |
-
<?php
|
1148 |
-
}
|
1149 |
-
?>
|
1150 |
-
</select> (px)
|
1151 |
-
</div>
|
1152 |
-
</div>
|
1153 |
-
</div>
|
1154 |
-
<div class="widget-layout-body">
|
1155 |
-
<div class="layout-control-group">
|
1156 |
-
<label class="layout-control-label"><?php _e("Facebook Comments", gallery_bank); ?> : </label>
|
1157 |
-
<div class="layout-controls-radio">
|
1158 |
-
<?php
|
1159 |
-
if ($facebook_comments == 1) {
|
1160 |
-
?>
|
1161 |
-
<input type="radio" name="ux_facebook" value="1" checked="checked"
|
1162 |
-
onclick="disable_lightbox_type();"/> <label
|
1163 |
-
style="vertical-align: baseline;"><?php _e("Enable", gallery_bank); ?></label>
|
1164 |
-
<input type="radio" style="margin-left: 10px;" name="ux_facebook"
|
1165 |
-
onclick="disable_lightbox_type();" value="0"/> <label
|
1166 |
-
style="vertical-align: baseline;"><?php _e("Disable", gallery_bank); ?></label>
|
1167 |
-
<?php
|
1168 |
-
} else {
|
1169 |
-
?>
|
1170 |
-
<input type="radio" name="ux_facebook" value="1" onclick="disable_lightbox_type();"/> <label
|
1171 |
-
style="vertical-align: baseline;"><?php _e("Enable", gallery_bank); ?></label>
|
1172 |
-
<input type="radio" style="margin-left: 10px;" name="ux_facebook"
|
1173 |
-
onclick="disable_lightbox_type();" checked="checked" value="0"/> <label
|
1174 |
-
style="vertical-align: baseline;"><?php _e("Disable", gallery_bank); ?></label>
|
1175 |
-
<?php
|
1176 |
-
}
|
1177 |
-
?>
|
1178 |
-
</div>
|
1179 |
-
</div>
|
1180 |
-
</div>
|
1181 |
-
<div class="widget-layout-body">
|
1182 |
-
<div class="layout-control-group">
|
1183 |
-
<label class="layout-control-label"><?php _e("Social Sharing", gallery_bank); ?> : </label>
|
1184 |
-
<div class="layout-controls-radio">
|
1185 |
-
<?php
|
1186 |
-
if ($social_sharing == 1) {
|
1187 |
-
?>
|
1188 |
-
<input onclick="disable_lightbox();" type="radio" name="ux_social_sharing" value="1" checked="checked"/> <label
|
1189 |
-
style="vertical-align: baseline;"><?php _e("Enable", gallery_bank); ?></label>
|
1190 |
-
<input onclick="disable_lightbox();" type="radio" style="margin-left: 10px;" name="ux_social_sharing" value="0"/> <label
|
1191 |
-
style="vertical-align: baseline;"><?php _e("Disable", gallery_bank); ?></label>
|
1192 |
-
<?php
|
1193 |
-
} else {
|
1194 |
-
?>
|
1195 |
-
<input onclick="disable_lightbox();" type="radio" name="ux_social_sharing" value="1"/> <label
|
1196 |
-
style="vertical-align: baseline;"><?php _e("Enable", gallery_bank); ?></label>
|
1197 |
-
<input onclick="disable_lightbox();" type="radio" style="margin-left: 10px;" name="ux_social_sharing" checked="checked"
|
1198 |
-
value="0"/> <label
|
1199 |
-
style="vertical-align: baseline;"><?php _e("Disable", gallery_bank); ?></label>
|
1200 |
-
<?php
|
1201 |
-
}
|
1202 |
-
?>
|
1203 |
-
</div>
|
1204 |
-
</div>
|
1205 |
-
</div>
|
1206 |
-
<div class="widget-layout-body">
|
1207 |
-
<div class="layout-control-group">
|
1208 |
-
<label class="layout-control-label"><?php _e("Image Title", gallery_bank); ?> : </label>
|
1209 |
-
<div class="layout-controls-radio">
|
1210 |
-
<?php
|
1211 |
-
if ($image_title_setting == 1) {
|
1212 |
-
?>
|
1213 |
-
<input type="radio" name="ux_image_title" value="1" checked="checked"/> <label
|
1214 |
-
style="vertical-align: baseline;"><?php _e("Enable", gallery_bank); ?></label>
|
1215 |
-
<input type="radio" style="margin-left: 10px;" name="ux_image_title" value="0"/> <label
|
1216 |
-
style="vertical-align: baseline;"><?php _e("Disable", gallery_bank); ?></label>
|
1217 |
-
<?php
|
1218 |
-
} else {
|
1219 |
-
?>
|
1220 |
-
<input type="radio" name="ux_image_title" value="1"/> <label
|
1221 |
-
style="vertical-align: baseline;"><?php _e("Enable", gallery_bank); ?></label>
|
1222 |
-
<input type="radio" style="margin-left: 10px;" name="ux_image_title" checked="checked" value="0"/>
|
1223 |
-
<label style="vertical-align: baseline;"><?php _e("Disable", gallery_bank); ?></label>
|
1224 |
-
<?php
|
1225 |
-
}
|
1226 |
-
?>
|
1227 |
-
</div>
|
1228 |
-
</div>
|
1229 |
-
</div>
|
1230 |
-
<div class="widget-layout-body">
|
1231 |
-
<div class="layout-control-group">
|
1232 |
-
<label class="layout-control-label"><?php _e("Image Description", gallery_bank); ?> : </label>
|
1233 |
-
<div class="layout-controls-radio">
|
1234 |
-
<?php
|
1235 |
-
if ($image_desc_setting == 1) {
|
1236 |
-
?>
|
1237 |
-
<input type="radio" name="ux_image_desc" value="1" checked="checked"/> <label
|
1238 |
-
style="vertical-align: baseline;"><?php _e("Enable", gallery_bank); ?></label>
|
1239 |
-
<input type="radio" style="margin-left: 10px;" name="ux_image_desc" value="0"/> <label
|
1240 |
-
style="vertical-align: baseline;"><?php _e("Disable", gallery_bank); ?></label>
|
1241 |
-
<?php
|
1242 |
-
} else {
|
1243 |
-
?>
|
1244 |
-
<input type="radio" name="ux_image_desc" value="1"/> <label
|
1245 |
-
style="vertical-align: baseline;"><?php _e("Enable", gallery_bank); ?></label>
|
1246 |
-
<input type="radio" style="margin-left: 10px;" name="ux_image_desc" checked="checked" value="0"/>
|
1247 |
-
<label style="vertical-align: baseline;"><?php _e("Disable", gallery_bank); ?></label>
|
1248 |
-
<?php
|
1249 |
-
}
|
1250 |
-
?>
|
1251 |
-
</div>
|
1252 |
-
</div>
|
1253 |
-
</div>
|
1254 |
-
</div>
|
1255 |
-
</div>
|
1256 |
-
<div class="widget-layout">
|
1257 |
-
<div class="widget-layout-title">
|
1258 |
-
<h4><?php _e("Front - End Layout Settings", gallery_bank); ?>
|
1259 |
-
<i class="widget_premium_feature"><?php _e(" (Available in Premium Versions)", gallery_bank); ?></i>
|
1260 |
-
</h4>
|
1261 |
-
<span class="tools">
|
1262 |
-
<a data-target="#frontend_settings" data-toggle="collapse">
|
1263 |
-
<i class="icon-chevron-down"></i>
|
1264 |
-
</a>
|
1265 |
-
</span>
|
1266 |
-
</div>
|
1267 |
-
<div id="frontend_settings" class="collapse">
|
1268 |
-
<div class="widget-layout-body">
|
1269 |
-
<div class="layout-control-group">
|
1270 |
-
<label class="layout-control-label"><?php _e("Text for Back Button", gallery_bank); ?> : </label>
|
1271 |
-
|
1272 |
-
<div class="layout-controls">
|
1273 |
-
<input type="text" class="layout-span10" id="ux_back_button" name="ux_back_button"
|
1274 |
-
value="<?php echo $back_button_text; ?>"/>
|
1275 |
-
</div>
|
1276 |
-
</div>
|
1277 |
-
</div>
|
1278 |
-
<div class="widget-layout-body">
|
1279 |
-
<div class="layout-control-group">
|
1280 |
-
<label class="layout-control-label"><?php _e("Button Color", gallery_bank); ?> : </label>
|
1281 |
-
<div class="layout-controls">
|
1282 |
-
<input type="text" class="layout-span10" id="ux_button_color" name="ux_button_color"
|
1283 |
-
onclick="ux_clr_button_color();" style="background-color: <?php echo $button_color; ?>;"
|
1284 |
-
value="<?php echo $button_color; ?>"/>
|
1285 |
-
<img onclick="ux_clr_button_color();" style="vertical-align: middle;margin-left: 5px;"
|
1286 |
-
src="<?php echo GALLERY_BK_PLUGIN_URL . "/assets/images/color.png" ?>"/>
|
1287 |
-
<div id="clr_button_color"></div>
|
1288 |
-
</div>
|
1289 |
-
</div>
|
1290 |
-
</div>
|
1291 |
-
<div class="widget-layout-body">
|
1292 |
-
<div class="layout-control-group">
|
1293 |
-
<label class="layout-control-label"><?php _e("Button Text Color", gallery_bank); ?> : </label>
|
1294 |
-
<div class="layout-controls">
|
1295 |
-
<input type="text" class="layout-span10" id="ux_button_text_color" name="ux_button_text_color"
|
1296 |
-
onclick="ux_clr_button_text_color();"
|
1297 |
-
style="background-color: <?php echo $button_text_color; ?>;"
|
1298 |
-
value="<?php echo $button_text_color; ?>"/>
|
1299 |
-
<img onclick="ux_clr_button_text_color();" style="vertical-align: middle;margin-left: 5px;"
|
1300 |
-
src="<?php echo GALLERY_BK_PLUGIN_URL . "/assets/images/color.png" ?>"/>
|
1301 |
-
<div id="clr_button_text_color"></div>
|
1302 |
-
</div>
|
1303 |
-
</div>
|
1304 |
-
</div>
|
1305 |
-
<div class="widget-layout-body">
|
1306 |
-
<div class="layout-control-group">
|
1307 |
-
<label class="layout-control-label"><?php _e("Font-Family", gallery_bank); ?> : </label>
|
1308 |
-
<div class="layout-controls">
|
1309 |
-
<select id="ux_button_font_family" class="layout-span10" name="ux_button_font_family">
|
1310 |
-
<option value="Arial">Arial</option>
|
1311 |
-
<option value="Courier">Courier</option>
|
1312 |
-
<option value="Courier New">Courier New</option>
|
1313 |
-
<option value="Geneva">Geneva</option>
|
1314 |
-
<option value="Helvetica">Helvetica</option>
|
1315 |
-
<option value="inherit">inherit</option>
|
1316 |
-
<option value="Lucida Grande">Lucida Grande</option>
|
1317 |
-
<option value="Lucida Sans Unicode">Lucida Sans Unicode</option>
|
1318 |
-
<option value="Monospace">Monospace</option>
|
1319 |
-
<option value="Sans-serif">Sans-serif</option>
|
1320 |
-
<option value="Tahoma">Tahoma</option>
|
1321 |
-
<option value="Times">Times</option>
|
1322 |
-
<option value="Times New Roman">Times New Roman</option>
|
1323 |
-
<option value="Verdana">Verdana</option>
|
1324 |
-
</select>
|
1325 |
-
</div>
|
1326 |
-
</div>
|
1327 |
-
</div>
|
1328 |
-
<div class="widget-layout-body">
|
1329 |
-
<div class="layout-control-group">
|
1330 |
-
<label class="layout-control-label"><?php _e("Font-Size", gallery_bank); ?> : </label>
|
1331 |
-
<div class="layout-controls">
|
1332 |
-
<select id="ux_button_font_size" class="layout-span10" name="ux_button_font_size">
|
1333 |
-
<?php
|
1334 |
-
for ($buttonfont = 8; $buttonfont <= 15; $buttonfont++) {
|
1335 |
-
?>
|
1336 |
-
<option <?php if ($buttonfont == $back_button_font_size) echo "selected=\"selected\"" ?>
|
1337 |
-
value="<?php echo $buttonfont; ?>"><?php echo $buttonfont; ?></option>
|
1338 |
-
<?php
|
1339 |
-
}
|
1340 |
-
?>
|
1341 |
-
</select> (px)
|
1342 |
-
</div>
|
1343 |
-
</div>
|
1344 |
-
</div>
|
1345 |
-
<div class="widget-layout-body">
|
1346 |
-
<div class="layout-control-group">
|
1347 |
-
<label class="layout-control-label"><?php _e("Album Seperator", gallery_bank); ?> : </label>
|
1348 |
-
<div class="layout-controls-radio">
|
1349 |
-
<?php
|
1350 |
-
if ($album_seperator == 1) {
|
1351 |
-
?>
|
1352 |
-
<input type="radio" name="ux_seperator" value="1" checked="checked"/> <label
|
1353 |
-
style="vertical-align: baseline;"><?php _e("Enable", gallery_bank); ?></label>
|
1354 |
-
<input type="radio" style="margin-left: 10px;" name="ux_seperator" value="0"/> <label
|
1355 |
-
style="vertical-align: baseline;"><?php _e("Disable", gallery_bank); ?></label>
|
1356 |
-
<?php
|
1357 |
-
} else {
|
1358 |
-
?>
|
1359 |
-
<input type="radio" name="ux_seperator" value="1"/> <label
|
1360 |
-
style="vertical-align: baseline;"><?php _e("Enable", gallery_bank); ?></label>
|
1361 |
-
<input type="radio" style="margin-left: 10px;" name="ux_seperator" checked="checked"
|
1362 |
-
value="0"/> <label
|
1363 |
-
style="vertical-align: baseline;"><?php _e("Disable", gallery_bank); ?></label>
|
1364 |
-
<?php
|
1365 |
-
}
|
1366 |
-
?>
|
1367 |
-
</div>
|
1368 |
-
</div>
|
1369 |
-
</div>
|
1370 |
-
</div>
|
1371 |
-
</div>
|
1372 |
-
<div class="widget-layout">
|
1373 |
-
<div class="widget-layout-title">
|
1374 |
-
<h4><?php _e("Pagination Settings for Images", gallery_bank); ?>
|
1375 |
-
<i class="widget_premium_feature"><?php _e(" (Available in Premium Versions)", gallery_bank); ?></i>
|
1376 |
-
</h4>
|
1377 |
-
<span class="tools">
|
1378 |
-
<a data-target="#pagination_settings" data-toggle="collapse">
|
1379 |
-
<i class="icon-chevron-down"></i>
|
1380 |
-
</a>
|
1381 |
-
</span>
|
1382 |
-
</div>
|
1383 |
-
<div id="pagination_settings" class="collapse">
|
1384 |
-
<div class="widget-layout-body">
|
1385 |
-
<div class="layout-control-group">
|
1386 |
-
<label class="layout-control-label"><?php _e("Paging", gallery_bank); ?> : </label>
|
1387 |
-
<div class="layout-controls-radio">
|
1388 |
-
<?php
|
1389 |
-
if ($pagination_setting == 1) {
|
1390 |
-
?>
|
1391 |
-
<input type="radio" name="ux_images_paging" value="1" checked="checked"
|
1392 |
-
onclick="show_images_per_page()"/> <label
|
1393 |
-
style="vertical-align: baseline;"><?php _e("Enable", gallery_bank); ?></label>
|
1394 |
-
<input type="radio" style="margin-left: 10px;" name="ux_images_paging" value="0"
|
1395 |
-
onclick="show_images_per_page()"/> <label
|
1396 |
-
style="vertical-align: baseline;"><?php _e("Disable", gallery_bank); ?></label>
|
1397 |
-
<?php
|
1398 |
-
} else {
|
1399 |
-
?>
|
1400 |
-
<input type="radio" name="ux_images_paging" value="1" onclick="show_images_per_page()"/>
|
1401 |
-
<label style="vertical-align: baseline;"><?php _e("Enable", gallery_bank); ?></label>
|
1402 |
-
<input type="radio" style="margin-left: 10px;" name="ux_images_paging" value="0"
|
1403 |
-
checked="checked" onclick="show_images_per_page()"/> <label
|
1404 |
-
style="vertical-align: baseline;"><?php _e("Disable", gallery_bank); ?></label>
|
1405 |
-
<?php
|
1406 |
-
}
|
1407 |
-
?>
|
1408 |
-
</div>
|
1409 |
-
</div>
|
1410 |
-
</div>
|
1411 |
-
<div class="widget-layout-body" id="ux_images_per_page_div" style="display: none;">
|
1412 |
-
<div class="layout-control-group">
|
1413 |
-
<label class="layout-control-label"><?php _e("No. of Images Per Page ", gallery_bank); ?> : </label>
|
1414 |
-
<div class="layout-controls">
|
1415 |
-
<input type="text" class="layout-span10" id="ux_images_per_page_val"
|
1416 |
-
name="ux_images_per_page_val" onblur="set_value('images_per_page')"
|
1417 |
-
onkeypress="return OnlyNumbers(event)" value="<?php echo $images_per_page; ?>"/>
|
1418 |
-
</div>
|
1419 |
-
</div>
|
1420 |
-
</div>
|
1421 |
-
</div>
|
1422 |
-
</div>
|
1423 |
-
<div class="widget-layout">
|
1424 |
-
<div class="widget-layout-title">
|
1425 |
-
<h4><?php _e("Slide Show Settings", gallery_bank); ?>
|
1426 |
-
<i class="widget_premium_feature"><?php _e(" (Available in Premium Versions)", gallery_bank); ?></i>
|
1427 |
-
</h4>
|
1428 |
-
<span class="tools">
|
1429 |
-
<a data-target="#slideshow_settings" data-toggle="collapse">
|
1430 |
-
<i class="icon-chevron-down"></i>
|
1431 |
-
</a>
|
1432 |
-
</span>
|
1433 |
-
</div>
|
1434 |
-
<div id="slideshow_settings" class="collapse">
|
1435 |
-
<div class="widget-layout-body">
|
1436 |
-
<div class="layout-control-group">
|
1437 |
-
<label class="layout-control-label"><?php _e("Auto Play", gallery_bank); ?> : </label>
|
1438 |
-
<div class="layout-controls-radio">
|
1439 |
-
<?php
|
1440 |
-
if ($autoplay_setting == 1) {
|
1441 |
-
?>
|
1442 |
-
<input type="radio" name="ux_slideshow" value="1" checked="checked"
|
1443 |
-
onclick="show_slide_interval();"/> <label
|
1444 |
-
style="vertical-align: baseline;"><?php _e("Enable", gallery_bank); ?></label>
|
1445 |
-
<input type="radio" style="margin-left: 10px;" name="ux_slideshow" value="0"
|
1446 |
-
onclick="show_slide_interval();"/> <label
|
1447 |
-
style="vertical-align: baseline;"><?php _e("Disable", gallery_bank); ?></label>
|
1448 |
-
<?php
|
1449 |
-
} else {
|
1450 |
-
?>
|
1451 |
-
<input type="radio" name="ux_slideshow" value="1" onclick="show_slide_interval();"/> <label
|
1452 |
-
style="vertical-align: baseline;"><?php _e("Enable", gallery_bank); ?></label>
|
1453 |
-
<input type="radio" style="margin-left: 10px;" name="ux_slideshow" checked="checked"
|
1454 |
-
value="0" onclick="show_slide_interval();"/> <label
|
1455 |
-
style="vertical-align: baseline;"><?php _e("Disable", gallery_bank); ?></label>
|
1456 |
-
<?php
|
1457 |
-
}
|
1458 |
-
?>
|
1459 |
-
</div>
|
1460 |
-
</div>
|
1461 |
-
</div>
|
1462 |
-
<div class="widget-layout-body" id="ux_slide_interval_div">
|
1463 |
-
<div class="layout-control-group">
|
1464 |
-
<label class="layout-control-label"><?php _e("Interval", gallery_bank); ?> : </label>
|
1465 |
-
<div class="layout-controls">
|
1466 |
-
<input type="text" class="layout-span10" id="ux_slide_val" name="ux_slide_val"
|
1467 |
-
onblur="set_value('slide');" onkeyup="set_value('slide');"
|
1468 |
-
onkeypress="return OnlyNumbers(event);" value="<?php echo $slide_interval; ?>"/>
|
1469 |
-
<span style="padding-top:3px;">(0 - 15)</span>
|
1470 |
-
</div>
|
1471 |
-
</div>
|
1472 |
-
</div>
|
1473 |
-
</div>
|
1474 |
-
</div>
|
1475 |
-
<div class="widget-layout">
|
1476 |
-
<div class="widget-layout-title">
|
1477 |
-
<h4><?php _e("Language Direction Settings", gallery_bank); ?>
|
1478 |
-
<i class="widget_premium_feature"><?php _e(" (Available in Premium Versions)", gallery_bank); ?></i>
|
1479 |
-
</h4>
|
1480 |
-
<span class="tools">
|
1481 |
-
<a data-target="#lang_dir_settings" data-toggle="collapse">
|
1482 |
-
<i class="icon-chevron-down"></i>
|
1483 |
-
</a>
|
1484 |
-
</span>
|
1485 |
-
</div>
|
1486 |
-
<div id="lang_dir_settings" class="collapse">
|
1487 |
-
<div class="widget-layout-body">
|
1488 |
-
<div class="layout-control-group">
|
1489 |
-
<label class="layout-control-label"><?php _e("Language Direction", gallery_bank); ?> : </label>
|
1490 |
-
<select id="ux_lang_dir" class="layout-span8" name="ux_lang_dir">
|
1491 |
-
<option value="inherit">Default</option>
|
1492 |
-
<option value="rtl">Right to Left</option>
|
1493 |
-
<option value="ltr">Left to Right</option>
|
1494 |
-
</select>
|
1495 |
-
</div>
|
1496 |
-
</div>
|
1497 |
-
</div>
|
1498 |
-
</div>
|
1499 |
-
</div>
|
1500 |
-
</div>
|
1501 |
-
</div>
|
1502 |
-
</div>
|
1503 |
-
</div>
|
1504 |
-
</form>
|
1505 |
<script type="text/javascript">
|
1506 |
var settings_array = [];
|
1507 |
jQuery(document).ready(function () {
|
249 |
|
250 |
?>
|
251 |
<!--suppress ALL -->
|
252 |
+
<form id="global_settings" class="layout-form">
|
253 |
+
<div id="poststuff" style="width: 99% !important;">
|
254 |
+
<div id="post-body" class="metabox-holder">
|
255 |
+
<div id="postbox-container-2" class="postbox-container">
|
256 |
+
<div id="advanced" class="meta-box-sortables">
|
257 |
+
<div id="gallery_bank_get_started" class="postbox" >
|
258 |
+
<div class="handlediv" data-target="#ux_global_settings" title="Click to toggle" data-toggle="collapse"><br></div>
|
259 |
+
<h3 class="hndle"><span><?php _e("Global Settings", gallery_bank); ?></span></h3>
|
260 |
+
<div class="inside">
|
261 |
+
<div id="ux_global_settings" class="gallery_bank_layout">
|
262 |
+
<a class="btn btn-inverse" href="admin.php?page=gallery_bank"><?php _e("Back to Albums", gallery_bank); ?></a>
|
263 |
+
<a onclick="show_premium_message();" href="#" class="btn btn-info" style="float:right"><?php _e("Update Settings", gallery_bank); ?></a>
|
264 |
+
<div class="separator-doubled"></div>
|
265 |
+
<div class="fluid-layout">
|
266 |
+
<div class="layout-span6">
|
267 |
+
<div class="widget-layout">
|
268 |
+
<div class="widget-layout-title">
|
269 |
+
<h4>
|
270 |
+
<?php _e("Thumbnail Settings", gallery_bank); ?>
|
271 |
+
<i class="widget_premium_feature"><?php _e(" (Available in Premium Versions)", gallery_bank); ?></i>
|
272 |
+
</h4>
|
273 |
+
<span class="tools">
|
274 |
+
<a data-target="#thumbnail_settings" data-toggle="collapse">
|
275 |
+
<i class="icon-chevron-down"></i>
|
276 |
+
</a>
|
277 |
+
</span>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
278 |
</div>
|
279 |
+
<div id="thumbnail_settings" class="collapse in">
|
280 |
+
<div class="widget-layout-body">
|
281 |
+
<div class="layout-control-group">
|
282 |
+
<label class="layout-control-label"><?php _e("Thumbnail Size", gallery_bank); ?> : </label>
|
283 |
+
<div class="layout-controls-radio">
|
284 |
+
<?php
|
285 |
+
if ($thumbnails_custom_enable == 1) {
|
286 |
+
?>
|
287 |
+
<input type="radio" name="ux_thumbnail" value="1" checked="checked"
|
288 |
+
onclick="check_thumbnail_settings();"/> <label
|
289 |
+
style="vertical-align: baseline;"><?php _e("Original", gallery_bank); ?></label>
|
290 |
+
<input type="radio" style="margin-left: 10px;" name="ux_thumbnail" value="0"
|
291 |
+
onclick="check_thumbnail_settings();"/><label style="vertical-align: baseline;">
|
292 |
+
<?php _e("Custom", gallery_bank); ?> </label>
|
293 |
+
<?php
|
294 |
+
} else {
|
295 |
+
?>
|
296 |
+
<input type="radio" name="ux_thumbnail" value="1" onclick="check_thumbnail_settings();"/>
|
297 |
+
<label style="vertical-align: baseline;"><?php _e("Original", gallery_bank); ?></label>
|
298 |
+
<input type="radio" style="margin-left: 10px;" name="ux_thumbnail" checked="checked"
|
299 |
+
value="0" onclick="check_thumbnail_settings();"/> <label style="vertical-align: baseline;">
|
300 |
+
<?php _e("Custom", gallery_bank); ?></label>
|
301 |
+
<?php
|
302 |
+
}
|
303 |
+
?>
|
304 |
+
</div>
|
305 |
+
</div>
|
306 |
+
</div>
|
307 |
+
<div class="widget-layout-body" id="image_width">
|
308 |
+
<div class="layout-control-group">
|
309 |
+
<label class="layout-control-label"><?php _e("Width", gallery_bank); ?> : </label>
|
310 |
+
<div class="layout-controls">
|
311 |
+
<input type="text" class="layout-span10" id="ux_image_width" name="ux_image_width"
|
312 |
+
onkeypress="return OnlyNumbers(event)" value="<?php echo $thumbnails_width; ?>"/>
|
313 |
+
<span style="padding-top:3px;">(px)</span>
|
314 |
+
</div>
|
315 |
+
</div>
|
316 |
+
</div>
|
317 |
+
<div class="widget-layout-body" id="image_height">
|
318 |
+
<div class="layout-control-group">
|
319 |
+
<label class="layout-control-label"><?php _e("Height", gallery_bank); ?> : </label>
|
320 |
+
<div class="layout-controls">
|
321 |
+
<input type="text" id="ux_image_height" name="ux_image_height"
|
322 |
+
onkeypress="return OnlyNumbers(event)" class="layout-span10"
|
323 |
+
value="<?php echo $thumbnails_height; ?>">
|
324 |
+
<span style="padding-top:3px;">(px)</span>
|
325 |
+
</div>
|
326 |
+
</div>
|
327 |
+
</div>
|
328 |
+
<div class="widget-layout-body">
|
329 |
+
<div class="layout-control-group">
|
330 |
+
<label class="layout-control-label"
|
331 |
+
id="ux_label_thumb_opacity"><?php _e("Opacity", gallery_bank); ?> : </label>
|
332 |
+
<div class="layout-controls">
|
333 |
+
<input type="text" class="layout-span10" id="ux_image_opacity_val"
|
334 |
+
onkeyup="set_value('thumb_opacity')" onblur="set_value('thumb_opacity')"
|
335 |
+
name="ux_image_opacity_val" onkeypress="return OnlyNumbers(event)"
|
336 |
+
value="<?php echo $thumbnails_opacity * 100; ?>"/>
|
337 |
+
<span style="padding-top:3px;">(%)</span>
|
338 |
+
</div>
|
339 |
+
</div>
|
340 |
+
</div>
|
341 |
+
<div class="widget-layout-body">
|
342 |
+
<div class="layout-control-group">
|
343 |
+
<label class="layout-control-label"><?php _e("Border Size", gallery_bank); ?> : </label>
|
344 |
+
<div class="layout-controls">
|
345 |
+
<input type="text" class="layout-span10" id="ux_image_border_val" name="ux_image_border_val"
|
346 |
+
onblur="set_value('thumb_border_size');" onkeyup="set_value('thumb_border_size');"
|
347 |
+
onkeypress="return OnlyNumbers(event);" value="<?php echo $thumbnails_border_size; ?>"/>
|
348 |
+
<span style="padding-top:3px;">(0 - 20)</span>
|
349 |
+
</div>
|
350 |
+
</div>
|
351 |
+
</div>
|
352 |
+
<div class="widget-layout-body">
|
353 |
+
<div class="layout-control-group">
|
354 |
+
<label class="layout-control-label"><?php _e("Border Radius", gallery_bank); ?> : </label>
|
355 |
+
<div class="layout-controls">
|
356 |
+
<input type="text" class="layout-span10" id="ux_image_radius_val" name="ux_image_radius_val"
|
357 |
+
onblur="set_value('thumb_border_radius')" onkeyup="set_value('thumb_border_radius')"
|
358 |
+
onkeypress="return OnlyNumbers(event)" value="<?php echo $thumbnails_border_radius; ?>"/>
|
359 |
+
<span style="padding-top:3px;">(0 - 20)</span>
|
360 |
+
</div>
|
361 |
+
</div>
|
362 |
+
</div>
|
363 |
+
<div class="widget-layout-body">
|
364 |
+
<div class="layout-control-group">
|
365 |
+
<label class="layout-control-label"><?php _e("Border Color", gallery_bank); ?> : </label>
|
366 |
+
<div class="layout-controls">
|
367 |
+
<input type="text" class="layout-span10" name="ux_border_color" id="ux_border_color"
|
368 |
+
onclick="ux_clr_border_color();"
|
369 |
+
style="background-color: <?php echo $thumbnails_border_color; ?>;"
|
370 |
+
value="<?php echo $thumbnails_border_color; ?>"/>
|
371 |
+
<img onclick="ux_clr_border_color();" style="vertical-align: middle;margin-left: 5px;"
|
372 |
+
src="<?php echo GALLERY_BK_PLUGIN_URL . "/assets/images/color.png" ?>"/>
|
373 |
+
<div id="clr_border_color"></div>
|
374 |
+
</div>
|
375 |
+
</div>
|
376 |
+
</div>
|
377 |
+
<div class="widget-layout-body">
|
378 |
+
<div class="layout-control-group">
|
379 |
+
<label class="layout-control-label"><?php _e("Margin Between Images", gallery_bank); ?> : </label>
|
380 |
+
<div class="layout-controls">
|
381 |
+
<input type="text" class="layout-span10" name="ux_images_margin" id="ux_images_margin"
|
382 |
+
onkeypress="return OnlyNumbers(event)" value="<?php echo $margin_btw_thumbnails; ?>"/>
|
383 |
+
(px)
|
384 |
+
</div>
|
385 |
+
</div>
|
386 |
+
</div>
|
387 |
+
<div class="widget-layout-body">
|
388 |
+
<div class="layout-control-group">
|
389 |
+
<label class="layout-control-label"><?php _e("Text Color", gallery_bank); ?> : </label>
|
390 |
+
<div class="layout-controls">
|
391 |
+
<input type="text" class="layout-span10" onclick="ux_clr_thumb_text_color();"
|
392 |
+
name="ux_thumb_text_color" id="ux_thumb_text_color"
|
393 |
+
style="background-color:<?php echo $thumbnail_text_color; ?>; "
|
394 |
+
value="<?php echo $thumbnail_text_color; ?>"/>
|
395 |
+
<img onclick="ux_clr_thumb_text_color();" style="vertical-align: middle;margin-left: 5px;"
|
396 |
+
src="<?php echo GALLERY_BK_PLUGIN_URL . "/assets/images/color.png" ?>"/>
|
397 |
+
<div id="clr_thumb_text_color"></div>
|
398 |
+
</div>
|
399 |
+
</div>
|
400 |
+
</div>
|
401 |
+
<div class="widget-layout-body">
|
402 |
+
<div class="layout-control-group">
|
403 |
+
<label class="layout-control-label"><?php _e("Text-Align", gallery_bank); ?> : </label>
|
404 |
+
<div class="layout-controls">
|
405 |
+
<select id="ux_thumb_text_align" class="layout-span10" name="ux_thumb_text_align">
|
406 |
+
<option value="center">Center</option>
|
407 |
+
<option value="inherit">Inherit</option>
|
408 |
+
<option value="justify">Justify</option>
|
409 |
+
<option value="left">Left</option>
|
410 |
+
<option value="right">Right</option>
|
411 |
+
</select>
|
412 |
+
</div>
|
413 |
+
</div>
|
414 |
+
</div>
|
415 |
+
<div class="widget-layout-body">
|
416 |
+
<div class="layout-control-group">
|
417 |
+
<label class="layout-control-label"><?php _e("Font-Family", gallery_bank); ?> : </label>
|
418 |
+
<div class="layout-controls">
|
419 |
+
<select id="ux_thumb_font_family" class="layout-span10" name="ux_thumb_font_family">
|
420 |
+
<option value="Arial">Arial</option>
|
421 |
+
<option value="Courier">Courier</option>
|
422 |
+
<option value="Courier New">Courier New</option>
|
423 |
+
<option value="Geneva">Geneva</option>
|
424 |
+
<option value="Helvetica">Helvetica</option>
|
425 |
+
<option value="inherit">inherit</option>
|
426 |
+
<option value="Lucida Grande">Lucida Grande</option>
|
427 |
+
<option value="Lucida Sans Unicode">Lucida Sans Unicode</option>
|
428 |
+
<option value="Monospace">Monospace</option>
|
429 |
+
<option value="Sans-serif">Sans-serif</option>
|
430 |
+
<option value="Tahoma">Tahoma</option>
|
431 |
+
<option value="Times">Times</option>
|
432 |
+
<option value="Times New Roman">Times New Roman</option>
|
433 |
+
<option value="Verdana">Verdana</option>
|
434 |
+
</select>
|
435 |
+
</div>
|
436 |
+
</div>
|
437 |
+
</div>
|
438 |
+
<div class="widget-layout-body">
|
439 |
+
<div class="layout-control-group">
|
440 |
+
<label class="layout-control-label"><?php _e("Heading Font-Size", gallery_bank); ?> : </label>
|
441 |
+
<div class="layout-controls">
|
442 |
+
<select id="ux_heading_font_size" class="layout-span10" name="ux_heading_font_size">
|
443 |
+
<?php
|
444 |
+
for ($heading_font = 8; $heading_font <= 24; $heading_font++) {
|
445 |
+
?>
|
446 |
+
<option <?php if ($heading_font == $heading_font_size) echo "selected=\"selected\"" ?>
|
447 |
+
value="<?php echo $heading_font; ?>"><?php echo $heading_font; ?></option>
|
448 |
+
<?php
|
449 |
+
}
|
450 |
+
?>
|
451 |
+
</select> (px)
|
452 |
+
</div>
|
453 |
+
</div>
|
454 |
+
</div>
|
455 |
+
<div class="widget-layout-body">
|
456 |
+
<div class="layout-control-group">
|
457 |
+
<label class="layout-control-label"><?php _e("Text Font-Size", gallery_bank); ?> : </label>
|
458 |
+
<div class="layout-controls">
|
459 |
+
<select id="ux_text_font_size" class="layout-span10" name="ux_text_font_size">
|
460 |
+
<?php
|
461 |
+
for ($font = 8; $font <= 15; $font++) {
|
462 |
+
?>
|
463 |
+
<option <?php if ($font == $text_font_size) echo "selected=\"selected\"" ?>
|
464 |
+
value="<?php echo $font; ?>"><?php echo $font; ?></option>
|
465 |
+
<?php
|
466 |
+
}
|
467 |
+
?>
|
468 |
+
</select> (px)
|
469 |
+
</div>
|
470 |
+
</div>
|
471 |
+
</div>
|
472 |
+
<div class="widget-layout-body">
|
473 |
+
<div class="layout-control-group">
|
474 |
+
<label class="layout-control-label"><?php _e("Description Length", gallery_bank); ?> : </label>
|
475 |
+
<div class="layout-controls">
|
476 |
+
<input type="text" id="ux_thumb_desc_length" class="layout-span10"
|
477 |
+
onkeypress="return OnlyNumbers(event)" name="ux_thumb_desc_length"
|
478 |
+
value="<?php echo $thumbnail_desc_length; ?>"/><label> (chars)</label>
|
479 |
+
</div>
|
480 |
+
</div>
|
481 |
+
</div>
|
482 |
</div>
|
483 |
</div>
|
484 |
+
<div class="widget-layout">
|
485 |
+
<div class="widget-layout-title">
|
486 |
+
<h4><?php _e("Album Cover Settings", gallery_bank); ?>
|
487 |
+
<i class="widget_premium_feature"><?php _e(" (Available in Premium Versions)", gallery_bank); ?></i>
|
488 |
+
</h4>
|
489 |
+
<span class="tools">
|
490 |
+
<a data-target="#album_cover_settings" data-toggle="collapse">
|
491 |
+
<i class="icon-chevron-down"></i>
|
492 |
+
</a>
|
493 |
+
</span>
|
494 |
</div>
|
495 |
+
<div id="album_cover_settings" class="collapse in">
|
496 |
+
<div class="widget-layout-body">
|
497 |
+
<div class="layout-control-group">
|
498 |
+
<label class="layout-control-label"><?php _e("Cover Size", gallery_bank); ?> : </label>
|
499 |
+
<div class="layout-controls-radio">
|
500 |
+
<?php
|
501 |
+
if ($cover_custom_enable == 1) {
|
502 |
+
?>
|
503 |
+
<input type="radio" name="ux_cover_size" value="1" checked="checked"
|
504 |
+
onclick="check_cover_settings();"/> <label
|
505 |
+
style="vertical-align: baseline;"><?php _e("Original", gallery_bank); ?></label>
|
506 |
+
<input type="radio" style="margin-left: 10px;" name="ux_cover_size" value="0"
|
507 |
+
onclick="check_cover_settings();"/> <label
|
508 |
+
style="vertical-align: baseline;"><?php _e("Custom", gallery_bank); ?></label>
|
509 |
+
<?php
|
510 |
+
} else {
|
511 |
+
?>
|
512 |
+
<input type="radio" name="ux_cover_size" value="1" onclick="check_cover_settings();"/>
|
513 |
+
<label style="vertical-align: baseline;"><?php _e("Original", gallery_bank); ?></label>
|
514 |
+
<input type="radio" style="margin-left: 10px;" name="ux_cover_size" checked="checked"
|
515 |
+
value="0" onclick="check_cover_settings();"/> <label
|
516 |
+
style="vertical-align: baseline;"><?php _e("Custom", gallery_bank); ?></label>
|
517 |
+
<?php
|
518 |
+
}
|
519 |
+
?>
|
520 |
+
</div>
|
521 |
+
</div>
|
522 |
+
</div>
|
523 |
+
<div class="widget-layout-body" id="cover_width">
|
524 |
+
<div class="layout-control-group">
|
525 |
+
<label class="layout-control-label"><?php _e("Width", gallery_bank); ?> : </label>
|
526 |
+
<div class="layout-controls">
|
527 |
+
<input type="text" class="layout-span10" id="ux_cover_width" name="ux_cover_width"
|
528 |
+
onkeypress="return OnlyNumbers(event)" value="<?php echo $cover_thumbnail_width; ?>"/>
|
529 |
+
<span style="padding-top:3px;">(px)</span>
|
530 |
+
</div>
|
531 |
+
</div>
|
532 |
+
</div>
|
533 |
+
<div class="widget-layout-body" id="cover_height">
|
534 |
+
<div class="layout-control-group">
|
535 |
+
<label class="layout-control-label"><?php _e("Height", gallery_bank); ?> : </label>
|
536 |
+
<div class="layout-controls">
|
537 |
+
<input type="text" id="ux_cover_height" name="ux_cover_height"
|
538 |
+
onkeypress="return OnlyNumbers(event)" class="layout-span10"
|
539 |
+
value="<?php echo $cover_thumbnail_height; ?>">
|
540 |
+
<span style="padding-top:3px;">(px)</span>
|
541 |
+
</div>
|
542 |
+
</div>
|
543 |
+
</div>
|
544 |
+
<div class="widget-layout-body">
|
545 |
+
<div class="layout-control-group">
|
546 |
+
<label class="layout-control-label" id="ux_label_cover_opacity"><?php _e("Opacity", gallery_bank); ?> : </label>
|
547 |
+
<div class="layout-controls">
|
548 |
+
<input type="text" class="layout-span10" id="ux_cover_opacity_val" name="ux_cover_opacity_val"
|
549 |
+
onblur="set_value('cover_opacity')" onkeyup="set_value('cover_opacity')"
|
550 |
+
onkeypress="return OnlyNumbers(event)"
|
551 |
+
value="<?php echo $cover_thumbnail_opacity * 100; ?>"/>
|
552 |
+
<span style="padding-top:3px;">(%)</span>
|
553 |
+
</div>
|
554 |
+
</div>
|
555 |
+
</div>
|
556 |
+
<div class="widget-layout-body">
|
557 |
+
<div class="layout-control-group">
|
558 |
+
<label class="layout-control-label"><?php _e("Border Size", gallery_bank); ?> : </label>
|
559 |
+
<div class="layout-controls">
|
560 |
+
<input type="text" class="layout-span10" id="ux_cover_border_val" name="ux_cover_border_val"
|
561 |
+
onblur="set_value('cover_border_size')" onkeyup="set_value('cover_border_size')"
|
562 |
+
onkeypress="return OnlyNumbers(event)"
|
563 |
+
value="<?php echo $cover_thumbnail_border_size; ?>"/>
|
564 |
+
<span style="padding-top:3px;">(0 - 20)</span>
|
565 |
+
</div>
|
566 |
+
</div>
|
567 |
+
</div>
|
568 |
+
<div class="widget-layout-body">
|
569 |
+
<div class="layout-control-group">
|
570 |
+
<label class="layout-control-label"><?php _e("Border Radius", gallery_bank); ?> : </label>
|
571 |
+
<div class="layout-controls">
|
572 |
+
<input type="text" class="layout-span10" id="ux_cover_radius_val" name="ux_cover_radius_val"
|
573 |
+
onblur="set_value('cover_border_radius')" onkeyup="set_value('cover_border_radius')"
|
574 |
+
onkeypress="return OnlyNumbers(event)"
|
575 |
+
value="<?php echo $cover_thumbnail_border_radius; ?>"/>
|
576 |
+
<span style="padding-top:3px;">(0 - 20)</span>
|
577 |
+
</div>
|
578 |
+
</div>
|
579 |
+
</div>
|
580 |
+
<div class="widget-layout-body">
|
581 |
+
<div class="layout-control-group">
|
582 |
+
<label class="layout-control-label"><?php _e("Border Color", gallery_bank); ?> : </label>
|
583 |
+
<div class="layout-controls">
|
584 |
+
<input type="text" class="layout-span10" onclick="ux_clr_cover_border_color();"
|
585 |
+
name="ux_cover_border_color" id="ux_cover_border_color"
|
586 |
+
style="background-color:<?php echo $cover_thumbnail_border_color; ?>; "
|
587 |
+
value="<?php echo $cover_thumbnail_border_color; ?>"/><img
|
588 |
+
onclick="ux_clr_cover_border_color();" style="vertical-align: middle;margin-left: 5px;"
|
589 |
+
src="<?php echo GALLERY_BK_PLUGIN_URL . "/assets/images/color.png" ?>"/>
|
590 |
+
<div id="clr_cover_border_color"></div>
|
591 |
+
</div>
|
592 |
+
</div>
|
593 |
+
</div>
|
594 |
+
<div class="widget-layout-body">
|
595 |
+
<div class="layout-control-group">
|
596 |
+
<label class="layout-control-label"><?php _e("Margin Between Albums", gallery_bank); ?> : </label>
|
597 |
+
<div class="layout-controls">
|
598 |
+
<input type="text" class="layout-span10" name="ux_album_margin" id="ux_album_margin"
|
599 |
+
onkeypress="return OnlyNumbers(event)"
|
600 |
+
value="<?php echo $margin_btw_cover_thumbnails; ?>"/> (px)
|
601 |
+
</div>
|
602 |
+
</div>
|
603 |
+
</div>
|
604 |
+
<div class="widget-layout-body">
|
605 |
+
<div class="layout-control-group">
|
606 |
+
<label class="layout-control-label"><?php _e("Text for Album Click", gallery_bank); ?> : </label>
|
607 |
+
|
608 |
+
<div class="layout-controls">
|
609 |
+
<input type="text" class="layout-span10" id="ux_album_view" name="ux_album_view"
|
610 |
+
value="<?php echo $album_click_text; ?>"/>
|
611 |
+
</div>
|
612 |
+
</div>
|
613 |
+
</div>
|
614 |
+
<div class="widget-layout-body">
|
615 |
+
<div class="layout-control-group">
|
616 |
+
<label class="layout-control-label"><?php _e("Text Color", gallery_bank); ?> : </label>
|
617 |
+
|
618 |
+
<div class="layout-controls">
|
619 |
+
<input type="text" class="layout-span10" id="ux_album_text_color" name="ux_album_text_color"
|
620 |
+
onclick="ux_clr_album_font_color();"
|
621 |
+
style="background-color: <?php echo $album_text_color; ?>;"
|
622 |
+
value="<?php echo $album_text_color; ?>"/>
|
623 |
+
<img onclick="ux_clr_album_font_color();"
|
624 |
+
style="vertical-align: middle;margin-left: 5px;"
|
625 |
+
src="<?php echo GALLERY_BK_PLUGIN_URL . "/assets/images/color.png" ?>"/>
|
626 |
+
|
627 |
+
<div id="clr_album_text_color"></div>
|
628 |
+
</div>
|
629 |
+
</div>
|
630 |
+
</div>
|
631 |
+
<div class="widget-layout-body">
|
632 |
+
<div class="layout-control-group">
|
633 |
+
<label class="layout-control-label"><?php _e("Text-Align", gallery_bank); ?> : </label>
|
634 |
+
<div class="layout-controls">
|
635 |
+
<select id="ux_album_text_align" class="layout-span10" name="ux_album_text_align">
|
636 |
+
<option value="center">Center</option>
|
637 |
+
<option value="inherit">Inherit</option>
|
638 |
+
<option value="justify">Justify</option>
|
639 |
+
<option value="left">Left</option>
|
640 |
+
<option value="right">Right</option>
|
641 |
+
</select>
|
642 |
+
</div>
|
643 |
+
</div>
|
644 |
+
</div>
|
645 |
+
<div class="widget-layout-body">
|
646 |
+
<div class="layout-control-group">
|
647 |
+
<label class="layout-control-label"><?php _e("Font-Family", gallery_bank); ?> : </label>
|
648 |
+
<div class="layout-controls">
|
649 |
+
<select id="ux_album_font_family" class="layout-span10" name="ux_album_font_family">
|
650 |
+
<option value="Arial">Arial</option>
|
651 |
+
<option value="Courier">Courier</option>
|
652 |
+
<option value="Courier New">Courier New</option>
|
653 |
+
<option value="Geneva">Geneva</option>
|
654 |
+
<option value="Helvetica">Helvetica</option>
|
655 |
+
<option value="inherit">inherit</option>
|
656 |
+
<option value="Lucida Grande">Lucida Grande</option>
|
657 |
+
<option value="Lucida Sans Unicode">Lucida Sans Unicode</option>
|
658 |
+
<option value="Monospace">Monospace</option>
|
659 |
+
<option value="Sans-serif">Sans-serif</option>
|
660 |
+
<option value="Tahoma">Tahoma</option>
|
661 |
+
<option value="Times">Times</option>
|
662 |
+
<option value="Times New Roman">Times New Roman</option>
|
663 |
+
<option value="Verdana">Verdana</option>
|
664 |
+
</select>
|
665 |
+
</div>
|
666 |
+
</div>
|
667 |
+
</div>
|
668 |
+
<div class="widget-layout-body">
|
669 |
+
<div class="layout-control-group">
|
670 |
+
<label class="layout-control-label"><?php _e("Heading Font-Size", gallery_bank); ?> : </label>
|
671 |
+
<div class="layout-controls">
|
672 |
+
<select id="ux_album_heading_font_size" class="layout-span10" name="ux_album_heading_font_size">
|
673 |
+
<?php
|
674 |
+
for ($album_heading = 8; $album_heading <= 24; $album_heading++) {
|
675 |
+
?>
|
676 |
+
<option <?php if ($album_heading == $album_heading_font_size) echo "selected=\"selected\"" ?>
|
677 |
+
value="<?php echo $album_heading; ?>"><?php echo $album_heading; ?></option>
|
678 |
+
<?php
|
679 |
+
}
|
680 |
+
?>
|
681 |
+
</select> (px)
|
682 |
+
</div>
|
683 |
+
</div>
|
684 |
+
</div>
|
685 |
+
<div class="widget-layout-body">
|
686 |
+
<div class="layout-control-group">
|
687 |
+
<label class="layout-control-label"><?php _e("Text Font-Size", gallery_bank); ?> : </label>
|
688 |
+
<div class="layout-controls">
|
689 |
+
<select id="ux_album_text_font_size" class="layout-span10" name="ux_album_text_font_size">
|
690 |
+
<?php
|
691 |
+
for ($albumfont = 8; $albumfont <= 15; $albumfont++) {
|
692 |
+
?>
|
693 |
+
<option <?php if ($albumfont == $album_text_font_size) echo "selected=\"selected\"" ?>
|
694 |
+
value="<?php echo $albumfont; ?>"><?php echo $albumfont; ?></option>
|
695 |
+
<?php
|
696 |
+
}
|
697 |
+
?>
|
698 |
+
</select> (px)
|
699 |
+
</div>
|
700 |
+
</div>
|
701 |
+
</div>
|
702 |
+
<div class="widget-layout-body">
|
703 |
+
<div class="layout-control-group">
|
704 |
+
<label class="layout-control-label"><?php _e("Description Length", gallery_bank); ?> : </label>
|
705 |
+
<div class="layout-controls">
|
706 |
+
<input type="text" id="ux_album_desc_length" class="layout-span10"
|
707 |
+
onkeypress="return OnlyNumbers(event)" name="ux_album_desc_length"
|
708 |
+
value="<?php echo $album_desc_length; ?>"/><label> (chars)</label>
|
709 |
+
</div>
|
710 |
+
</div>
|
711 |
+
</div>
|
712 |
+
</div>
|
713 |
+
</div>
|
714 |
+
<div class="widget-layout">
|
715 |
+
<div class="widget-layout-title">
|
716 |
+
<h4><?php _e("Filter Settings", gallery_bank); ?>
|
717 |
+
<i class="widget_premium_feature"><?php _e(" (Available in Premium Versions)", gallery_bank); ?></i>
|
718 |
+
</h4>
|
719 |
+
<span class="tools">
|
720 |
+
<a data-target="#filter_settings" data-toggle="collapse">
|
721 |
+
<i class="icon-chevron-down"></i>
|
722 |
+
</a>
|
723 |
+
</span>
|
724 |
+
</div>
|
725 |
+
<div id="filter_settings" class="collapse">
|
726 |
+
<div class="widget-layout-body">
|
727 |
+
<div class="layout-control-group">
|
728 |
+
<label class="layout-control-label"><?php _e("Filters", gallery_bank); ?> : </label>
|
729 |
+
<div class="layout-controls-radio">
|
730 |
+
<?php
|
731 |
+
if ($filters_setting == 1) {
|
732 |
+
?>
|
733 |
+
<input type="radio" onclick="show_filter_page();" name="ux_image_filters" value="1"
|
734 |
+
checked="checked"/> <label
|
735 |
+
style="vertical-align: baseline;"><?php _e("Enable", gallery_bank); ?></label>
|
736 |
+
<input type="radio" onclick="show_filter_page();" style="margin-left: 10px;"
|
737 |
+
name="ux_image_filters" value="0"/> <label
|
738 |
+
style="vertical-align: baseline;"><?php _e("Disable", gallery_bank); ?></label>
|
739 |
+
<?php
|
740 |
+
} else {
|
741 |
+
?>
|
742 |
+
<input type="radio" onclick="show_filter_page();" name="ux_image_filters" value="1"/> <label
|
743 |
+
style="vertical-align: baseline;"><?php _e("Enable", gallery_bank); ?></label>
|
744 |
+
<input type="radio" onclick="show_filter_page();" style="margin-left: 10px;"
|
745 |
+
name="ux_image_filters" value="0" checked="checked"/> <label
|
746 |
+
style="vertical-align: baseline;"><?php _e("Disable", gallery_bank); ?></label>
|
747 |
+
<?php
|
748 |
+
}
|
749 |
+
?>
|
750 |
+
</div>
|
751 |
+
</div>
|
752 |
+
</div>
|
753 |
+
<div id="ux_filter_setting_div" style="display:none;">
|
754 |
+
<div class="widget-layout-body">
|
755 |
+
<div class="layout-control-group">
|
756 |
+
<label class="layout-control-label"><?php _e("Filter Color", gallery_bank); ?> : </label>
|
757 |
+
<div class="layout-controls">
|
758 |
+
<input type="text" class="layout-span10" id="ux_filter_color" name="ux_filter_color"
|
759 |
+
onclick="ux_clr_filter_color();"
|
760 |
+
style="background-color: <?php echo $filters_color; ?>;"
|
761 |
+
value="<?php echo $filters_color; ?>"/>
|
762 |
+
<img onclick="ux_clr_filter_color();" style="vertical-align: middle;margin-left: 5px;"
|
763 |
+
src="<?php echo GALLERY_BK_PLUGIN_URL . "/assets/images/color.png" ?>"/>
|
764 |
+
<div id="clr_filter_color"></div>
|
765 |
+
</div>
|
766 |
+
</div>
|
767 |
+
</div>
|
768 |
+
<div class="widget-layout-body">
|
769 |
+
<div class="layout-control-group">
|
770 |
+
<label class="layout-control-label"><?php _e("Filter Text Color", gallery_bank); ?> : </label>
|
771 |
+
<div class="layout-controls">
|
772 |
+
<input type="text" class="layout-span10" id="ux_filter_text_color"
|
773 |
+
name="ux_filter_text_color" onclick="ux_clr_filter_text_color();"
|
774 |
+
style="background-color: <?php echo $filters_text_color; ?>;"
|
775 |
+
value="<?php echo $filters_text_color; ?>"/>
|
776 |
+
<img onclick="ux_clr_filter_text_color();" style="vertical-align: middle;margin-left: 5px;"
|
777 |
+
src="<?php echo GALLERY_BK_PLUGIN_URL . "/assets/images/color.png" ?>"/>
|
778 |
+
<div id="clr_filter_text_color"></div>
|
779 |
+
</div>
|
780 |
+
</div>
|
781 |
+
</div>
|
782 |
+
<div class="widget-layout-body">
|
783 |
+
<div class="layout-control-group">
|
784 |
+
<label class="layout-control-label"><?php _e("Font-Family", gallery_bank); ?> : </label>
|
785 |
+
<div class="layout-controls">
|
786 |
+
<select id="ux_filter_font_family" class="layout-span10" name="ux_filter_font_family">
|
787 |
+
<option value="Arial">Arial</option>
|
788 |
+
<option value="Courier">Courier</option>
|
789 |
+
<option value="Courier New">Courier New</option>
|
790 |
+
<option value="Geneva">Geneva</option>
|
791 |
+
<option value="Helvetica">Helvetica</option>
|
792 |
+
<option value="inherit">inherit</option>
|
793 |
+
<option value="Lucida Grande">Lucida Grande</option>
|
794 |
+
<option value="Lucida Sans Unicode">Lucida Sans Unicode</option>
|
795 |
+
<option value="Monospace">Monospace</option>
|
796 |
+
<option value="Sans-serif">Sans-serif</option>
|
797 |
+
<option value="Tahoma">Tahoma</option>
|
798 |
+
<option value="Times">Times</option>
|
799 |
+
<option value="Times New Roman">Times New Roman</option>
|
800 |
+
<option value="Verdana">Verdana</option>
|
801 |
+
</select>
|
802 |
+
</div>
|
803 |
+
</div>
|
804 |
+
</div>
|
805 |
+
<div class="widget-layout-body">
|
806 |
+
<div class="layout-control-group">
|
807 |
+
<label class="layout-control-label"><?php _e("Font-Size", gallery_bank); ?> : </label>
|
808 |
+
<div class="layout-controls">
|
809 |
+
<select id="ux_filter_font_size" class="layout-span10" name="ux_filter_font_size">
|
810 |
+
<?php
|
811 |
+
for ($filterfont = 8; $filterfont <= 15; $filterfont++) {
|
812 |
+
?>
|
813 |
+
<option <?php if ($filterfont == $filter_font_size) echo "selected=\"selected\"" ?>
|
814 |
+
value="<?php echo $filterfont; ?>"><?php echo $filterfont; ?></option>
|
815 |
+
<?php
|
816 |
+
}
|
817 |
+
?>
|
818 |
+
</select> (px)
|
819 |
+
</div>
|
820 |
+
</div>
|
821 |
+
</div>
|
822 |
+
</div>
|
823 |
+
</div>
|
824 |
+
</div>
|
825 |
+
<div class="widget-layout">
|
826 |
+
<div class="widget-layout-title">
|
827 |
+
<h4><?php _e("Roles & Capabilities", gallery_bank); ?>
|
828 |
+
<i class="widget_premium_feature"><?php _e(" (Available in Premium Versions)", gallery_bank); ?></i>
|
829 |
+
</h4>
|
830 |
+
<span class="tools">
|
831 |
+
<a data-target="#capabilities_settings" data-toggle="collapse">
|
832 |
+
<i class="icon-chevron-down"></i>
|
833 |
+
</a>
|
834 |
+
</span>
|
835 |
+
</div>
|
836 |
+
<div id="capabilities_settings" class="collapse">
|
837 |
+
<div class="widget-layout-body">
|
838 |
+
<div class="layout-control-group">
|
839 |
+
<label class="layout-control-label"><?php _e("Privileges for Admin", gallery_bank); ?> : </label>
|
840 |
+
<div class="layout-controls-radio">
|
841 |
+
<input type="checkbox" id="ux_full_control_to_admin" onclick="disable_admin_checkbox(this);"
|
842 |
+
name="ux_full_control_to_admin" value="1"/><label
|
843 |
+
style="vertical-align: baseline;"><?php _e("Full Control", gallery_bank); ?></label>
|
844 |
+
<input type="checkbox" id="ux_read_control_to_admin" name="ux_read_control_to_admin" value="1"
|
845 |
+
style="margin-left: 10px;"/><label
|
846 |
+
style="vertical-align: baseline;"><?php _e("Read", gallery_bank); ?></label>
|
847 |
+
<input type="checkbox" id="ux_write_control_to_admin" name="ux_write_control_to_admin" value="1"
|
848 |
+
style="margin-left: 10px;"/><label
|
849 |
+
style="vertical-align: baseline;"><?php _e("Write", gallery_bank); ?></label>
|
850 |
+
</div>
|
851 |
+
</div>
|
852 |
+
</div>
|
853 |
+
<div class="widget-layout-body">
|
854 |
+
<div class="layout-control-group">
|
855 |
+
<label class="layout-control-label"><?php _e("Privileges for Editor", gallery_bank); ?> : </label>
|
856 |
+
<div class="layout-controls-radio">
|
857 |
+
<input type="checkbox" id="ux_full_control_to_editor" onclick="disable_admin_checkbox(this);"
|
858 |
+
name="ux_full_control_to_editor" value="1"/><label
|
859 |
+
style="vertical-align: baseline;"><?php _e("Full Control", gallery_bank); ?></label>
|
860 |
+
<input type="checkbox" id="ux_read_control_to_editor" name="ux_read_control_to_editor" value="1"
|
861 |
+
style="margin-left: 10px;"/><label
|
862 |
+
style="vertical-align: baseline;"><?php _e("Read", gallery_bank); ?></label>
|
863 |
+
<input type="checkbox" id="ux_write_control_to_editor" name="ux_write_control_to_editor"
|
864 |
+
value="1" style="margin-left: 10px;"/><label
|
865 |
+
style="vertical-align: baseline;"><?php _e("Write", gallery_bank); ?></label>
|
866 |
+
</div>
|
867 |
+
</div>
|
868 |
+
</div>
|
869 |
+
<div class="widget-layout-body">
|
870 |
+
<div class="layout-control-group">
|
871 |
+
<label class="layout-control-label"><?php _e("Privileges for Author", gallery_bank); ?> : </label>
|
872 |
+
<div class="layout-controls-radio">
|
873 |
+
<input type="checkbox" id="ux_full_control_to_author" onclick="disable_admin_checkbox(this);"
|
874 |
+
name="ux_full_control_to_author" value="1"/><label
|
875 |
+
style="vertical-align: baseline;"><?php _e("Full Control", gallery_bank); ?></label>
|
876 |
+
<input type="checkbox" id="ux_read_control_to_author" name="ux_read_control_to_author" value="1"
|
877 |
+
style="margin-left: 10px;"/><label
|
878 |
+
style="vertical-align: baseline;"><?php _e("Read", gallery_bank); ?></label>
|
879 |
+
<input type="checkbox" id="ux_write_control_to_author" name="ux_write_control_to_author"
|
880 |
+
value="1" style="margin-left: 10px;"/><label
|
881 |
+
style="vertical-align: baseline;"><?php _e("Write", gallery_bank); ?></label>
|
882 |
+
</div>
|
883 |
+
</div>
|
884 |
+
</div>
|
885 |
+
<div class="widget-layout-body">
|
886 |
+
<div class="layout-control-group">
|
887 |
+
<label class="layout-control-label"><?php _e("Privileges for Contributor", gallery_bank); ?>
|
888 |
+
: </label>
|
889 |
+
<div class="layout-controls-radio">
|
890 |
+
<input type="checkbox" id="ux_full_control_to_contributor"
|
891 |
+
onclick="disable_admin_checkbox(this);" name="ux_full_control_to_contributor" value="1"/><label
|
892 |
+
style="vertical-align: baseline;"><?php _e("Full Control", gallery_bank); ?></label>
|
893 |
+
<input type="checkbox" id="ux_read_control_to_contributor" name="ux_read_control_to_contributor"
|
894 |
+
value="1" style="margin-left: 10px;"/><label
|
895 |
+
style="vertical-align: baseline;"><?php _e("Read", gallery_bank); ?></label>
|
896 |
+
<input type="checkbox" id="ux_write_control_to_contributor"
|
897 |
+
name="ux_write_control_to_contributor" value="1" style="margin-left: 10px;"/><label
|
898 |
+
style="vertical-align: baseline;"><?php _e("Write", gallery_bank); ?></label>
|
899 |
+
</div>
|
900 |
+
</div>
|
901 |
+
</div>
|
902 |
+
<div class="widget-layout-body">
|
903 |
+
<div class="layout-control-group">
|
904 |
+
<label class="layout-control-label"><?php _e("Privileges for Subscriber", gallery_bank); ?>
|
905 |
+
: </label>
|
906 |
+
<div class="layout-controls-radio">
|
907 |
+
<input type="checkbox" id="ux_full_control_to_subscriber"
|
908 |
+
onclick="disable_admin_checkbox(this);" name="ux_full_control_to_subscriber"
|
909 |
+
value="1"/><label
|
910 |
+
style="vertical-align: baseline;"><?php _e("Full Control", gallery_bank); ?></label>
|
911 |
+
<input type="checkbox" id="ux_read_control_to_subscriber" name="ux_read_control_to_subscriber"
|
912 |
+
value="1" style="margin-left: 10px;"/><label
|
913 |
+
style="vertical-align: baseline;"><?php _e("Read", gallery_bank); ?></label>
|
914 |
+
<input type="checkbox" id="ux_write_control_to_subscriber" name="ux_write_control_to_subscriber"
|
915 |
+
value="1" style="margin-left: 10px;"/><label
|
916 |
+
style="vertical-align: baseline;"><?php _e("Write", gallery_bank); ?></label>
|
917 |
+
</div>
|
918 |
+
</div>
|
919 |
+
</div>
|
920 |
+
</div>
|
921 |
</div>
|
922 |
</div>
|
923 |
+
<div class="layout-span6">
|
924 |
+
<div class="widget-layout">
|
925 |
+
<div class="widget-layout-title">
|
926 |
+
<h4><?php _e("Lightbox Settings", gallery_bank); ?>
|
927 |
+
<i class="widget_premium_feature"><?php _e(" (Available in Premium Versions)", gallery_bank); ?></i>
|
928 |
+
</h4>
|
929 |
+
<span class="tools">
|
930 |
+
<a data-target="#lightbox_settings" data-toggle="collapse">
|
931 |
+
<i class="icon-chevron-down"></i>
|
932 |
+
</a>
|
933 |
+
</span>
|
934 |
</div>
|
935 |
+
<div id="lightbox_settings" class="collapse in">
|
936 |
+
<div class="widget-layout-body">
|
937 |
+
<div class="layout-control-group">
|
938 |
+
<label class="layout-control-label"><?php _e("Lightbox Type", gallery_bank); ?> : </label>
|
939 |
+
<div class="layout-controls">
|
940 |
+
<select class="layout-span10" id="ux_lightbox_type" name="ux_lightbox_type">
|
941 |
+
<option value="pretty_photo">
|
942 |
+
Pretty Photo
|
943 |
+
</option>
|
944 |
+
<option value="color_box">
|
945 |
+
Color Box
|
946 |
+
</option>
|
947 |
+
<option value="photo_swipe">
|
948 |
+
Photo Swipe
|
949 |
+
</option>
|
950 |
+
<option value="foo_box">
|
951 |
+
Foo Box
|
952 |
+
</option>
|
953 |
+
<option value="fancy_box">
|
954 |
+
Fancy Box
|
955 |
+
</option>
|
956 |
+
<option value="lightbox2">
|
957 |
+
Lightbox 2
|
958 |
+
</option>
|
959 |
+
<option value="GB_lightbox">
|
960 |
+
GB Lightbox
|
961 |
+
</option>
|
962 |
+
</select>
|
963 |
+
</div>
|
964 |
+
</div>
|
965 |
+
</div>
|
966 |
+
<div class="widget-layout-body">
|
967 |
+
<div class="layout-control-group">
|
968 |
+
<label class="layout-control-label"><?php _e("Opacity", gallery_bank); ?> : </label>
|
969 |
+
<div class="layout-controls">
|
970 |
+
<input type="text" class="layout-span10" id="ux_lightbox_opacity_val" name="ux_lightbox_opacity_val"
|
971 |
+
onblur="set_value('lightbox_opacity')" onkeyup="set_value('lightbox_opacity')"
|
972 |
+
onkeypress="return OnlyNumbers(event)" value="<?php echo $lightbox_overlay_opacity * 100; ?>"/>
|
973 |
+
<span style="padding-top:3px;">(%)</span>
|
974 |
+
</div>
|
975 |
+
</div>
|
976 |
+
</div>
|
977 |
+
<div class="widget-layout-body">
|
978 |
+
<div class="layout-control-group">
|
979 |
+
<label class="layout-control-label"><?php _e("Border Size", gallery_bank); ?> : </label>
|
980 |
+
<div class="layout-controls">
|
981 |
+
<input type="text" class="layout-span10" id="ux_lightbox_border_val" name="ux_lightbox_border_val"
|
982 |
+
onblur="set_value('lightbox_border')" onkeyup="set_value('lightbox_border')"
|
983 |
+
onkeypress="return OnlyNumbers(event)" value="<?php echo $lightbox_overlay_border_size; ?>"/>
|
984 |
+
<span style="padding-top:3px;">(0 - 20)</span>
|
985 |
+
</div>
|
986 |
+
</div>
|
987 |
+
</div>
|
988 |
+
<div class="widget-layout-body">
|
989 |
+
<div class="layout-control-group">
|
990 |
+
<label class="layout-control-label"><?php _e("Border Radius", gallery_bank); ?> : </label>
|
991 |
+
<div class="layout-controls">
|
992 |
+
<input type="text" class="layout-span10" id="ux_lightbox_radius_val" name="ux_lightbox_radius_val"
|
993 |
+
onblur="set_value('lightbox_radius');" onkeyup="set_value('lightbox_radius');"
|
994 |
+
onkeypress="return OnlyNumbers(event);" value="<?php echo $lightbox_overlay_border_radius; ?>"/>
|
995 |
+
<span style="padding-top:3px;">(0 - 20)</span>
|
996 |
+
</div>
|
997 |
+
</div>
|
998 |
+
</div>
|
999 |
+
<div class="widget-layout-body">
|
1000 |
+
<div class="layout-control-group">
|
1001 |
+
<label class="layout-control-label"><?php _e("Text Color", gallery_bank); ?> : </label>
|
1002 |
+
<div class="layout-controls">
|
1003 |
+
<input type="text" class="layout-span10" name="ux_lightbox_text_color" id="ux_lightbox_text_color"
|
1004 |
+
onclick="ux_clr_lightbox_text_color();"
|
1005 |
+
style="background-color: <?php echo $lightbox_text_color; ?>;"
|
1006 |
+
value="<?php echo $lightbox_text_color; ?>"/>
|
1007 |
+
<img onclick="ux_clr_lightbox_text_color();" style="vertical-align: middle;margin-left: 5px;"
|
1008 |
+
src="<?php echo GALLERY_BK_PLUGIN_URL . "/assets/images/color.png" ?>"/>
|
1009 |
+
<div id="clr_lightbox_text_color"></div>
|
1010 |
+
</div>
|
1011 |
+
</div>
|
1012 |
+
</div>
|
1013 |
+
<div class="widget-layout-body">
|
1014 |
+
<div class="layout-control-group">
|
1015 |
+
<label class="layout-control-label"><?php _e("Border Color", gallery_bank); ?> : </label>
|
1016 |
+
<div class="layout-controls">
|
1017 |
+
<input type="text" class="layout-span10" name="ux_overlay_border_color"
|
1018 |
+
onclick="ux_clr_overlay_border_color();" id="ux_overlay_border_color"
|
1019 |
+
style="background-color: <?php echo $lightbox_overlay_border_color; ?>"
|
1020 |
+
value="<?php echo $lightbox_overlay_border_color; ?>"/><img
|
1021 |
+
onclick="ux_clr_overlay_border_color();" style="vertical-align: middle;margin-left: 5px;"
|
1022 |
+
src="<?php echo GALLERY_BK_PLUGIN_URL . "/assets/images/color.png" ?>"/>
|
1023 |
+
<div id="clr_overlay_border_color"></div>
|
1024 |
+
</div>
|
1025 |
+
</div>
|
1026 |
+
</div>
|
1027 |
+
<div class="widget-layout-body">
|
1028 |
+
<div class="layout-control-group">
|
1029 |
+
<label class="layout-control-label"><?php _e("Inline Background", gallery_bank); ?> : </label>
|
1030 |
+
<div class="layout-controls">
|
1031 |
+
<input type="text" class="layout-span10" name="ux_inline_overlay_color" id="ux_inline_overlay_color"
|
1032 |
+
onclick="ux_clr_inline_overlay_color();"
|
1033 |
+
style="background-color: <?php echo $lightbox_inline_bg_color; ?>;"
|
1034 |
+
value="<?php echo $lightbox_inline_bg_color; ?>"/>
|
1035 |
+
<img onclick="ux_clr_inline_overlay_color();" style="vertical-align: middle;margin-left: 5px;"
|
1036 |
+
src="<?php echo GALLERY_BK_PLUGIN_URL . "/assets/images/color.png" ?>"/>
|
1037 |
+
<div id="clr_inline_overlay_color"></div>
|
1038 |
+
</div>
|
1039 |
+
</div>
|
1040 |
+
</div>
|
1041 |
+
<div class="widget-layout-body">
|
1042 |
+
<div class="layout-control-group">
|
1043 |
+
<label class="layout-control-label"><?php _e("Overlay Background", gallery_bank); ?> : </label>
|
1044 |
+
<div class="layout-controls">
|
1045 |
+
<input type="text" class="layout-span10" name="ux_overlay_bg_color" id="ux_overlay_bg_color"
|
1046 |
+
onclick="ux_clr_overlay_bg_color();"
|
1047 |
+
style="background-color: <?php echo $lightbox_overlay_bg_color; ?>;"
|
1048 |
+
value="<?php echo $lightbox_overlay_bg_color; ?>"/>
|
1049 |
+
<img onclick="ux_clr_overlay_bg_color();" style="vertical-align: middle;margin-left: 5px;"
|
1050 |
+
src="<?php echo GALLERY_BK_PLUGIN_URL . "/assets/images/color.png" ?>"/>
|
1051 |
+
<div id="clr_overlay_bg_color"></div>
|
1052 |
+
</div>
|
1053 |
+
</div>
|
1054 |
+
</div>
|
1055 |
+
<div class="widget-layout-body">
|
1056 |
+
<div class="layout-control-group">
|
1057 |
+
<label class="layout-control-label"><?php _e("Fade In Time", gallery_bank); ?> : </label>
|
1058 |
+
<div class="layout-controls">
|
1059 |
+
<input type="text" class="layout-span10" name="ux_fade_in_time" id="ux_fade_in_time"
|
1060 |
+
onkeypress="return OnlyNumbers(event)" value="<?php echo $lightbox_fade_in_time; ?>"/>
|
1061 |
+
</div>
|
1062 |
+
</div>
|
1063 |
+
</div>
|
1064 |
+
<div class="widget-layout-body">
|
1065 |
+
<div class="layout-control-group">
|
1066 |
+
<label class="layout-control-label"><?php _e("Fade Out Time", gallery_bank); ?> : </label>
|
1067 |
+
<div class="layout-controls">
|
1068 |
+
<input type="text" class="layout-span10" name="ux_fade_out_time" id="ux_fade_out_time"
|
1069 |
+
onkeypress="return OnlyNumbers(event)" value="<?php echo $lightbox_fade_out_time; ?>"/>
|
1070 |
+
</div>
|
1071 |
+
</div>
|
1072 |
+
</div>
|
1073 |
+
<div class="widget-layout-body">
|
1074 |
+
<div class="layout-control-group">
|
1075 |
+
<label class="layout-control-label"><?php _e("Text-Align", gallery_bank); ?> : </label>
|
1076 |
+
<div class="layout-controls">
|
1077 |
+
<select id="ux_lightbox_text_align" class="layout-span10" name="ux_lightbox_text_align">
|
1078 |
+
<option value="center">Center</option>
|
1079 |
+
<option value="inherit">Inherit</option>
|
1080 |
+
<option value="justify">Justify</option>
|
1081 |
+
<option value="left">Left</option>
|
1082 |
+
<option value="right">Right</option>
|
1083 |
+
</select>
|
1084 |
+
</div>
|
1085 |
+
</div>
|
1086 |
+
</div>
|
1087 |
+
<div class="widget-layout-body">
|
1088 |
+
<div class="layout-control-group">
|
1089 |
+
<label class="layout-control-label"><?php _e("Font-Family", gallery_bank); ?> : </label>
|
1090 |
+
<div class="layout-controls">
|
1091 |
+
<select id="ux_lightbox_font_family" class="layout-span10" name="ux_lightbox_font_family">
|
1092 |
+
<option value="Arial">Arial</option>
|
1093 |
+
<option value="Courier">Courier</option>
|
1094 |
+
<option value="Courier New">Courier New</option>
|
1095 |
+
<option value="Geneva">Geneva</option>
|
1096 |
+
<option value="Helvetica">Helvetica</option>
|
1097 |
+
<option value="inherit">inherit</option>
|
1098 |
+
<option value="Lucida Grande">Lucida Grande</option>
|
1099 |
+
<option value="Lucida Sans Unicode">Lucida Sans Unicode</option>
|
1100 |
+
<option value="Monospace">Monospace</option>
|
1101 |
+
<option value="Sans-serif">Sans-serif</option>
|
1102 |
+
<option value="Tahoma">Tahoma</option>
|
1103 |
+
<option value="Times">Times</option>
|
1104 |
+
<option value="Times New Roman">Times New Roman</option>
|
1105 |
+
<option value="Verdana">Verdana</option>
|
1106 |
+
</select>
|
1107 |
+
</div>
|
1108 |
+
</div>
|
1109 |
+
</div>
|
1110 |
+
<div class="widget-layout-body">
|
1111 |
+
<div class="layout-control-group">
|
1112 |
+
<label class="layout-control-label"><?php _e("Heading Font-Size", gallery_bank); ?> : </label>
|
1113 |
+
<div class="layout-controls">
|
1114 |
+
<select id="ux_lightbox_heading_font_size" class="layout-span10" name="ux_lightbox_heading_font_size">
|
1115 |
+
<?php
|
1116 |
+
for ($lightbox_heading_font = 8; $lightbox_heading_font <= 24; $lightbox_heading_font++) {
|
1117 |
+
?>
|
1118 |
+
<option <?php if ($lightbox_heading_font == $lightbox_heading_font_size) echo "selected=\"selected\"" ?>
|
1119 |
+
value="<?php echo $lightbox_heading_font; ?>"><?php echo $lightbox_heading_font; ?></option>
|
1120 |
+
<?php
|
1121 |
+
}
|
1122 |
+
?>
|
1123 |
+
</select> (px)
|
1124 |
+
</div>
|
1125 |
+
</div>
|
1126 |
+
</div>
|
1127 |
+
<div class="widget-layout-body">
|
1128 |
+
<div class="layout-control-group">
|
1129 |
+
<label class="layout-control-label"><?php _e("Text Font-Size", gallery_bank); ?> : </label>
|
1130 |
+
<div class="layout-controls">
|
1131 |
+
<select id="ux_lightbox_text_font_size" class="layout-span10" name="ux_lightbox_text_font_size">
|
1132 |
+
<?php
|
1133 |
+
for ($lightboxfont = 8; $lightboxfont <= 15; $lightboxfont++) {
|
1134 |
+
?>
|
1135 |
+
<option <?php if ($lightboxfont == $lightbox_text_font_size) echo "selected=\"selected\"" ?>
|
1136 |
+
value="<?php echo $lightboxfont; ?>"><?php echo $lightboxfont; ?></option>
|
1137 |
+
<?php
|
1138 |
+
}
|
1139 |
+
?>
|
1140 |
+
</select> (px)
|
1141 |
+
</div>
|
1142 |
+
</div>
|
1143 |
+
</div>
|
1144 |
+
<div class="widget-layout-body">
|
1145 |
+
<div class="layout-control-group">
|
1146 |
+
<label class="layout-control-label"><?php _e("Facebook Comments", gallery_bank); ?> : </label>
|
1147 |
+
<div class="layout-controls-radio">
|
1148 |
+
<?php
|
1149 |
+
if ($facebook_comments == 1) {
|
1150 |
+
?>
|
1151 |
+
<input type="radio" name="ux_facebook" value="1" checked="checked"
|
1152 |
+
onclick="disable_lightbox_type();"/> <label
|
1153 |
+
style="vertical-align: baseline;"><?php _e("Enable", gallery_bank); ?></label>
|
1154 |
+
<input type="radio" style="margin-left: 10px;" name="ux_facebook"
|
1155 |
+
onclick="disable_lightbox_type();" value="0"/> <label
|
1156 |
+
style="vertical-align: baseline;"><?php _e("Disable", gallery_bank); ?></label>
|
1157 |
+
<?php
|
1158 |
+
} else {
|
1159 |
+
?>
|
1160 |
+
<input type="radio" name="ux_facebook" value="1" onclick="disable_lightbox_type();"/> <label
|
1161 |
+
style="vertical-align: baseline;"><?php _e("Enable", gallery_bank); ?></label>
|
1162 |
+
<input type="radio" style="margin-left: 10px;" name="ux_facebook"
|
1163 |
+
onclick="disable_lightbox_type();" checked="checked" value="0"/> <label
|
1164 |
+
style="vertical-align: baseline;"><?php _e("Disable", gallery_bank); ?></label>
|
1165 |
+
<?php
|
1166 |
+
}
|
1167 |
+
?>
|
1168 |
+
</div>
|
1169 |
+
</div>
|
1170 |
+
</div>
|
1171 |
+
<div class="widget-layout-body">
|
1172 |
+
<div class="layout-control-group">
|
1173 |
+
<label class="layout-control-label"><?php _e("Social Sharing", gallery_bank); ?> : </label>
|
1174 |
+
<div class="layout-controls-radio">
|
1175 |
+
<?php
|
1176 |
+
if ($social_sharing == 1) {
|
1177 |
+
?>
|
1178 |
+
<input onclick="disable_lightbox();" type="radio" name="ux_social_sharing" value="1" checked="checked"/> <label
|
1179 |
+
style="vertical-align: baseline;"><?php _e("Enable", gallery_bank); ?></label>
|
1180 |
+
<input onclick="disable_lightbox();" type="radio" style="margin-left: 10px;" name="ux_social_sharing" value="0"/> <label
|
1181 |
+
style="vertical-align: baseline;"><?php _e("Disable", gallery_bank); ?></label>
|
1182 |
+
<?php
|
1183 |
+
} else {
|
1184 |
+
?>
|
1185 |
+
<input onclick="disable_lightbox();" type="radio" name="ux_social_sharing" value="1"/> <label
|
1186 |
+
style="vertical-align: baseline;"><?php _e("Enable", gallery_bank); ?></label>
|
1187 |
+
<input onclick="disable_lightbox();" type="radio" style="margin-left: 10px;" name="ux_social_sharing" checked="checked"
|
1188 |
+
value="0"/> <label
|
1189 |
+
style="vertical-align: baseline;"><?php _e("Disable", gallery_bank); ?></label>
|
1190 |
+
<?php
|
1191 |
+
}
|
1192 |
+
?>
|
1193 |
+
</div>
|
1194 |
+
</div>
|
1195 |
+
</div>
|
1196 |
+
<div class="widget-layout-body">
|
1197 |
+
<div class="layout-control-group">
|
1198 |
+
<label class="layout-control-label"><?php _e("Image Title", gallery_bank); ?> : </label>
|
1199 |
+
<div class="layout-controls-radio">
|
1200 |
+
<?php
|
1201 |
+
if ($image_title_setting == 1) {
|
1202 |
+
?>
|
1203 |
+
<input type="radio" name="ux_image_title" value="1" checked="checked"/> <label
|
1204 |
+
style="vertical-align: baseline;"><?php _e("Enable", gallery_bank); ?></label>
|
1205 |
+
<input type="radio" style="margin-left: 10px;" name="ux_image_title" value="0"/> <label
|
1206 |
+
style="vertical-align: baseline;"><?php _e("Disable", gallery_bank); ?></label>
|
1207 |
+
<?php
|
1208 |
+
} else {
|
1209 |
+
?>
|
1210 |
+
<input type="radio" name="ux_image_title" value="1"/> <label
|
1211 |
+
style="vertical-align: baseline;"><?php _e("Enable", gallery_bank); ?></label>
|
1212 |
+
<input type="radio" style="margin-left: 10px;" name="ux_image_title" checked="checked" value="0"/>
|
1213 |
+
<label style="vertical-align: baseline;"><?php _e("Disable", gallery_bank); ?></label>
|
1214 |
+
<?php
|
1215 |
+
}
|
1216 |
+
?>
|
1217 |
+
</div>
|
1218 |
+
</div>
|
1219 |
+
</div>
|
1220 |
+
<div class="widget-layout-body">
|
1221 |
+
<div class="layout-control-group">
|
1222 |
+
<label class="layout-control-label"><?php _e("Image Description", gallery_bank); ?> : </label>
|
1223 |
+
<div class="layout-controls-radio">
|
1224 |
+
<?php
|
1225 |
+
if ($image_desc_setting == 1) {
|
1226 |
+
?>
|
1227 |
+
<input type="radio" name="ux_image_desc" value="1" checked="checked"/> <label
|
1228 |
+
style="vertical-align: baseline;"><?php _e("Enable", gallery_bank); ?></label>
|
1229 |
+
<input type="radio" style="margin-left: 10px;" name="ux_image_desc" value="0"/> <label
|
1230 |
+
style="vertical-align: baseline;"><?php _e("Disable", gallery_bank); ?></label>
|
1231 |
+
<?php
|
1232 |
+
} else {
|
1233 |
+
?>
|
1234 |
+
<input type="radio" name="ux_image_desc" value="1"/> <label
|
1235 |
+
style="vertical-align: baseline;"><?php _e("Enable", gallery_bank); ?></label>
|
1236 |
+
<input type="radio" style="margin-left: 10px;" name="ux_image_desc" checked="checked" value="0"/>
|
1237 |
+
<label style="vertical-align: baseline;"><?php _e("Disable", gallery_bank); ?></label>
|
1238 |
+
<?php
|
1239 |
+
}
|
1240 |
+
?>
|
1241 |
+
</div>
|
1242 |
+
</div>
|
1243 |
+
</div>
|
1244 |
</div>
|
1245 |
</div>
|
1246 |
+
<div class="widget-layout">
|
1247 |
+
<div class="widget-layout-title">
|
1248 |
+
<h4><?php _e("Front - End Layout Settings", gallery_bank); ?>
|
1249 |
+
<i class="widget_premium_feature"><?php _e(" (Available in Premium Versions)", gallery_bank); ?></i>
|
1250 |
+
</h4>
|
1251 |
+
<span class="tools">
|
1252 |
+
<a data-target="#frontend_settings" data-toggle="collapse">
|
1253 |
+
<i class="icon-chevron-down"></i>
|
1254 |
+
</a>
|
1255 |
+
</span>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1256 |
</div>
|
1257 |
+
<div id="frontend_settings" class="collapse">
|
1258 |
+
<div class="widget-layout-body">
|
1259 |
+
<div class="layout-control-group">
|
1260 |
+
<label class="layout-control-label"><?php _e("Text for Back Button", gallery_bank); ?> : </label>
|
1261 |
+
|
1262 |
+
<div class="layout-controls">
|
1263 |
+
<input type="text" class="layout-span10" id="ux_back_button" name="ux_back_button"
|
1264 |
+
value="<?php echo $back_button_text; ?>"/>
|
1265 |
+
</div>
|
1266 |
+
</div>
|
1267 |
+
</div>
|
1268 |
+
<div class="widget-layout-body">
|
1269 |
+
<div class="layout-control-group">
|
1270 |
+
<label class="layout-control-label"><?php _e("Button Color", gallery_bank); ?> : </label>
|
1271 |
+
<div class="layout-controls">
|
1272 |
+
<input type="text" class="layout-span10" id="ux_button_color" name="ux_button_color"
|
1273 |
+
onclick="ux_clr_button_color();" style="background-color: <?php echo $button_color; ?>;"
|
1274 |
+
value="<?php echo $button_color; ?>"/>
|
1275 |
+
<img onclick="ux_clr_button_color();" style="vertical-align: middle;margin-left: 5px;"
|
1276 |
+
src="<?php echo GALLERY_BK_PLUGIN_URL . "/assets/images/color.png" ?>"/>
|
1277 |
+
<div id="clr_button_color"></div>
|
1278 |
+
</div>
|
1279 |
+
</div>
|
1280 |
+
</div>
|
1281 |
+
<div class="widget-layout-body">
|
1282 |
+
<div class="layout-control-group">
|
1283 |
+
<label class="layout-control-label"><?php _e("Button Text Color", gallery_bank); ?> : </label>
|
1284 |
+
<div class="layout-controls">
|
1285 |
+
<input type="text" class="layout-span10" id="ux_button_text_color" name="ux_button_text_color"
|
1286 |
+
onclick="ux_clr_button_text_color();"
|
1287 |
+
style="background-color: <?php echo $button_text_color; ?>;"
|
1288 |
+
value="<?php echo $button_text_color; ?>"/>
|
1289 |
+
<img onclick="ux_clr_button_text_color();" style="vertical-align: middle;margin-left: 5px;"
|
1290 |
+
src="<?php echo GALLERY_BK_PLUGIN_URL . "/assets/images/color.png" ?>"/>
|
1291 |
+
<div id="clr_button_text_color"></div>
|
1292 |
+
</div>
|
1293 |
+
</div>
|
1294 |
+
</div>
|
1295 |
+
<div class="widget-layout-body">
|
1296 |
+
<div class="layout-control-group">
|
1297 |
+
<label class="layout-control-label"><?php _e("Font-Family", gallery_bank); ?> : </label>
|
1298 |
+
<div class="layout-controls">
|
1299 |
+
<select id="ux_button_font_family" class="layout-span10" name="ux_button_font_family">
|
1300 |
+
<option value="Arial">Arial</option>
|
1301 |
+
<option value="Courier">Courier</option>
|
1302 |
+
<option value="Courier New">Courier New</option>
|
1303 |
+
<option value="Geneva">Geneva</option>
|
1304 |
+
<option value="Helvetica">Helvetica</option>
|
1305 |
+
<option value="inherit">inherit</option>
|
1306 |
+
<option value="Lucida Grande">Lucida Grande</option>
|
1307 |
+
<option value="Lucida Sans Unicode">Lucida Sans Unicode</option>
|
1308 |
+
<option value="Monospace">Monospace</option>
|
1309 |
+
<option value="Sans-serif">Sans-serif</option>
|
1310 |
+
<option value="Tahoma">Tahoma</option>
|
1311 |
+
<option value="Times">Times</option>
|
1312 |
+
<option value="Times New Roman">Times New Roman</option>
|
1313 |
+
<option value="Verdana">Verdana</option>
|
1314 |
+
</select>
|
1315 |
+
</div>
|
1316 |
+
</div>
|
1317 |
+
</div>
|
1318 |
+
<div class="widget-layout-body">
|
1319 |
+
<div class="layout-control-group">
|
1320 |
+
<label class="layout-control-label"><?php _e("Font-Size", gallery_bank); ?> : </label>
|
1321 |
+
<div class="layout-controls">
|
1322 |
+
<select id="ux_button_font_size" class="layout-span10" name="ux_button_font_size">
|
1323 |
+
<?php
|
1324 |
+
for ($buttonfont = 8; $buttonfont <= 15; $buttonfont++) {
|
1325 |
+
?>
|
1326 |
+
<option <?php if ($buttonfont == $back_button_font_size) echo "selected=\"selected\"" ?>
|
1327 |
+
value="<?php echo $buttonfont; ?>"><?php echo $buttonfont; ?></option>
|
1328 |
+
<?php
|
1329 |
+
}
|
1330 |
+
?>
|
1331 |
+
</select> (px)
|
1332 |
+
</div>
|
1333 |
+
</div>
|
1334 |
+
</div>
|
1335 |
+
<div class="widget-layout-body">
|
1336 |
+
<div class="layout-control-group">
|
1337 |
+
<label class="layout-control-label"><?php _e("Album Seperator", gallery_bank); ?> : </label>
|
1338 |
+
<div class="layout-controls-radio">
|
1339 |
+
<?php
|
1340 |
+
if ($album_seperator == 1) {
|
1341 |
+
?>
|
1342 |
+
<input type="radio" name="ux_seperator" value="1" checked="checked"/> <label
|
1343 |
+
style="vertical-align: baseline;"><?php _e("Enable", gallery_bank); ?></label>
|
1344 |
+
<input type="radio" style="margin-left: 10px;" name="ux_seperator" value="0"/> <label
|
1345 |
+
style="vertical-align: baseline;"><?php _e("Disable", gallery_bank); ?></label>
|
1346 |
+
<?php
|
1347 |
+
} else {
|
1348 |
+
?>
|
1349 |
+
<input type="radio" name="ux_seperator" value="1"/> <label
|
1350 |
+
style="vertical-align: baseline;"><?php _e("Enable", gallery_bank); ?></label>
|
1351 |
+
<input type="radio" style="margin-left: 10px;" name="ux_seperator" checked="checked"
|
1352 |
+
value="0"/> <label
|
1353 |
+
style="vertical-align: baseline;"><?php _e("Disable", gallery_bank); ?></label>
|
1354 |
+
<?php
|
1355 |
+
}
|
1356 |
+
?>
|
1357 |
+
</div>
|
1358 |
+
</div>
|
1359 |
+
</div>
|
1360 |
+
</div>
|
1361 |
+
</div>
|
1362 |
+
<div class="widget-layout">
|
1363 |
+
<div class="widget-layout-title">
|
1364 |
+
<h4><?php _e("Pagination Settings for Images", gallery_bank); ?>
|
1365 |
+
<i class="widget_premium_feature"><?php _e(" (Available in Premium Versions)", gallery_bank); ?></i>
|
1366 |
+
</h4>
|
1367 |
+
<span class="tools">
|
1368 |
+
<a data-target="#pagination_settings" data-toggle="collapse">
|
1369 |
+
<i class="icon-chevron-down"></i>
|
1370 |
+
</a>
|
1371 |
+
</span>
|
1372 |
+
</div>
|
1373 |
+
<div id="pagination_settings" class="collapse">
|
1374 |
+
<div class="widget-layout-body">
|
1375 |
+
<div class="layout-control-group">
|
1376 |
+
<label class="layout-control-label"><?php _e("Paging", gallery_bank); ?> : </label>
|
1377 |
+
<div class="layout-controls-radio">
|
1378 |
+
<?php
|
1379 |
+
if ($pagination_setting == 1) {
|
1380 |
+
?>
|
1381 |
+
<input type="radio" name="ux_images_paging" value="1" checked="checked"
|
1382 |
+
onclick="show_images_per_page()"/> <label
|
1383 |
+
style="vertical-align: baseline;"><?php _e("Enable", gallery_bank); ?></label>
|
1384 |
+
<input type="radio" style="margin-left: 10px;" name="ux_images_paging" value="0"
|
1385 |
+
onclick="show_images_per_page()"/> <label
|
1386 |
+
style="vertical-align: baseline;"><?php _e("Disable", gallery_bank); ?></label>
|
1387 |
+
<?php
|
1388 |
+
} else {
|
1389 |
+
?>
|
1390 |
+
<input type="radio" name="ux_images_paging" value="1" onclick="show_images_per_page()"/>
|
1391 |
+
<label style="vertical-align: baseline;"><?php _e("Enable", gallery_bank); ?></label>
|
1392 |
+
<input type="radio" style="margin-left: 10px;" name="ux_images_paging" value="0"
|
1393 |
+
checked="checked" onclick="show_images_per_page()"/> <label
|
1394 |
+
style="vertical-align: baseline;"><?php _e("Disable", gallery_bank); ?></label>
|
1395 |
+
<?php
|
1396 |
+
}
|
1397 |
+
?>
|
1398 |
+
</div>
|
1399 |
+
</div>
|
1400 |
+
</div>
|
1401 |
+
<div class="widget-layout-body" id="ux_images_per_page_div" style="display: none;">
|
1402 |
+
<div class="layout-control-group">
|
1403 |
+
<label class="layout-control-label"><?php _e("No. of Images Per Page ", gallery_bank); ?> : </label>
|
1404 |
+
<div class="layout-controls">
|
1405 |
+
<input type="text" class="layout-span10" id="ux_images_per_page_val"
|
1406 |
+
name="ux_images_per_page_val" onblur="set_value('images_per_page')"
|
1407 |
+
onkeypress="return OnlyNumbers(event)" value="<?php echo $images_per_page; ?>"/>
|
1408 |
+
</div>
|
1409 |
+
</div>
|
1410 |
+
</div>
|
1411 |
+
</div>
|
1412 |
+
</div>
|
1413 |
+
<div class="widget-layout">
|
1414 |
+
<div class="widget-layout-title">
|
1415 |
+
<h4><?php _e("Slide Show Settings", gallery_bank); ?>
|
1416 |
+
<i class="widget_premium_feature"><?php _e(" (Available in Premium Versions)", gallery_bank); ?></i>
|
1417 |
+
</h4>
|
1418 |
+
<span class="tools">
|
1419 |
+
<a data-target="#slideshow_settings" data-toggle="collapse">
|
1420 |
+
<i class="icon-chevron-down"></i>
|
1421 |
+
</a>
|
1422 |
+
</span>
|
1423 |
+
</div>
|
1424 |
+
<div id="slideshow_settings" class="collapse">
|
1425 |
+
<div class="widget-layout-body">
|
1426 |
+
<div class="layout-control-group">
|
1427 |
+
<label class="layout-control-label"><?php _e("Auto Play", gallery_bank); ?> : </label>
|
1428 |
+
<div class="layout-controls-radio">
|
1429 |
+
<?php
|
1430 |
+
if ($autoplay_setting == 1) {
|
1431 |
+
?>
|
1432 |
+
<input type="radio" name="ux_slideshow" value="1" checked="checked"
|
1433 |
+
onclick="show_slide_interval();"/> <label
|
1434 |
+
style="vertical-align: baseline;"><?php _e("Enable", gallery_bank); ?></label>
|
1435 |
+
<input type="radio" style="margin-left: 10px;" name="ux_slideshow" value="0"
|
1436 |
+
onclick="show_slide_interval();"/> <label
|
1437 |
+
style="vertical-align: baseline;"><?php _e("Disable", gallery_bank); ?></label>
|
1438 |
+
<?php
|
1439 |
+
} else {
|
1440 |
+
?>
|
1441 |
+
<input type="radio" name="ux_slideshow" value="1" onclick="show_slide_interval();"/> <label
|
1442 |
+
style="vertical-align: baseline;"><?php _e("Enable", gallery_bank); ?></label>
|
1443 |
+
<input type="radio" style="margin-left: 10px;" name="ux_slideshow" checked="checked"
|
1444 |
+
value="0" onclick="show_slide_interval();"/> <label
|
1445 |
+
style="vertical-align: baseline;"><?php _e("Disable", gallery_bank); ?></label>
|
1446 |
+
<?php
|
1447 |
+
}
|
1448 |
+
?>
|
1449 |
+
</div>
|
1450 |
+
</div>
|
1451 |
+
</div>
|
1452 |
+
<div class="widget-layout-body" id="ux_slide_interval_div">
|
1453 |
+
<div class="layout-control-group">
|
1454 |
+
<label class="layout-control-label"><?php _e("Interval", gallery_bank); ?> : </label>
|
1455 |
+
<div class="layout-controls">
|
1456 |
+
<input type="text" class="layout-span10" id="ux_slide_val" name="ux_slide_val"
|
1457 |
+
onblur="set_value('slide');" onkeyup="set_value('slide');"
|
1458 |
+
onkeypress="return OnlyNumbers(event);" value="<?php echo $slide_interval; ?>"/>
|
1459 |
+
<span style="padding-top:3px;">(0 - 15)</span>
|
1460 |
+
</div>
|
1461 |
+
</div>
|
1462 |
+
</div>
|
1463 |
+
</div>
|
1464 |
+
</div>
|
1465 |
+
<div class="widget-layout">
|
1466 |
+
<div class="widget-layout-title">
|
1467 |
+
<h4><?php _e("Language Direction Settings", gallery_bank); ?>
|
1468 |
+
<i class="widget_premium_feature"><?php _e(" (Available in Premium Versions)", gallery_bank); ?></i>
|
1469 |
+
</h4>
|
1470 |
+
<span class="tools">
|
1471 |
+
<a data-target="#lang_dir_settings" data-toggle="collapse">
|
1472 |
+
<i class="icon-chevron-down"></i>
|
1473 |
+
</a>
|
1474 |
+
</span>
|
1475 |
+
</div>
|
1476 |
+
<div id="lang_dir_settings" class="collapse">
|
1477 |
+
<div class="widget-layout-body">
|
1478 |
+
<div class="layout-control-group">
|
1479 |
+
<label class="layout-control-label"><?php _e("Language Direction", gallery_bank); ?> : </label>
|
1480 |
+
<select id="ux_lang_dir" class="layout-span8" name="ux_lang_dir">
|
1481 |
+
<option value="inherit">Default</option>
|
1482 |
+
<option value="rtl">Right to Left</option>
|
1483 |
+
<option value="ltr">Left to Right</option>
|
1484 |
+
</select>
|
1485 |
+
</div>
|
1486 |
+
</div>
|
1487 |
+
</div>
|
1488 |
+
</div>
|
1489 |
+
</div>
|
1490 |
+
</div>
|
1491 |
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1492 |
</div>
|
1493 |
</div>
|
1494 |
+
</div>
|
1495 |
+
</div>
|
1496 |
+
</div>
|
1497 |
+
</div>
|
1498 |
+
</form>
|
1499 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1500 |
<script type="text/javascript">
|
1501 |
var settings_array = [];
|
1502 |
jQuery(document).ready(function () {
|
views/shortcode.php
CHANGED
@@ -1,36 +1,30 @@
|
|
1 |
-
<form id="shortcode" class="layout-form"
|
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 |
-
</div>
|
32 |
-
</div>
|
33 |
-
</div>
|
34 |
-
</div>
|
35 |
-
</div>
|
36 |
-
</form>
|
1 |
+
<form id="shortcode" class="layout-form">
|
2 |
+
<div id="poststuff" style="width: 99% !important;">
|
3 |
+
<div id="post-body" class="metabox-holder">
|
4 |
+
<div id="postbox-container-2" class="postbox-container">
|
5 |
+
<div id="advanced" class="meta-box-sortables">
|
6 |
+
<div id="gallery_bank_get_started" class="postbox" >
|
7 |
+
<div class="handlediv" data-target="#ux_shortcode" title="Click to toggle" data-toggle="collapse"><br></div>
|
8 |
+
<h3 class="hndle"><span><?php _e("Gallery Bank Short-Codes", gallery_bank); ?></span></h3>
|
9 |
+
<div class="inside">
|
10 |
+
<div id="ux_shortcode" class="gallery_bank_layout">
|
11 |
+
<a class="btn btn-inverse"
|
12 |
+
href="admin.php?page=gallery_bank"><?php _e("Back to Albums", gallery_bank); ?></a>
|
13 |
+
<div class="separator-doubled"></div>
|
14 |
+
<div class="fluid-layout">
|
15 |
+
<div class="layout-span12">
|
16 |
+
<div class="widget-layout">
|
17 |
+
<div class="widget-layout-body">
|
18 |
+
<img src="<?php echo GALLERY_BK_PLUGIN_URL . "/assets/images/how-to-setup-short-code.png";?>" />
|
19 |
+
</div>
|
20 |
+
</div>
|
21 |
+
</div>
|
22 |
+
</div>
|
23 |
+
</div>
|
24 |
+
</div>
|
25 |
+
</div>
|
26 |
+
</div>
|
27 |
+
</div>
|
28 |
+
</div>
|
29 |
+
</div>
|
30 |
+
</form>
|
|
|
|
|
|
|
|
|
|
|
|