HEX
Server: Apache/2.4.59 (Debian)
System: Linux emory.shared.1984.is 6.1.0-27-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.115-1 (2024-11-01) x86_64
User: u11574 (1020)
PHP: 7.4.33
Disabled: exec,system,passthru,shell_exec,popen,show_source,shell,symlink,proc_open,pcntl_exec,pcntl_fork,pcntl_wait,pcntl_alarm,pcntl_signal,pcntl_signal_dispatch,pcntl_getpriority,proc_get_status,expect_popen,dl,putenv,mail
Upload Files
File: /var/www/virtual/mariaellingsen.com/htdocs/wp-content/plugins/soliloquy/includes/admin/common.php
<?php
/**
 * Common admin class.
 *
 * @since 1.0.0
 *
 * @package Soliloquy
 * @author SoliloquyWP Team <support@soliloquywp.com>
 */

// Exit if accessed directly.
if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

class Soliloquy_Common_Admin {

	/**
	 * Holds the class object.
	 *
	 * @since 1.0.0
	 *
	 * @var object
	 */
	public static $instance;

	/**
	 * Path to the file.
	 *
	 * @since 1.0.0
	 *
	 * @var string
	 */
	public $file = __FILE__;

	/**
	 * Holds the base class object.
	 *
	 * @since 1.0.0
	 *
	 * @var object
	 */
	public $base;

	/**
	 * Primary class constructor.
	 *
	 * @since 1.0.0
	 */
	public function __construct() {

		// Load the base class object.
		$this->base = Soliloquy::get_instance();

		// Check for upgrading sliders.
		add_action( 'admin_notices', array( $this, 'legacy_upgrade' ) );
		add_action( 'admin_notices', array( $this, 'legacy_upgrade_success' ) );

		// Delete any slider association on attachment deletion. Also delete any extra cropped images.
		add_action( 'delete_attachment', array( $this, 'delete_slider_association' ) );
		add_action( 'delete_attachment', array( $this, 'delete_cropped_image' ) );

		// Ensure slider display is correct when trashing/untrashing sliders.
		add_action( 'wp_trash_post', array( $this, 'trash_slider' ) );
		add_action( 'untrash_post', array( $this, 'untrash_slider' ) );
	}

	/**
	 * Performs a legacy upgrade for sliders from v1 to v2.
	 *
	 * @since 1.0.0
	 */
	public function legacy_upgrade() {

		// If the option exists for upgrading, do nothing.
		$upgrade_lite = get_option( 'soliloquy_upgrade' );
		if ( $upgrade_lite ) {
			return;
		}

		// If the user does not have the license option from v1, they don't need to upgrade either.
		$v1_license = get_option( 'soliloquy_license_key' );
		if ( ! $v1_license ) {
			return;
		}

		?>
		<div class="error">
			<p><?php printf( __( 'Soliloquy is now rocking v2! <strong>You need to upgrade your legacy v1 sliders and pre-official release v2 sliders to the official v2 slider architecture.</strong> <a href="%s">Click here to begin the upgrade process.</a>', 'soliloquy' ), esc_url( add_query_arg( 'page', 'soliloquy-settings#!soliloquy-tab-upgrade', admin_url( 'edit.php?post_type=soliloquy' ) ) ) ); ?></p>
		</div>
		<?php
	}

	/**
	 * Outputs the legacy upgrade notice message for folks who have just upgraded.
	 *
	 * @since 1.0.0
	 */
	public function legacy_upgrade_success() {

		// If the parameter is not set, do nothing.
		if ( empty( $_GET['soliloquy-upgraded'] ) ) {
			return;
		}

		?>
		<div class="updated">
			<p><strong><?php esc_html_e( 'Congratulations! You have upgraded your sliders successfully!', 'soliloquy' ); ?></strong></p>
		</div>
		<?php
	}

	/**
	 * Deletes the Soliloquy slider association for the image being deleted.
	 *
	 * @since 1.0.0
	 *
	 * @param int $attach_id The attachment ID being deleted.
	 */
	public function delete_slider_association( $attach_id ) {

		$has_slider = get_post_meta( $attach_id, '_sol_has_slider', true );

		// Only proceed if the image is attached to any Soliloquy sliders.
		if ( ! empty( $has_slider ) ) {
			foreach ( (array) $has_slider as $post_id ) {
				// Remove the in_slider association.
				$in_slider = get_post_meta( $post_id, '_sol_in_slider', true );
				if ( ! empty( $in_slider ) ) {
					if ( ( $key = array_search( $attach_id, (array) $in_slider ) ) !== false ) {
						unset( $in_slider[ $key ] );
					}
				}

				update_post_meta( $post_id, '_sol_in_slider', $in_slider );

				// Remove the image from the slider altogether.
				$slider_data = get_post_meta( $post_id, '_sol_slider_data', true );
				if ( ! empty( $slider_data['slider'] ) ) {
					unset( $slider_data['slider'][ $attach_id ] );
				}

				// Update the post meta for the slider.
				update_post_meta( $post_id, '_sol_slider_data', $slider_data );

				// Flush necessary slider caches.
				Soliloquy_Common::get_instance()->flush_slider_caches( $post_id, ( ! empty( $slider_data['config']['slug'] ) ? $slider_data['config']['slug'] : '' ) );
			}
		}
	}

	/**
	 * Removes any extra cropped images when an attachment is deleted.
	 *
	 * @since 1.0.0
	 *
	 * @param int $post_id The post ID.
	 * @return null        Return early if the appropriate metadata cannot be retrieved.
	 */
	public function delete_cropped_image( $post_id ) {

		// Get attachment image metadata.
		$metadata = wp_get_attachment_metadata( $post_id );

		// Return if no metadata is found.
		if ( ! $metadata ) {
			return;
		}

		// Return if we don't have the proper metadata.
		if ( ! isset( $metadata['file'] ) || ! isset( $metadata['image_meta']['resized_images'] ) ) {
			return;
		}

		// Grab the necessary info to removed the cropped images.
		$wp_upload_dir  = wp_upload_dir();
		$pathinfo       = pathinfo( $metadata['file'] );
		$resized_images = $metadata['image_meta']['resized_images'];

		// Loop through and deleted and resized/cropped images.
		foreach ( $resized_images as $dims ) {
			// Get the resized images filename and delete the image.
			$file = $wp_upload_dir['basedir'] . '/' . $pathinfo['dirname'] . '/' . $pathinfo['filename'] . '-' . $dims . '.' . $pathinfo['extension'];

			// Delete the resized image.
			if ( file_exists( $file ) ) {
				@unlink( $file );
			}
		}
	}

	/**
	 * Trash a slider when the slider post type is trashed.
	 *
	 * @since 1.0.0
	 *
	 * @param $id   The post ID being trashed.
	 * @return null Return early if no slider is found.
	 */
	public function trash_slider( $id ) {

		$slider = get_post( $id );

		// Flush necessary slider caches to ensure trashed sliders are not showing.
		Soliloquy_Common::get_instance()->flush_slider_caches( $id );

		// Return early if not an Soliloquy slider.
		if ( 'soliloquy' !== $slider->post_type ) {
			return;
		}

		// Set the slider status to inactive.
		$slider_data = get_post_meta( $id, '_sol_slider_data', true );
		if ( empty( $slider_data ) ) {
			return;
		}

		$slider_data['status'] = 'inactive';
		update_post_meta( $id, '_sol_slider_data', $slider_data );
	}

	/**
	 * Untrash a slider when the slider post type is untrashed.
	 *
	 * @since 1.0.0
	 *
	 * @param $id   The post ID being untrashed.
	 * @return null Return early if no slider is found.
	 */
	public function untrash_slider( $id ) {

		$slider = get_post( $id );

		// Flush necessary slider caches to ensure untrashed sliders are showing.
		Soliloquy_Common::get_instance()->flush_slider_caches( $id );

		// Return early if not an Soliloquy slider.
		if ( 'soliloquy' !== $slider->post_type ) {
			return;
		}

		// Set the slider status to inactive.
		$slider_data = get_post_meta( $id, '_sol_slider_data', true );
		if ( empty( $slider_data ) ) {
			return;
		}

		if ( isset( $slider_data['status'] ) ) {
			unset( $slider_data['status'] );
		}

		update_post_meta( $id, '_sol_slider_data', $slider_data );
	}

	/**
	 * Returns an array of positions for new slides to be added to in an existing Slider
	 *
	 * @since 2.4.1.7
	 *
	 * @return array
	 */
	public function get_slide_positions() {

		$positions = array(
			array(
				'value' => 'before',
				'name'  => esc_attr__( 'Before Existing Slides', 'soliloquy' ),
			),
			array(
				'value' => 'after',
				'name'  => esc_attr__( 'After Existing Slides', 'soliloquy' ),
			),
		);

		return apply_filters( 'soliloquy_slide_positions', $positions );
	}

	/**
	 * Returns an array of positions for new slides to be added to in an existing Slider
	 *
	 * @since 2.4.1.7
	 *
	 * @return array
	 */
	public function sort_slides( $data, $sort_type ) {

		// Return if we dont have a sort type
		if ( empty( $sort_type ) ) {

			return $data;

		}

		// Update the sort type
		$data['config']['sort_order'] = $sort_type;

		switch ( $sort_type ) {
			case 'random':
				// Shuffle keys
				$keys = array_keys( $data['slider'] );
				shuffle( $keys );

				// Rebuild array in new order
				$new = array();
				foreach ( $keys as $key ) {
					$new[ $key ] = $data['slider'][ $key ];
				}

				// Assign back to gallery
				$data['slider'] = $new;
				break;
			case 'src':
			case 'title':
			case 'status':
				// Get metadata
				$keys = array();
				foreach ( $data['slider'] as $id => $item ) {
					$keys[ $id ] = strip_tags( $item[ $sort_type ] );
				}

				$sorting_direction = 'ASC';

				// Sort titles / captions
				if ( $sorting_direction == 'ASC' ) {
					natcasesort( $keys );
				} else {
					arsort( $keys );
				}

				// Iterate through sorted items, rebuilding slider
				$new = array();
				foreach ( $keys as $key => $title ) {
					$new[ $key ] = $data['slider'][ $key ];
				}

				// Assign back to gallery
				$data['slider'] = $new;
				break;

			break;
			case 'date':
				break;

		}

		return $data;
	}

	/**
	 * Returns the singleton instance of the class.
	 *
	 * @since 1.0.0
	 *
	 * @return object The Soliloquy_Common_Admin object.
	 */
	public static function get_instance() {

		if ( ! isset( self::$instance ) && ! ( self::$instance instanceof Soliloquy_Common_Admin ) ) {
			self::$instance = new Soliloquy_Common_Admin();
		}

		return self::$instance;
	}
}

// Load the common admin class.
$soliloquy_common_admin = Soliloquy_Common_Admin::get_instance();