@param string $destination_product the unique id of destination product
* @param string $product_type theme|plugin
*
* @since 1.0.0
* @return int
*/
function mg_get_migration_paused_step( $source_product, $destination_product, $product_type ) {
$option_name = $product_type === 'plugin' ? 'wp-migrator-paused-plugins' : 'wp-migrator-paused-themes';
$paused = get_option( $option_name, array() );
if ( isset( $paused[ $source_product ][ $destination_product ] ) ) {
return intval( $paused[ $source_product ][ $destination_product ] );
}
return 0;
}
}
if ( ! function_exists( 'mg_set_migration_paused_step' ) ) {
/**
* Update current active step of the migration process
*
* @see mg_get_migration_paused_step
*
* @param string $source_product the unique id of source product
* @param string $destination_product the unique id of destination product
* @param string $product_type theme|plugin
* @param int $type current active type
* @param int $step current step number
*
* @since 1.0.0
* @return bool
*/
function mg_set_migration_paused_step( $source_product, $destination_product, $product_type, $type, $step ) {
$initial = 0;
if ( $steps = mg_get_migration_steps( $source_product, $destination_product, $product_type ) ) {
foreach ( $steps as $step_type => $many ) {
if ( $type === $step_type ) {
break;
}
$initial += $many;
}
}
$option_name = $product_type === 'plugin' ? 'wp-migrator-paused-plugins' : 'wp-migrator-paused-themes';
$paused = get_option( $option_name, array() );
$paused[ $source_product ][ $destination_product ] = intval( $step ) + $initial;
return update_option( $option_name, $paused );
}
}
if ( ! function_exists( 'mg_get_migration_uuid' ) ) {
/**
*
* @param string $source_product the unique id of the source product
* @param string $destination_product the unique id of the destination product
* @param string $product_type theme|plugin
*
* @since 1.0.0
* @return string
*/
function mg_get_migration_uuid( $source_product, $destination_product, $product_type ) {
$option_name = $product_type === 'plugin' ? 'wp-migrator-plugins-uuid' : 'wp-migrator-themes-uuid';
$ids = get_option( $option_name, array() );
if ( isset( $ids[ $source_product ][ $destination_product ] ) ) {
return $ids[ $source_product ][ $destination_product ];
}
return '';
}
}
if ( ! function_exists( 'mg_set_migration_uuid' ) ) {
/**
*
* @param string $source_product the unique id of the source product
* @param string $destination_product the unique id of the destination product
* @param string $product_type theme|plugin
* @param string $uuid
*
* @since 1.0.0
* @return bool
*/
function mg_set_migration_uuid( $source_product, $destination_product, $product_type, $uuid = '' ) {
if ( empty( $uuid ) ) {
$uuid = mg_generate_uuid4();
}
$option_name = $product_type === 'plugin' ? 'wp-migrator-plugins-uuid' : 'wp-migrator-themes-uuid';
$ids = get_option( $option_name, array() );
$ids[ $source_product ][ $destination_product ] = $uuid;
return update_option( $option_name, $ids );
}
}
if ( ! function_exists( 'mg_set_migration_settings' ) ) {
/**
* Set migration process settings
*
* @param string $source_product
* @param string $destination_product
* @param string $product_type
* @param array $settings
*
* @since 1.0.0
* @return bool
*/
function mg_set_migration_settings( $source_product, $destination_product, $product_type, $settings ) {
$option_name = $product_type === 'plugin' ? 'wp-migrator-plugins-settings' : 'wp-migrator-themes-settings';
//
$data = get_option( $option_name, array() );
$data[ $source_product ][ $destination_product ] = $settings;
return update_option( $option_name, $data );
}
}
if ( ! function_exists( 'mg_get_migration_settings' ) ) {
/**
* Get migration process settings
*
* @param string $source_product
* @param string $destination_product
* @param string $product_type
*
* @since 1.0.0
* @return array
*/
function mg_get_migration_settings( $source_product, $destination_product, $product_type ) {
$option_name = $product_type === 'plugin' ? 'wp-migrator-plugins-settings' : 'wp-migrator-themes-settings';
//
$data = get_option( $option_name, array() );
if ( isset( $data[ $source_product ][ $destination_product ] ) ) {
return $data[ $source_product ][ $destination_product ];
}
return array();
}
}
if ( ! function_exists( 'mg_finished_migration_process' ) ) {
/**
* Clear steps information
*
* @param string $source_product the unique id of the source product
* @param string $destination_product the unique id of the destination product
* @param string $product_type
*
* @since 1.0.0
*/
function mg_finished_migration_process( $source_product, $destination_product, $product_type ) {
$option_name = $product_type === 'plugin' ? 'wp-migrator-paused-plugins' : 'wp-migrator-paused-themes';
$paused = get_option( $option_name, array() );
unset( $paused[ $source_product ][ $destination_product ] );
//
update_option( $option_name, $paused );
// Clear steps
$option_name = $product_type === 'plugin' ? 'wp-migrator-plugins-steps' : 'wp-migrator-themes-steps';
$steps = get_option( $option_name, array() );
unset( $steps[ $source_product ][ $destination_product ] );
//
update_option( $option_name, $steps );
// Clear uuid
$option_name = $product_type === 'plugin' ? 'wp-migrator-plugins-uuid' : 'wp-migrator-themes-uuid';
$ids = get_option( $option_name, array() );
unset( $ids[ $source_product ][ $destination_product ] );
//
update_option( $option_name, $ids );
// clear log
$option_name = $product_type === 'plugin' ? 'wp-migrator-plugins-log' : 'wp-migrator-themes-log';
$history = (array) get_option( $option_name, array() );
unset( $history[ $source_product ][ $destination_product ] );
update_option( $option_name, $history );
}
}
if ( ! function_exists( 'mg_log_migration_process' ) ) {
/**
*
* @param string $source_product the unique id of the source product
* @param string $destination_product the unique id of the destination product
* @param string $product_type theme|plugin
* @param string $situation started|finished|error|paused
*
* @since 1.0.0
* @return boolean true on success
*/
function mg_log_migration_process( $source_product, $destination_product, $product_type, $situation ) {
$option_name = $product_type === 'plugin' ? 'wp-migrator-plugins-log' : 'wp-migrator-themes-log';
$history = (array) get_option( $option_name, array() );
$item = &$history[ $source_product ][ $destination_product ];
switch ( $situation ) {
case 'started':
case 'error':
case 'finished':
case 'paused':
if ( ! isset( $item[ $situation ] ) ) {
$item[ $situation ] = array();
}
array_push( $item[ $situation ], array(
time(),
get_current_user_id(),
) );
break;
/*
case 'error':
case 'finished':
case 'paused':
if ( $item && is_array( $item ) ) {
end( $item );
$id = key( $item );
if ( empty( $item[ $id ]['finished'] ) ) {
$situation === 'finished' ? 'done' : NULL;
$item[ $id ][ $situation ] = time();
$item[ $id ]['status'] = $situation;
}
}
break;
*/
}
return update_option( $option_name, $history );
}
}
if ( ! function_exists( 'mg_get_process_log' ) ) {
/**
* Read migration process log
*
* @param string $source_product the unique id of the source product
* @param string $destination_product the unique id of the destination product
* @param string $product_type theme|plugin
*
* @since 1.0.0
* @return array
*/
function mg_get_process_log( $source_product, $destination_product, $product_type ) {
$option_name = $product_type === 'plugin' ? 'wp-migrator-plugins-log' : 'wp-migrator-themes-log';
$history = get_option( $option_name, array() );
if ( isset( $history[ $source_product ][ $destination_product ] ) ) {
return $history[ $source_product ][ $destination_product ];
}
return array();
}
}
// FIXME: add hook : mg_finished_migration_process
tags' ) )
|| ( \is_tax() && $this->is_true( 'remove_feed_custom_taxonomies' ) ) ) {
$term = \get_queried_object();
$url = \get_term_link( $term, $term->taxonomy );
if ( \is_wp_error( $url ) ) {
$url = \home_url();
}
$this->redirect_feed( $url, 'We disable taxonomy feeds for performance reasons.' );
}
if ( ( \is_post_type_archive() ) && $this->is_true( 'remove_feed_post_types' ) ) {
$url = \get_post_type_archive_link( $this->get_queried_post_type() );
$this->redirect_feed( $url, 'We disable post type feeds for performance reasons.' );
}
if ( \is_search() && $this->is_true( 'remove_feed_search' ) ) {
$url = \trailingslashit( \home_url() ) . '?s=' . \get_search_query();
$this->redirect_feed( $url, 'We disable search RSS feeds for performance reasons.' );
}
}
/**
* Sends a cache control header.
*
* @param int $expiration The expiration time.
*
* @return void
*/
public function cache_control_header( $expiration ) {
\header_remove( 'Expires' );
// The cacheability of the current request. 'public' allows caching, 'private' would not allow caching by proxies like CloudFlare.
$cacheability = 'public';
$format = '%1$s, max-age=%2$d, s-maxage=%2$d, stale-while-revalidate=120, stale-if-error=14400';
if ( \is_user_logged_in() ) {
$expiration = 0;
$cacheability = 'private';
$format = '%1$s, max-age=%2$d';
}
\header( \sprintf( 'Cache-Control: ' . $format, $cacheability, $expiration ), true );
}
/**
* Redirect a feed result to somewhere else.
*
* @param string $url The location we're redirecting to.
* @param string $reason The reason we're redirecting.
*
* @return void
*/
private function redirect_feed( $url, $reason ) {
\header_remove( 'Content-Type' );
\header_remove( 'Last-Modified' );
$this->cache_control_header( 7 * \DAY_IN_SECONDS );
\wp_safe_redirect( $url, 301, 'Yoast SEO: ' . $reason );
exit;
}
/**
* Retrieves the queried post type.
*
* @return string The queried post type.
*/
private function get_queried_post_type() {
$post_type = \get_query_var( 'post_type' );
if ( \is_array( $post_type ) ) {
$post_type = \reset( $post_type );
}
return $post_type;
}
/**
* Checks if the value of an option is set to true.
*
* @param string $option_name The option name.
*
* @return bool
*/
private function is_true( $option_name ) {
return $this->options_helper->get( $option_name ) === true;
}
}
Nouvel an à Grand-Bassam: Les vœux du préfet pour le département - JusteInfos- Information générale
Accueil Regions Nouvel an à Grand-Bassam: Les vœux du préfet pour le département