MOON
Server: Apache/2.2.31 (Unix) mod_ssl/2.2.31 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4
System: Linux csr818.wilogic.com 2.6.18-419.el5xen #1 SMP Fri Feb 24 22:50:37 UTC 2017 x86_64
User: obrechts (544)
PHP: 5.4.45
Disabled: NONE
Upload Files
File: /home2/obrechts/bad.public_html.bad/wordpress/wp-content/plugins/lightbox-plus/lightboxplus.php
<?php
    /*
    Plugin Name: Lightbox Plus Colorbox
    Plugin URI: http://www.23systems.net/plugins/lightbox-plus/
    Description: Lightbox Plus Colorbox implements Colorbox as a lightbox image overlay tool for WordPress.  <a href="http://www.jacklmoore.com/colorbox">Colorbox</a> was created by Jack Moore of Color Powered and is licensed under the <a href="http://www.opensource.org/licenses/mit-license.php">MIT License</a>.
    Author: Dan Zappone
    Author URI: http://www.23systems.net/
    Version: 2.7
    */

    /**
    * @package Lightbox Plus Colorbox
    * @subpackage lightboxplus.php DEV VERSION 
    * @internal 2013.01.16
    * @author Dan Zappone / 23Systems
    * @version 2.7
    * @$Id: lightboxplus.php 937945 2014-06-24 17:11:13Z dzappone $
    * @$URL: http://plugins.svn.wordpress.org/lightbox-plus/tags/2.7/lightboxplus.php $ 
    */
    /**
    * WordPress Globals
    *
    * @var mixed
    */
    global $post;
    global $content;
    global $page;
    global $wp_query;
    global $wp_version;
    global $the_post_id;
    /**
    * Lightbox Plus Colorbox Globals
    *
    * @var mixed
    */
    global $g_lbp_version;
    global $g_lbp_shortcode_version;
    global $g_lbp_colorbox_version;
    global $g_lbp_simple_html_dom_version;
    global $g_lightbox_plus_url;
    global $g_lightbox_plus_dir;
    global $g_lbp_messages;
    global $g_lbp_message_title;
    global $g_lbp_plugin_page;
    global $g_lbp_local_style_path;
    global $g_lbp_global_style_path;
    global $g_lbp_local_style_url;
    global $g_lbp_global_style_url;

    $g_lbp_version = '2.7';
    $g_lbp_simple_html_dom_version = '1.5 Rev: 202';
    /**
    * Instantiate Lightbox Plus Colorbox Globals
    *
    * @var mixed
    */
    $g_lbp_plugin_page = '';
    $g_lbp_messages = '';
    $g_lbp_message_title = '';
    $g_lightbox_plus_url = plugin_dir_url(__FILE__);
    $g_lightbox_plus_dir = plugin_dir_path(__FILE__);
    $g_lbp_local_style_path = $g_lightbox_plus_dir.'/css';
    $g_lbp_global_style_path = ABSPATH . 'wp-content' . '/lbp-css';
    $g_lbp_local_style_url = $g_lightbox_plus_url.'css';
    $g_lbp_global_style_url = content_url() . '/lbp-css';

    switch (floatval($wp_version)) {
        case 3.0:
        case 3.1:
        case 3.2:
        case 3.3:
            $g_lbp_colorbox_version = '1.5.9';
            break;
        default:
            $g_lbp_colorbox_version = '1.5.9';
            break;
    }
    /**
    * Require extended Lightbox Plus Colorbox classes
    */
    require_once('classes/utility.class.php');
    switch (floatval($wp_version)) {
        case 3.0:
            require_once('classes/shortcode30.class.php');
            $g_lbp_shortcode_version = '3.0';
            break;
        case 3.1:
        case 3.2:
        case 3.3:
        case 3.4:
            require_once('classes/shortcode34.class.php');
            $g_lbp_shortcode_version = '3.4';
            break;
        default:
            require_once('classes/shortcode.class.php');
            $g_lbp_shortcode_version = '3.9';
            break;
    }
    require_once('classes/filters.class.php');
    require_once('classes/actions.class.php');
    require_once('classes/init.class.php');
    /**
    * Require HTML Parser
    */
    require_once('classes/shd.class.php');

    /**
    * On Plugin Activation initialize settings
    */
    if (!function_exists('ActivateLBP')) {
        function ActivateLBP() {
            $lbp_activate = new lbp_init();
            $lbp_activate->lightboxPlusInit();
            unset($lbp_activate);
        }
    }

    /**
    * On plugin deactivation remove settings
    */
    if (!function_exists('DeactivateLBP')) {
        function DeactivateLBP() {
        }
    }

    /**
    * On plugin deactivation remove settings
    */
    if (!function_exists('UninstallLBP')) {
        function UninstallLBP() {
            delete_option('lightboxplus_options');
            delete_option('lightboxplus_init');
        }
    }


    /**
    * Register activation/deactivation hooks and text domain
    */
    register_activation_hook( __FILE__, 'ActivateLBP' );
    register_deactivation_hook( __FILE__, 'DeactivateLBP' );
    register_uninstall_hook( __FILE__, 'UninstallLBP' );
    load_plugin_textdomain('lightboxplus', false, $path = $g_lightbox_plus_url.'languages');

    /**
    * Ensure class doesn't already exist
    */
    if (!class_exists('wp_lightboxplus')) {
        class wp_lightboxplus extends lbp_init {
            /**
            * The name the options are saved under in the database
            *
            * @var mixed
            */
            var $lightboxOptionsName   = 'lightboxplus_options';
            var $lightboxInitName      = 'lightboxplus_init';
            var $lightboxStylePathName = 'lightboxplus_style_path';

            /**
            * PHP 5 constructor
            */
            function __construct() {
                add_action( 'init', array( $this, 'init' ) );
            }

            /**
            * The PHP 5 Constructor - initializes the plugin and sets up panels
            */
            function init() {
                $this->lightboxOptions = $this->getAdminOptions( $this->lightboxOptionsName );

                if ( !empty( $this->lightboxOptions ) ) { $lightboxPlusOptions = $this->getAdminOptions( $this->lightboxOptionsName ); }

                /**
                * If user is in the admin panel
                */
                if (is_admin() && current_user_can('administrator')) {
                    add_action( 'admin_menu', array( &$this, 'lightboxPlusAddPanel' ) );
                    /**
                    * Check to see if the user wants to use per page/post options
                    */
                    if ((isset($lightboxPlusOptions['use_forpage']) && $lightboxPlusOptions['use_forpage'] == '1') || (isset($lightboxPlusOptions['use_forpost']) && $lightboxPlusOptions['use_forpost'] == '1')) {
                            add_action( 'save_post', array( &$this, 'lightboxPlusSaveMeta'),10,2 );
                            add_action( 'add_meta_boxes', array( &$this, "lightboxPlusMetaBox" ),10,2 );
                    }
                    $this->lbpFinal();
                }
                add_action( 'template_redirect', array( &$this, 'lbpInitial' ) );
                add_filter( 'plugin_row_meta',array( &$this, 'RegisterLBPLinks' ),10,2);
            }

            function lbpInitial() {
                global $the_post_id;
                global $wp_query;

                $the_post_id = $wp_query->post->ID;

                if ( !empty( $this->lightboxOptions ) ) { $lightboxPlusOptions = $this->getAdminOptions( $this->lightboxOptionsName ); }

                /**
                * Remove following line after a few versions or 2.6 is the prevelent version
                */
                $lightboxPlusOptions = $this->setMissingOptions($lightboxPlusOptions);

                if (isset($lightboxPlusOptions['use_perpage']) && $lightboxPlusOptions['use_perpage'] != '0') {
                    add_action( 'wp_print_styles', array( &$this, 'lightboxPlusAddHeader' ), intval($lightboxPlusOptions['load_priority']));
                    if ($lightboxPlusOptions['use_forpage'] && get_post_meta( $the_post_id, '_lbp_use', true )) { $this->lbpFinal(); }
                    if ($lightboxPlusOptions['use_forpost'] && (($wp_query->is_posts_page) || is_single())) { $this->lbpFinal(); }
                } else {
                    $this->lbpFinal();
                }
            }

            function lbpFinal() {
                /**
                * Get lightbox options to check for auto-lightbox and gallery
                */
                if ( !empty( $this->lightboxOptions ) ) {
                    $lightboxPlusOptions = $this->getAdminOptions( $this->lightboxOptionsName );
                    /**
                    * Remove following line after a few versions or 2.6 is the prevelent version
                    */
                    $lightboxPlusOptions = $this->setMissingOptions($lightboxPlusOptions);

                    add_action( 'wp_print_styles', array( &$this, 'lightboxPlusAddHeader' ),intval($lightboxPlusOptions['load_priority']) );

                    /**
                    * Check to see if users wants images auto-lightboxed
                    */
                    if ( $lightboxPlusOptions['no_auto_lightbox'] != 1 ) {
                        /**
                        * Check to see if user wants to have gallery images lightboxed
                        */
                        if ($lightboxPlusOptions['gallery_lightboxplus'] != 1) {
                            add_filter( 'the_content', array( &$this, 'filterLightboxPlusReplace' ), 11 );
                        }
                        else {
                            remove_shortcode( 'gallery' );
                            add_shortcode( 'gallery', array( &$this, 'lightboxPlusGallery' ), 6);
                            add_filter( 'the_content', array( &$this, 'filterLightboxPlusReplace' ), 11 );
                        }
                    }
                    //add_action( 'wp_footer', array( &$this, 'lightboxPlusColorbox' ) );
                    add_action( $lightboxPlusOptions['load_location'], array( &$this, 'lightboxPlusColorbox' ),(intval($lightboxPlusOptions['load_priority']) + 4) );
                }
            }

            /**
            * Retrieves the options from the database.
            *
            * @param mixed $optionsName
            */
            function getAdminOptions( $optionsName ) {
                $savedOptions = get_option( $optionsName );
                if ( !empty( $savedOptions ) ) {
                    foreach ( $savedOptions as $key => $option ) {
                        $theOptions[$key] = $option;
                    }
                }
                update_option( $optionsName, $theOptions );
                return $theOptions;
            }

            /**
            * Saves the admin options to the database.
            *
            * @param mixed $optionsName
            * @param mixed $options
            */
            function saveAdminOptions( $optionsName, $options ) {
                update_option( $optionsName, $options );
            }

            /**
            * Adds links to the plugin row on the plugins page.
            * This add_filter function must be in this file or it does not work correctly, requires plugin_basename and file match
            *
            * @param mixed $links
            * @param mixed $file
            */
            function RegisterLBPLinks($links, $file) {
                $base = plugin_basename(__FILE__);
                if ($file == $base) {
                    $links[] = '<a href="themes.php?page=lightboxplus" title="Lightbox Plus Colorbox Settings">' . __('Settings','lightboxplus') . '</a>';
                    $links[] = '<a href="http://www.23systems.net/wordpress-plugins/lightbox-plus-for-wordpress/frequently-asked-questions/" title="Lightbox Plus Colorbox FAQ">' . __('FAQ','lightboxplus') . '</a>';
                    $links[] = '<a href="http://www.23systems.net/wordpress-php-development-services/wordpress-plugin-client-support/wordpress-plugin-support/" title="Lightbox Plus Colorbox Direct Support">' . __('Request Support','lightboxplus') . '</a>';
                    $links[] = '<a href="http://wordpress.org/support/plugin/lightbox-plus" title="Lightbox Plus Colorbox Support Forum">' . __('Support Forum','lightboxplus') . '</a>';
                    $links[] = '<a href="http://www.23systems.net/donate/" title="Donate to Lightbox Plus Colorbox">' . __('Donate','lightboxplus') . '</a>';
                    $links[] = '<a href="http://twitter.com/23systems" title="@23System on Twitter">' . __('Twitter','lightboxplus') . '</a>';
                    $links[] = '<a href="http://www.facebook.com/23Systems" title="23Systems on Facebook">' . __('Facebook','lightboxplus') . '</a>';
                    $links[] = '<a href="http://www.linkedin.com/company/23systems" title="23Systems on LinkedIn">' . __('LinkedIn','lightboxplus') . '</a>';
                    $links[] = '<a href="https://plus.google.com/111641141856782935011/posts" title="23System on Google+">' . __('Google+','lightboxplus') . '</a>';
                }
                return $links;
            }

            /**
            * The admin panel funtion
            * handles creating admin panel and processing of form submission
            */
            function lightboxPlusAdminPanel( ) {
                global $g_lightbox_plus_url;
                global $g_lbp_messages;
                global $g_lbp_message_title;
                global $g_lbp_local_style_path;
                global $g_lbp_global_style_path;
                global $g_lbp_version;
                global $g_lbp_shortcode_version;
                global $g_lbp_colorbox_version;
                global $g_lbp_simple_html_dom_version;
                $location = admin_url('/admin.php?page=lightboxplus');
                /**
                * Check form submission and update setting
                */
                if ( isset($_POST['action']) ) {
                    switch ( $_POST['sub'] ) {
                        case 'settings':
                            $lightboxPlusOptions = array(
                                "lightboxplus_multi"   => $_POST['lightboxplus_multi'],
                                "use_inline"           => $_POST['use_inline'],
                                "inline_num"           => $_POST['inline_num'],
                                "lightboxplus_style"   => $_POST['lightboxplus_style'],
                                "use_custom_style"     => $_POST['use_custom_style'],
                                "disable_css"          => $_POST['disable_css'],
                                "hide_about"           => $_POST['hide_about'],
                                "output_htmlv"         => $_POST['output_htmlv'],
                                "data_name"            => $_POST['data_name'],
                                "load_location"        => $_POST['load_location'],
                                "load_priority"        => $_POST['load_priority'],
                                "use_perpage"          => $_POST['use_perpage'],
                                "use_forpage"          => $_POST['use_forpage'],
                                "use_forpost"          => $_POST['use_forpost'],
                                "transition"           => $_POST['transition'],
                                "speed"                => $_POST['speed'],
                                "width"                => $_POST['width'],
                                "height"               => $_POST['height'],
                                "inner_width"          => $_POST['inner_width'],
                                "inner_height"         => $_POST['inner_height'],
                                "initial_width"        => $_POST['initial_width'],
                                "initial_height"       => $_POST['initial_height'],
                                "max_width"            => $_POST['max_width'],
                                "max_height"           => $_POST['max_height'],
                                "resize"               => $_POST['resize'],
                                "opacity"              => $_POST['opacity'],
                                "preloading"           => $_POST['preloading'],
                                "label_image"          => $_POST['label_image'],
                                "label_of"             => $_POST['label_of'],
                                "previous"             => $_POST['previous'],
                                "next"                 => $_POST['next'],
                                "close"                => $_POST['close'],
                                "overlay_close"        => $_POST['overlay_close'],
                                "slideshow"            => $_POST['slideshow'],
                                "slideshow_auto"       => $_POST['slideshow_auto'],
                                "slideshow_speed"      => $_POST['slideshow_speed'],
                                "slideshow_start"      => $_POST['slideshow_start'],
                                "slideshow_stop"       => $_POST['slideshow_stop'],
                                "use_caption_title"    => $_POST['use_caption_title'],
                                "gallery_lightboxplus" => $_POST['gallery_lightboxplus'],
                                "multiple_galleries"   => $_POST['multiple_galleries'],
                                "use_class_method"     => $_POST['use_class_method'],
                                "class_name"           => $_POST['class_name'],
                                "no_auto_lightbox"     => $_POST['no_auto_lightbox'],
                                "text_links"           => $_POST['text_links'],
                                "no_display_title"     => $_POST['no_display_title'],
                                "scrolling"            => $_POST['scrolling'],
                                "photo"                => $_POST['photo'],
                                "rel"                  => $_POST['rel'], //Disable grouping
                                "loop"                 => $_POST['loop'],
                                "esc_key"              => $_POST['esc_key'],
                                "arrow_key"            => $_POST['arrow_key'],
                                "top"                  => $_POST['top'],
                                "bottom"               => $_POST['bottom'],
                                "left"                 => $_POST['left'],
                                "right"                => $_POST['right'],
                                "fixed"                => $_POST['fixed']
                            );

                            $g_lbp_message_title .= __('Lightbox Plus Colorbox Setting Saved','lightboxplus');
                            $g_lbp_messages      .= __('Lightbox Plus Colorbox base settings updated.','lightboxplus').'<br /><br />';
                            $g_lbp_messages      .= __('Primary lightbox settings updated.','lightboxplus').'<br /><br />';

                            if ($_POST['lightboxplus_multi'] && isset($_POST['ready_sec'])) {
                                $lightboxPlusSecondaryOptions = array(
                                    "transition_sec"       => $_POST['transition_sec'],
                                    "speed_sec"            => $_POST['speed_sec'],
                                    "width_sec"            => $_POST['width_sec'],
                                    "height_sec"           => $_POST['height_sec'],
                                    "inner_width_sec"      => $_POST['inner_width_sec'],
                                    "inner_height_sec"     => $_POST['inner_height_sec'],
                                    "initial_width_sec"    => $_POST['initial_width_sec'],
                                    "initial_height_sec"   => $_POST['initial_height_sec'],
                                    "max_width_sec"        => $_POST['max_width_sec'],
                                    "max_height_sec"       => $_POST['max_height_sec'],
                                    "resize_sec"           => $_POST['resize_sec'],
                                    "opacity_sec"          => $_POST['opacity_sec'],
                                    "preloading_sec"       => $_POST['preloading_sec'],
                                    "label_image_sec"      => $_POST['label_image_sec'],
                                    "label_of_sec"         => $_POST['label_of_sec'],
                                    "previous_sec"         => $_POST['previous_sec'],
                                    "next_sec"             => $_POST['next_sec'],
                                    "close_sec"            => $_POST['close_sec'],
                                    "overlay_close_sec"    => $_POST['overlay_close_sec'],
                                    "slideshow_sec"        => $_POST['slideshow_sec'],
                                    "slideshow_auto_sec"   => $_POST['slideshow_auto_sec'],
                                    "slideshow_speed_sec"  => $_POST['slideshow_speed_sec'],
                                    "slideshow_start_sec"  => $_POST['slideshow_start_sec'],
                                    "slideshow_stop_sec"   => $_POST['slideshow_stop_sec'],
                                    "iframe_sec"           => $_POST['iframe_sec'],
                                    //"use_class_method_sec" => $_POST['use_class_method_sec'],
                                    "class_name_sec"       => $_POST['class_name_sec'],
                                    "no_display_title_sec" => $_POST['no_display_title_sec'],
                                    "scrolling_sec"        => $_POST['scrolling_sec'],
                                    "photo_sec"            => $_POST['photo_sec'],
                                    "rel_sec"              => $_POST['rel_sec'], //Disable grouping
                                    "loop_sec"             => $_POST['loop_sec'],
                                    "esc_key_sec"          => $_POST['esc_key_sec'],
                                    "arrow_key_sec"        => $_POST['arrow_key_sec'],
                                    "top_sec"              => $_POST['top_sec'],
                                    "bottom_sec"           => $_POST['bottom_sec'],
                                    "left_sec"             => $_POST['left_sec'],
                                    "right_sec"            => $_POST['right_sec'],
                                    "fixed_sec"            => $_POST['fixed_sec']
                                );
                                $lightboxPlusOptions = array_merge($lightboxPlusOptions, $lightboxPlusSecondaryOptions);
                                unset($lightboxPlusSecondaryOptions);
                                $g_lbp_messages .= __('Secondary lightbox settings updated.','lightboxplus').'<br /><br />';
                            }

                            if ( $_POST['use_inline']  && isset($_POST['ready_inline'])) {
                                if (!empty($this->lightboxOptions)) {
                                    $lightboxPlusInlineOptions   = $this->getAdminOptions($this->lightboxOptionsName);
                                }

                                if ($lightboxPlusInlineOptions['use_inline'] && $lightboxPlusInlineOptions['inline_num'] != '') {
                                    $inline_links            = array();
                                    $inline_hrefs            = array();
                                    $inline_transitions      = array();
                                    $inline_speeds           = array();
                                    $inline_widths           = array();
                                    $inline_heights          = array();
                                    $inline_inner_widths     = array();
                                    $inline_inner_heights    = array();
                                    $inline_max_widths       = array();
                                    $inline_max_heights      = array();
                                    $inline_position_tops    = array();
                                    $inline_position_rights  = array();
                                    $inline_position_bottoms = array();
                                    $inline_position_lefts   = array();
                                    $inline_fixeds           = array();
                                    $inline_opens            = array();
                                    $inline_opacitys         = array();
                                    for ($i = 1; $i <= $lightboxPlusInlineOptions['inline_num']; $i++) {
                                        $inline_links[]            = $_POST["inline_link_$i"];
                                        $inline_hrefs[]            = $_POST["inline_href_$i"];
                                        $inline_transitions[]      = $_POST["inline_transition_$i"];
                                        $inline_speeds[]           = $_POST["inline_speed_$i"];
                                        $inline_widths[]           = $_POST["inline_width_$i"];
                                        $inline_heights[]          = $_POST["inline_height_$i"];
                                        $inline_inner_widths[]     = $_POST["inline_inner_width_$i"];
                                        $inline_inner_heights[]    = $_POST["inline_inner_height_$i"];
                                        $inline_max_widths[]       = $_POST["inline_max_width_$i"];
                                        $inline_max_heights[]      = $_POST["inline_max_height_$i"];
                                        $inline_position_tops[]    = $_POST["inline_position_top_$i"];
                                        $inline_position_rights[]  = $_POST["inline_position_right_$i"];
                                        $inline_position_bottoms[] = $_POST["inline_position_bottom_$i"];
                                        $inline_position_lefts[]   = $_POST["inline_position_left_$i"];
                                        $inline_fixeds[]           = $_POST["inline_fixed_$i"];
                                        $inline_opens[]            = $_POST["inline_open_$i"];
                                        $inline_opacitys[]         = $_POST["inline_opacity_$i"];
                                    }
                                }

                                $lightboxPlusInlineOptions = array(
                                    "inline_links"            => $inline_links,
                                    "inline_hrefs"            => $inline_hrefs,
                                    "inline_transitions"      => $inline_transitions,
                                    "inline_speeds"           => $inline_speeds,
                                    "inline_widths"           => $inline_widths,
                                    "inline_heights"          => $inline_heights,
                                    "inline_inner_widths"     => $inline_inner_widths,
                                    "inline_inner_heights"    => $inline_inner_heights,
                                    "inline_max_widths"       => $inline_max_widths,
                                    "inline_max_heights"      => $inline_max_heights,
                                    "inline_position_tops"    => $inline_position_tops,
                                    "inline_position_rights"  => $inline_position_rights,
                                    "inline_position_bottoms" => $inline_position_bottoms,
                                    "inline_position_lefts"   => $inline_position_lefts,
                                    "inline_fixeds"           => $inline_fixeds,
                                    "inline_opens"            => $inline_opens,
                                    "inline_opacitys"         => $inline_opacitys
                                );

                                $lightboxPlusOptions = array_merge($lightboxPlusOptions, $lightboxPlusInlineOptions);
                                unset($lightboxPlusInlineOptions);
                                $g_lbp_messages .= __('Inline lightbox settings updated.','lightboxplus').'<br /><br />';
                            }

                            $this->saveAdminOptions($this->lightboxOptionsName, $lightboxPlusOptions);

                            /**
                            * Load options info array if not yet loaded
                            */
                            if ( !empty( $this->lightboxOptions )) { $lightboxPlusOptions = $this->getAdminOptions( $this->lightboxOptionsName ); }

                            /**
                            * Initialize Custom lightbox Plus Path
                            */
                            if ( $_POST['use_custom_style'] && !is_dir($g_lbp_global_style_path) ) {
                                $dir_create_result = $this->lightboxPlusGlobalStylesinit();
                                if ($dir_create_result) {
                                    $g_lbp_messages .= __('Lightbox custom styles initialized.','lightboxplus').'<br /><br />';
                                }
                                else {
                                    $g_lbp_messages .= __('<strong style="color:#900;">Lightbox custom styles initialization failed.</strong><br />Please create a directory called <code>lbp-css</code> in your <code>wp-content</code> directory and copy the styles located in <code>wp-content/plugins/lightbox-plus/css/</code> to <code>wp-content/lbp-css</code>','lightboxplus').'<br /><br />';
                                }
                            }

                            /**
                            * Initialize Secondary Lightbox if enabled
                            */
                            if ( $_POST['lightboxplus_multi'] && !isset($_POST['class_name_sec']) ) {
                                $this->lightboxPlusSecondaryInit();
                                $g_lbp_messages .= __('Secondary lightbox settings initialized.','lightboxplus').'<br /><br />';
                            }
                            /**
                            *  Initialize Inline Lightboxes if enabled
                            */
                            if ( $_POST['use_inline'] && !isset($_POST['inline_link_1']) ) {
                                $this->lightboxPlusInlineInit($_POST['inline_num']);
                                $g_lbp_messages .= __('Inline lightbox settings initialized.','lightboxplus').'<br /><br />';
                            }

                            unset($lightboxPlusOptions);

                            break;
                        case 'reset':
                            if ( !empty( $_POST['reinit_lightboxplus'] )) {
                                delete_option( $this->lightboxOptionsName );
                                delete_option( $this->lightboxInitName );
                                delete_option( $this->lightboxStylePathName );
                                $g_lbp_message_title .= __('Lightbox Plus Colorbox Reset','lightboxplus');
                                $g_lbp_messages .= '<strong>'.__('Lightbox Plus Colorbox has been completely reset to default settings.','lightboxplus').'</strong><br /><br />';

                                /**
                                * Used to remove old setting from previous versions of LBP
                                *
                                * @var string
                                */
                                $pluginPath = ( dirname( __FILE__ ));
                                if ( file_exists( $pluginPath."/images" )) {
                                    $g_lbp_messages .= __('Deleting: ').$pluginPath.'/images . . . '.__('Removed old Lightbox Plus Colorbox style images.','lightboxplus').'<br /><br />';
                                    $this->delete_directory( $pluginPath."/images/" );
                                } else {
                                    $g_lbp_messages .= '';
                                }
                                if ( file_exists( $pluginPath."/js/"."lightbox.js" )) {
                                    $g_lbp_messages .= __('Deleting: ','lightboxplus').$pluginPath.'/js/lightbox.js . . . '.__('Removed old Lightbox Plus Colorbox JavaScript.','lightboxplus').'<br /><br />';
                                    $this->delete_file( $pluginPath."/js", "lightbox.js" );
                                } else {
                                    $g_lbp_messages .= '';
                                }
                                $oldStyles = $this->dirList( $pluginPath."/css/" );
                                if ( !empty( $oldStyles )) {
                                    foreach ( $oldStyles as $value ) {
                                        if ( file_exists( $pluginPath."/css/".$value )) {
                                            $g_lbp_messages .= __('Deleting: '.$pluginPath.'/css/'.$value).' . . . <br /><br />';
                                            $this->delete_file( $pluginPath."/css", $value );
                                        }
                                    }
                                    $g_lbp_messages .= __('Removed old Lightbox Plus Colorbox styles.','lightboxplus').'<br /><br />';
                                }
                                else {
                                    $g_lbp_messages .= '';
                                }
                            }

                            /**
                            * Will reinitilize on reload where option lightboxplus_init is null
                            *
                            * @var wp_lightboxplus
                            */
                            $this->lightboxPlusInit();
                            $g_lbp_messages .= '<strong>'.__('Please check and update your Lightbox Plus Colorbox settings before continuing!','lightboxplus').'</strong>';
                            break;
                        default:
                            break;
                    }
                }

                /**
                * Get options to load in form
                */
                if ( !empty( $this->lightboxOptions )) { $lightboxPlusOptions = $this->getAdminOptions( $this->lightboxOptionsName ); }

                /**
                * Check if there are styles
                *
                * @var mixed
                */
                if ($lightboxPlusOptions['use_custom_style']) {
                    $stylePath = $g_lbp_global_style_path;
                } else {
                    $stylePath = $g_lbp_local_style_path;
                }
                if ( $handle = opendir( $stylePath )) {
                    while ( false !== ( $file = readdir( $handle ))) {
                        if ( $file != "." && $file != ".." && $file != ".DS_Store"  && $file != ".svn" && $file != "index.html") {
                            $styles[$file] = $stylePath."/".$file."/";
                        }
                    }
                    closedir( $handle );
                }
            ?>
            <div class="wrap" id="lightbox">
                <h2><?php _e( 'Lightbox Plus Colorbox (v'.$g_lbp_version.') Options', 'lightboxplus' )?></h2>
                <h3><?php _e( 'With Colorbox (v'.$g_lbp_colorbox_version.') and PHP Simple HTML DOM Parser (v'.$g_lbp_simple_html_dom_version.')', 'lightboxplus' )?></h3>
                <h4><?php _e( '<a href="http://www.23systems.net/plugins/lightbox-plus/">Visit plugin site</a> | 
                        <a href="http://www.23systems.net/wordpress-plugins/lightbox-plus-for-wordpress/frequently-asked-questions/" title="Lightbox Plus Colorbox FAQ">FAQ</a> | 
                        <a href="http://www.23systems.net/wordpress-php-development-services/wordpress-plugin-client-support/wordpress-plugin-support/" title="Lightbox Plus Colorbox Direct Support">Request Support</a> | 
                        <a href="http://wordpress.org/support/plugin/lightbox-plus" title="Lightbox Plus Colorbox Support Forum">Support Forum</a> | 
                        <a href="http://twitter.com/23systems" title="@23Systems on Twitter">Twitter</a> | 
                        <a href="http://www.facebook.com/23Systems" title="23Systems on Facebook">Facebook</a> | 
                        <a href="http://www.linkedin.com/company/23systems" title="23Systems of LinkedIn">LinkedIn</a> | 
                    <a href="https://plus.google.com/111641141856782935011/posts" title="23System on Google+">Google+</a>' ); ?></h4>

                <?php
                    if ($g_lbp_messages) {
                        echo '<div id="lbp_message" title="'.$g_lbp_message_title.'" style="display:none">'.$g_lbp_messages.'</div>';
                        echo '<script type="text/javascript">';
                        echo 'jQuery(document).ready(function($){';
                        echo '  $("#lbp_message").dialog({ buttons: { "Ok": function() { $(this).dialog("close"); } },open: function() { $(".ui-dialog").fadeOut(9000); },resizable:false,width: 480 });';
                        echo '});';
                        echo '</script>';
                    }
                    require('admin/lightbox.admin.php');
            ?></div>
            <?php
            }
            /**
            * END CLASS
            */
        }
        /**
        * END CLASS CHECK
        */
    }
    /**
    * Instantiate the class
    */
if (class_exists('wp_lightboxplus')) { $wp_lightboxplus = new wp_lightboxplus(); }