@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
topheader

Nouvel an à Grand-Bassam: Les vœux du préfet pour le département

Nassou Sidibé, Préfet du département de Grand-Bassam a présenté ses voeux dans le cadre du nouvel an à Grand-Bassam.
413
S'inscrire à la newsletter

- Advertisement -

Listen to this article

Le préfet Nassou Sidibé a, pour le nouvel an à Grand-Bassam, présenté ses vœux aux populations. En effet, à l’aube de chaque nouvelle année, la presse locale, dans toute sa composante, rencontre les autorités et cadres pour leurs vœux. Ce lundi 02 janvier 2023, premier jour ouvrable de l’année, c’est le premier gouverneur du département, le préfet Nassou Sidibé qui a formulé ses vœux aux populations. Elle a souhaité une année 2023 plus paisible.

Lire aussi: https://www.aip.ci/aip-ouattara-salue-les-efforts-pour-lamelioration-des-conditions-de-vie-des-ivoiriens/

« Je souhaiterais que le climat de paix qui a prévalu au cours de l’année précédente soit renouvelée afin que le département puisse monter et être dans le train du développement qui est lancé par le président de la République, SEM Alassane Ouattara », a-t-elle déclaré, non sans inviter les populations à demeurer confiantes. Cette année 2023 étant une année électorale, Nassou Sidibé appelle les populations au cours de cette célébration du nouvel an à Grand-Bassam au calme et à la sérénité. « Avant les élections, nous avons été des frères et des sœurs, pendant les élections nous restons des frères et des sœurs, après les élections, nous devons toujours demeurer des frères et des sœurs. La fraternité doit être de mise », a-t-elle souligné.

Lire aussi:https://justeinfos.net/blognan-2023-modeste-a-celebre-le-nouvel-an-dans-la-cohesion/

Touchée par les nombreux décès de certaines personnalités dans le département, le préfet, à l’entame de ses propos, à cette célébration du nouvel an à Grand-Bassam, s’est incliné en leur mémoire. Entouré de ses proches collaborateurs dont certaines ont connu une promotion, le préfet a souhaité une meilleure santé aux populations pour un département plus dynamique et plus excellent.

Hipson Kanon

- Advertisement -

- Advertisement -

- Advertisement -

- Advertisement -

arzh-CNenfrdeptruessw