HEX
Server: LiteSpeed
System: Linux php-prod-1.spaceapp.ru 5.15.0-157-generic #167-Ubuntu SMP Wed Sep 17 21:35:53 UTC 2025 x86_64
User: xnsbb3110 (1041)
PHP: 8.1.33
Disabled: NONE
Upload Files
File: //proc/self/cwd/wp-content/plugins/gallery-images/includes/class-gallery-img-install.php
<?php
if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly
}

class Gallery_Img_Install {

	public static function init() {
		add_action( 'init', array( __CLASS__, 'check_version' ), 5 );
	}
	/**
	 * Check Gallery Image version and run the updater is required.
	 *
	 * This check is done on all requests and runs if the versions do not match.
	 */
	public static function check_version() {
		if(get_option( 'gallery_img_version' ) !== Gallery_Img()->version ){
			self::install();
			update_option( 'gallery_img_version',Gallery_Img()->version );
		}
	}

	/**
	 * Install  Gallery Image.
	 */
	public static function install() {
		if ( ! defined( 'GALLERY_IMG_INSTALLING' ) ) {
			define( 'GALLERY_IMG_INSTALLING', true );
		}
		self::create_tables();
        self::install_options();
		// Trigger action
		do_action( 'gallery_img_installed' );
	}

	public static function install_options() {
		$gallery_default_params = gallery_img_get_default_options();
		if ( ( get_option( 'ht_blog_heart_likedislike_thumb_active_color' ) ) ) {
			foreach ( $gallery_default_params as $name => $value ) {
				delete_option( $name, $value );
			}
		}
		$new_options = array(
			'gallery_img_admin_image_hover_preview'             => 'on',
			'gallery_img_light_box_size_fix'                    => 'false',
			'gallery_img_light_box_width'                       => '500',
			'gallery_img_light_box_height'                      => '500',
			'gallery_img_light_box_maxwidth'                    => '900',
			'gallery_img_light_box_maxheight'                   => '700',
			'gallery_img_light_box_initialwidth'                => '300',
			'gallery_img_light_box_initialheight'               => '100',
			'gallery_img_version'                               => '2.0.2'
		);
		if ( ! get_option( 'light_box_initialheight' ) ) {
			foreach ( $new_options as $name => $new_option ) {
				add_option( $name, $new_option );
			}
		}
		global $wpdb;
		$updated_options = array('light_box_size_fix','light_box_width','light_box_height','light_box_maxwidth','light_box_initialwidth','light_box_initialheight');
		foreach ( $updated_options as $updated_option ) {
			$query = $wpdb->prepare("SELECT option_name FROM ".$wpdb->prefix."options WHERE option_name = %s",$updated_option);
			$option_name = $wpdb->get_var($query);
			$wpdb->update(
				$wpdb->prefix."options",
				array( 'option_name' => 'gallery_img_'.$option_name),
				array( 'option_name' => $option_name )
			);
		}
	}

	private static function create_tables() {

		global $wpdb;
		$query     = "SHOW GLOBAL VARIABLES LIKE 'storage_engine'";
		$engine    = $wpdb->get_results( $query );
		$db_engine = "ENGINE=" . $engine[0]->Value . " ";
		$collate   = '';
		if ( $wpdb->has_cap( 'collation' ) ) {
			$collate = $wpdb->get_charset_collate();
		}

/// creat database tables
		$sql_huge_itgallery_images       = "
CREATE TABLE IF NOT EXISTS `" . $wpdb->prefix . "huge_itgallery_images` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(100) DEFAULT NULL,
  `gallery_id` varchar(200) DEFAULT NULL,
  `description` text,
  `image_url` text,
  `sl_url` varchar(128) DEFAULT NULL,
  `sl_type` text NOT NULL,
  `link_target` text NOT NULL,
  `ordering` int(11) NOT NULL,
  `published` tinyint(4) unsigned DEFAULT NULL,
  `published_in_sl_width` tinyint(4) unsigned DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `id` (`id`)
)   " . $db_engine . $collate . " AUTO_INCREMENT=5";
		$sql_huge_itgallery_like_dislike = "
CREATE TABLE IF NOT EXISTS `" . $wpdb->prefix . "huge_itgallery_like_dislike` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `image_id` int(11) NOT NULL,
  `image_status` varchar(10) NOT NULL,
  `ip` varchar(35) NOT NULL,
  `cook` varchar(15) NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `id` (`id`)
) " . $db_engine . $collate . " AUTO_INCREMENT=10";
		$sql_huge_itgallery_gallerys     = "
CREATE TABLE IF NOT EXISTS `" . $wpdb->prefix . "huge_itgallery_gallerys` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(200) NOT NULL,
  `sl_height` int(11) unsigned DEFAULT NULL,
  `sl_width` int(11) unsigned DEFAULT NULL,
  `pause_on_hover` text,
  `gallery_list_effects_s` text,
  `description` text,
  `param` text,
  `sl_position` text NOT NULL,
  `ordering` int(11) NOT NULL,
  `published` text,
   `huge_it_sl_effects` text NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `id` (`id`)
)  " . $db_engine . $collate . " AUTO_INCREMENT=2 ";

		$table_name = $wpdb->prefix . "huge_itgallery_images";
		$sql_2      = "
INSERT INTO 
`" . $table_name . "` (`id`, `name`, `gallery_id`, `description`, `image_url`, `sl_url`, `sl_type`, `link_target`, `ordering`, `published`, `published_in_sl_width`) VALUES
(1, 'Rocky Balboa', '1', '<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. </p><p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>', '" . GALLERY_IMG_IMAGES_URL . "/front_images/projects/1.jpg" . "', 'http://huge-it.com/wordpress-plugins-gallery-demo/#plugin_demo_wrapper', 'image', 'on', 0, 1, NULL),
(2, 'Skiing alone', '1', '<ul><li>lorem ipsumdolor sit amet</li><li>lorem ipsum dolor sit amet</li></ul><p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>', '" . GALLERY_IMG_IMAGES_URL . "/front_images/projects/2.jpg" . "', 'http://huge-it.com/wordpress-gallery-demo-2-content-slider/#plugin_demo_wrapper', 'image', 'on', 1, 1, NULL),
(3, 'Summer dreams', '1', '<h6>Lorem Ipsum </h6><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. </p><p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p><ul><li>lorem ipsum</li><li>dolor sit amet</li><li>lorem ipsum</li><li>dolor sit amet</li></ul>', '" . GALLERY_IMG_IMAGES_URL . "/front_images/projects/3.jpg" . "', 'http://huge-it.com/wordpress-gallery-demo-3-lightbox-gallery/#plugin_demo_wrapper', 'image', 'on', 2, 1, NULL),
(4, 'Mr. Cosmo Kramer', '1', '<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. </p><h7>Dolor sit amet</h7><p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>', '" . GALLERY_IMG_IMAGES_URL . "/front_images/projects/4.jpg" . "', 'http://huge-it.com/wordpress-gallery-demo-4-slideshow/#plugin_demo_wrapper', 'image', 'on', 3, 1, NULL),
(5, 'Edgar Allan Poe', '1', '<h6>Lorem Ipsum</h6><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>', '" . GALLERY_IMG_IMAGES_URL . "/front_images/projects/5.jpg" . "', 'http://huge-it.com/wordpress-gallery-demo-5-thumbnails/#plugin_demo_wrapper', 'image', 'on', 4, 1, NULL),
(6, 'Fix the moment !', '1', '<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. </p><p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>', '" . GALLERY_IMG_IMAGES_URL . "/front_images/projects/6.jpg" . "', 'http://huge-it.com/wordpress-gallery-demo-6-justified-gallery/#plugin_demo_wrapper', 'image', 'on', 5, 1, NULL),
(7, 'Lions eyes', '1', '<h6>Lorem Ipsum</h6><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. </p><p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>', '" . GALLERY_IMG_IMAGES_URL . "/front_images/projects/7.jpg" . "', 'http://huge-it.com/wordpress-gallery-demo-7-blog-style-view/#plugin_demo_wrapper', 'image', 'on', 6, 1, NULL),
(8, 'Photo with exposure', '1', '<h6>Lorem Ipsum </h6><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. </p><p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p><ul><li>lorem ipsum</li><li>dolor sit amet</li><li>lorem ipsum</li><li>dolor sit amet</li></ul>', '" . GALLERY_IMG_IMAGES_URL . "/front_images/projects/8.jpg" . "', 'http://huge-it.com/wordpress-plugins-gallery-demo/#plugin_demo_wrapper', 'image', 'on', 7, 1, NULL),
(9, 'Travel with music', '1', '<h6>Lorem Ipsum </h6><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. </p><p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p><ul><li>lorem ipsum</li><li>dolor sit amet</li><li>lorem ipsum</li><li>dolor sit amet</li></ul>', '" . GALLERY_IMG_IMAGES_URL . "/front_images/projects/9.jpg" . "', 'http://huge-it.com/wordpress-gallery-demo-2-content-slider/#plugin_demo_wrapper', 'image', 'on', 7, 1, NULL)";
		$table_name = $wpdb->prefix . "huge_itgallery_gallerys";
		$sql_3      = "
INSERT INTO `$table_name` (`id`, `name`, `sl_height`, `sl_width`, `pause_on_hover`, `gallery_list_effects_s`, `description`, `param`, `sl_position`, `ordering`, `published`, `huge_it_sl_effects`) VALUES
(1, 'My First Gallery', 375, 600, 'on', 'random', '4000', '1000', 'center', 1, '300', '5')";
		$wpdb->query( $sql_huge_itgallery_images );
		$wpdb->query( $sql_huge_itgallery_gallerys );
		$wpdb->query( $sql_huge_itgallery_like_dislike );

		if ( ! $wpdb->get_var( "select count(*) from " . $wpdb->prefix . "huge_itgallery_images" ) ) {
			$wpdb->query( $sql_2 );
		}
		if ( ! $wpdb->get_var( "select count(*) from " . $wpdb->prefix . "huge_itgallery_gallerys" ) ) {
			$wpdb->query( $sql_3 );
		}
		////////////////////////////////////////
		$imagesAllFieldsInArray2 = $wpdb->get_results( "DESCRIBE " . $wpdb->prefix . "huge_itgallery_gallerys", ARRAY_A );
		$fornewUpdate            = 0;
		foreach ( $imagesAllFieldsInArray2 as $galleriesField2 ) {
			if ( $galleriesField2['Field'] == 'display_type' ) {
				$fornewUpdate = 1;
			}
		}
		if ( $fornewUpdate != 1 ) {
			$wpdb->query( "ALTER TABLE " . $wpdb->prefix . "huge_itgallery_gallerys ADD display_type integer DEFAULT '2' " );
			$wpdb->query( "ALTER TABLE " . $wpdb->prefix . "huge_itgallery_gallerys ADD content_per_page integer DEFAULT '5' " );
		}
		///////////////////////////////////////////////////////////////////////
		$imagesAllFieldsInArray3 = $wpdb->get_results( "DESCRIBE " . $wpdb->prefix . "huge_itgallery_images", ARRAY_A );
		$fornewUpdate2           = 0;
		foreach ( $imagesAllFieldsInArray3 as $galleriesField3 ) {
			if ( $galleriesField3['Field'] == 'sl_url' && $galleriesField3['Type'] == 'text' ) {
				$fornewUpdate2 = 1;
			}
		}
		if ( $fornewUpdate2 != 1 ) {
			$wpdb->query( "ALTER TABLE " . $wpdb->prefix . "huge_itgallery_images CHANGE sl_url sl_url TEXT CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL" );
		}
		//ADDING LIKE/DISLIKE COLUMNS
		///////////////////////////////////////////////////////////////////////
		$imagesAllFieldsInArray4 = $wpdb->get_results( "DESCRIBE " . $wpdb->prefix . "huge_itgallery_images", ARRAY_A );
		$fornewUpdate3           = 0;
		foreach ( $imagesAllFieldsInArray4 as $galleriesField4 ) {
			if ( $galleriesField4['Field'] == 'like' ) {
				$fornewUpdate3 = 1;
			}
		}
		if ( $fornewUpdate3 != 1 ) {
			$wpdb->query( "ALTER TABLE " . $wpdb->prefix . "huge_itgallery_images  ADD `like` INT NOT NULL DEFAULT 0 AFTER `published_in_sl_width`" );
			$wpdb->query( "ALTER TABLE " . $wpdb->prefix . "huge_itgallery_images  ADD `dislike` INT NOT NULL DEFAULT '0' AFTER `like`" );
		}
		//ADDING Rating COLUMNS
		$imagesAllFieldsInArray5 = $wpdb->get_results( "DESCRIBE " . $wpdb->prefix . "huge_itgallery_gallerys", ARRAY_A );
		$fornewUpdate4           = 0;
		foreach ( $imagesAllFieldsInArray5 as $galleriesField5 ) {
			if ( $galleriesField5['Field'] == 'rating' ) {
				$fornewUpdate4 = 1;
			}
		}
		if ( $fornewUpdate4 != 1 ) {
			$wpdb->query( "ALTER TABLE " . $wpdb->prefix . "huge_itgallery_gallerys  ADD `rating` VARCHAR( 15 ) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT  'off'" );
		}
		/////////////////////////////////////////////
		$imagesAllFieldsInArray6 = $wpdb->get_results( "DESCRIBE " . $wpdb->prefix . "huge_itgallery_gallerys", ARRAY_A );
		$fornewUpdate5           = 0;
		foreach ( $imagesAllFieldsInArray6 as $galleriesField6 ) {
			if ( $galleriesField5['Field'] == 'autoslide' ) {
				$fornewUpdate5 = 1;
			}
		}
		if ( $fornewUpdate5 != 1 ) {
			$wpdb->query( "ALTER TABLE " . $wpdb->prefix . "huge_itgallery_gallerys  ADD `autoslide` VARCHAR( 15 ) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT  'on'" );
		}
		$table_name = $wpdb->prefix . "huge_itgallery_images";
		$query      = "SELECT id,image_url,gallery_id FROM " . $table_name . " WHERE gallery_id=1";
		$images_url = $wpdb->get_results( $query );
		foreach ( $images_url as $image_url ) {
			if ( strpos( $image_url->image_url, '/gallery-images/Front_images' ) > - 1 ) {
				$new_url = str_replace( 'gallery-images/Front_images/', 'gallery-images/assets/images/front_images/', $image_url->image_url );
				$wpdb->query( $wpdb->prepare( "UPDATE " . $table_name . " SET image_url= %s WHERE id=%d", $new_url, $image_url->id ) );
			}
			if ( strpos( $image_url->image_url, '/gallery-images-pro-master/Front_images' ) > - 1 ) {
				$new_url = str_replace( 'gallery-images-pro-master/Front_images/', 'gallery-images-pro-master/assets/images/front_images/', $image_url->image_url );
				$wpdb->query( $wpdb->prepare( "UPDATE " . $table_name . " SET image_url= %s WHERE id=%d", $new_url, $image_url->id ) );
			}
		}
	}
}

Gallery_Img_Install::init();