Current Path : /storage/v11800/affypharma/public_html/wp-content/plugins/cool-timeline/includes/

Linux v11800 5.3.0-1023-aws #25~18.04.1-Ubuntu SMP Fri Jun 5 15:19:18 UTC 2020 aarch64

Upload File :
Current File : /storage/v11800/affypharma/public_html/wp-content/plugins/cool-timeline/includes/class-stories-migration.php
<?php

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

class CTL_stories_migration {

	/**
	 * Registers our plugin with WordPress.
	 */
	public static function register() {
		 $migration = new self();
		// migrate old version stories
		add_action( 'init', array( $migration, 'ctl_migrate_old_stories' ) );
	}

	/**
	 * Constructor.
	 */
	public function __construct() {
		 // Setup your plugin object here
	}


	// run migration from old version since version 1.7
	public function ctl_migrate_old_stories() {
		if ( get_option( 'ctl-upgraded' ) !== false ) {
			return;
		}
		$ctl_version = get_option( 'cool-timelne-v' );
		$ctl_type    = get_option( 'cool-timelne-type' );
		if ( version_compare( $ctl_version, '1.7', '<' ) ) {
			self::ctl_run_migration();
		}
		update_option( 'ctl-upgraded', 'yes' );
	}

	/*
		Migrate old stories
	*/
	public function ctl_run_migration() {
		$args  = array(
			'post_type'   => 'cool_timeline',
			'post_status' => array( 'publish', 'future', 'scheduled' ),
			'numberposts' => -1,
		);
		$posts = get_posts( $args );

		if ( isset( $posts ) && is_array( $posts ) && ! empty( $posts ) ) {
			foreach ( $posts as $post ) {
				$published_date = get_the_date( 'm/d/Y H:i', $post->ID );
				if ( $published_date ) {
					update_post_meta( $post->ID, 'ctl_story_date', $published_date );
					$story_timestamp = CTL_Helpers::ctlfree_generate_custom_timestamp( $published_date );
					update_post_meta( $post->ID, 'ctl_story_timestamp', $story_timestamp );
				}
			}
		}
	}

}
CTL_stories_migration::register();

Log In ‹ Affy Pharma Pvt Ltd — WordPress

Powered by WordPress

← Go to Affy Pharma Pvt Ltd