| Server IP : 195.130.67.5 / Your IP : 216.73.217.154 Web Server : Microsoft-IIS/10.0 System : Windows NT WEBSERVER1 10.0 build 17763 (Windows Server 2016) i586 User : IUSR ( 0) PHP Version : 7.4.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /inetpub/wwwroot/cdc/wp-content/plugins/simple-lightbox/ |
Upload File : |
<?php
/**
* Simple Lightbox
*
* @package Simple Lightbox
* @author Archetyped <support@archetyped.com>
* @copyright 2025 Archetyped
*
* Plugin Name: Simple Lightbox
* Plugin URI: http://archetyped.com/tools/simple-lightbox/
* Description: The highly customizable lightbox for WordPress
* Version: 2.9.5
* Requires at least: 5.3
* Requires PHP: 5.6.20
* Text Domain: simple-lightbox
* Domain Path: /l10n
* Author: Archetyped
* Author URI: http://archetyped.com
* Support URI: https://github.com/archetyped/simple-lightbox/wiki/Feedback-&-Support
*/
require_once dirname( __FILE__ ) . '/includes/class-requirements-check.php';
/* @var array Plugin Requirements */
$slb_requirements = new SLB_Requirements_Check(
array(
'name' => __( 'Simple Lightbox', 'simple-lightbox' ),
'file' => __FILE__,
'uri' => array(
'reference' => 'https://github.com/archetyped/simple-lightbox/wiki/Requirements',
),
)
);
// Check requirements before initializing plugin.
if ( $slb_requirements->passes() ) {
/**
* Initialize SLB
*
* @return void
*/
function slb_init() {
require_once dirname( __FILE__ ) . '/load.php';
}
add_action( 'init', 'slb_init', 1 );
}
unset( $slb_requirements );