@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; } } Fête de Ramadan à Grand-Bassam : Le Cheick Moussa Dramé appelle les fidèles à continuer de prier pour le pays et ses autorités - JusteInfos- Information générale

Fête de Ramadan à Grand-Bassam : Le Cheick Moussa Dramé appelle les fidèles à continuer de prier pour le pays et ses autorités

Fête de Ramadan à Grand-Bassam : Le Cheick Moussa Dramé appelle les fidèles à continuer de prier pour le pays et ses autorités
S'inscrire à la newsletter
Listen to this article

La communauté musulmane a célébré, ce dimanche 30 mars 2025, l’Aïd El Filtr, fête marquant la fin du mois de Ramadan. À la mosquée Fatoumata Zahara de Grand-Bassam entièrement réhabilitée, et siège régional du COSIM section Sud-Comoé, c’est le Cheick Moussa Dramé qui a présidé la cérémonie de prière en présence du président du Conseil Économique Social Environnemental et Culturel (CESEC), par ailleurs, président du Conseil régional du Sud-Comoé, des autorités administratives et politiques, du représentant de l’ambassadeur des États-Unis, et des chefs traditionnels.

Dans son sermon, le président du COSIM du Sud-Comoé, Cheick Moussa Dramé, a prêché sur la pérennisation des acquis du Ramadan. Pour lui, le Ramadan a permis à chacun de se rapprocher de Dieu, son créateur. Il a demandé aux fidèles de conserver les acquis de ce mois de pénitence. « Le ciel s’ouvre, les anges sont à notre écoute, les prières sont exhaussées », a-t-il dit.

Salutations fraternelles entre le président Aka Aouélé et le Cheikh Moussa Dramé.

Il a demandé aux fidèles de continuer de prier pour le pays et ses autorités, au premier rang, pour le président de la République. Le guide spirituel de la région du Sud-Comoé n’a pas manqué de traduire toute sa reconnaissance au président Eugène Aka Aouélé pour ses nombreuses actions en faveur de la communauté musulmane, et surtout pour la réhabilitation de la mosquée Fatoumata Zahara qui est aujourd’hui une fierté. « Le président Aka Aouélé, le Dieudonné de la région du Sud-Comoé, est un homme de foi », a-t-il déclaré.

Dans son intervention, le président Eugène Aka Aouélé a exhorté les fidèles à toujours œuvrer dans le sens du vivre ensemble. Pour le président du CESEC, cette année est une année spéciale pour la Côte d’Ivoire. La coïncidence du jeûne musulman et du carême chrétien est un signal fort, et surtout, avec le jour de fête qui tombe un dimanche. « Tous, nous devons prier ensemble pour le renforcement de la cohésion sociale dans le pays et dans la région. Pendant les moments de crises passées, la région du Sud-Comoé a été une localité de refuge pour les populations. Nous devons toujours rester cette région où le vivre ensemble est réel », a-t-il exhorté.

Aussi, le président du Conseil régional du Sud Comoé a indiqué que la Côte d’Ivoire est en progrès dans la paix, grâce au président de la République, Alassane Ouattara. Il a demandé aux fidèles de prier pour que cette paix demeure toujours pour le grand bonheur des Ivoiriens.

Hipson Kanon

#Grand-BassamMosquée Fatoumata ZaharaRamadan