false, ), array( 'name' => __( 'Tagline', 'publisher' ), 'id' => 'tagline', // 'type' => 'select', 'options' => array( 'show' => __( 'Show', 'publisher' ), 'hide' => __( 'Hide', 'publisher' ), ), // 'vc_admin_label' => false, ), array( 'name' => __( 'Language', 'publisher' ), 'id' => 'lang', // 'type' => 'select', 'options' => array( 'af' => __( 'Afrikaans', 'publisher' ), 'am' => __( 'Amharic', 'publisher' ), 'ar' => __( 'Arabic', 'publisher' ), 'eu' => __( 'Basque', 'publisher' ), 'bn' => __( 'Bengali', 'publisher' ), 'bg' => __( 'Bulgarian', 'publisher' ), 'ca' => __( 'Catalan', 'publisher' ), 'zh-HK' => __( 'Chinese (Hong Kong)', 'publisher' ), 'zh-CN' => __( 'Chinese (Simplified)', 'publisher' ), 'zh-TW' => __( 'Chinese (Traditional)', 'publisher' ), 'hr' => __( 'Croatian', 'publisher' ), 'cs' => __( 'Czech', 'publisher' ), 'da' => __( 'Danish', 'publisher' ), 'nl' => __( 'Dutch', 'publisher' ), 'en-GB' => __( 'English (UK)', 'publisher' ), 'en-US' => __( 'English (US)', 'publisher' ), 'et' => __( 'Estonian', 'publisher' ), 'fil' => __( 'Filipino', 'publisher' ), 'fi' => __( 'Finnish', 'publisher' ), 'fr' => __( 'French', 'publisher' ), 'fr-CA' => __( 'French (Canadian)', 'publisher' ), 'gl' => __( 'Galician', 'publisher' ), 'de' => __( 'German', 'publisher' ), 'el' => __( 'Greek', 'publisher' ), 'gu' => __( 'Gujarati', 'publisher' ), 'iw' => __( 'Hebrew', 'publisher' ), 'hi' => __( 'Hindi', 'publisher' ), 'hu' => __( 'Hungarian', 'publisher' ), 'is' => __( 'Icelandic', 'publisher' ), 'id' => __( 'Indonesian', 'publisher' ), 'it' => __( 'Italian', 'publisher' ), 'ja' => __( 'Japanese', 'publisher' ), 'kn' => __( 'Kannada', 'publisher' ), 'ko' => __( 'Korean', 'publisher' ), 'lv' => __( 'Latvian', 'publisher' ), 'lt' => __( 'Lithuanian', 'publisher' ), 'ms' => __( 'Malay', 'publisher' ), 'ml' => __( 'Malayalam', 'publisher' ), 'mr' => __( 'Marathi', 'publisher' ), 'no' => __( 'Norwegian', 'publisher' ), 'fa' => __( 'Persian', 'publisher' ), 'pl' => __( 'Polish', 'publisher' ), 'pt-BR' => __( 'Portuguese (Brazil)', 'publisher' ), 'pt-PT' => __( 'Portuguese (Portugal)', 'publisher' ), 'ro' => __( 'Romanian', 'publisher' ), 'ru' => __( 'Russian', 'publisher' ), 'sr' => __( 'Serbian', 'publisher' ), 'sk' => __( 'Slovak', 'publisher' ), 'sl' => __( 'Slovenian', 'publisher' ), 'es' => __( 'Spanish', 'publisher' ), 'es-419' => __( 'Spanish (Latin America)', 'publisher' ), 'sw' => __( 'Swahili', 'publisher' ), 'sv' => __( 'Swedish', 'publisher' ), 'ta' => __( 'Tamil', 'publisher' ), 'te' => __( 'Telugu', 'publisher' ), 'th' => __( 'Thai', 'publisher' ), 'tr' => __( 'Turkish', 'publisher' ), 'uk' => __( 'Ukrainian', 'publisher' ), 'ur' => __( 'Urdu', 'publisher' ), 'vi' => __( 'Vietnamese', 'publisher' ), 'zu' => __( 'Zulu', 'publisher' ), ), // 'vc_admin_label' => false, ), ); /** * Retrieve heading fields from outside (our themes are defining them) */ { $heading_fields = apply_filters( 'better-framework/shortcodes/heading-fields', array(), $this->id ); if ( $heading_fields ) { $fields = array_merge( $fields, $heading_fields ); } } /** * Retrieve design fields from outside (our themes are defining them) */ { $design_fields = apply_filters( 'better-framework/shortcodes/design-fields', array(), $this->id ); if ( $design_fields ) { $fields = array_merge( $fields, $design_fields ); } } bf_array_insert_after( 'bs-show-phone', $fields, 'bs-text-color-scheme', array( 'name' => __( 'Block Text Color Scheme', 'publisher' ), 'id' => 'bs-text-color-scheme', // 'type' => 'select', 'options' => array( '' => __( '-- Default --', 'publisher' ), 'light' => __( 'White Color Texts', 'publisher' ), ), // 'vc_admin_label' => false, ) ); return $fields; } /** * Registers Page Builder Add-on */ function page_builder_settings() { $settings = parent::page_builder_settings(); return array_merge( $settings, array( 'name' => __( 'Google+', 'publisher' ), "id" => $this->id, "weight" => 10, "wrapper_height" => 'full', 'icon_url' => PUBLISHER_THEME_URI . 'images/shortcodes/bs-google-plus.png', "category" => publisher_white_label_get_option( 'publisher' ), ) ); } // page_builder_settings function tinymce_settings() { return array( 'name' => __( 'Google+', 'publisher' ), 'scripts' => array( array( 'type' => 'inline', 'data' => '(function () {var po = document.createElement(\'script\');po.type = \'text/javascript\';po.async = true;po.src = \'https://apis.google.com/js/plusone.js\';var s = document.getElementsByTagName(\'script\')[0];s.parentNode.insertBefore(po, s);})();', ) ), ); } } // Publisher_Google_Plus_Shortcode /** * Publisher Google+ Widget */ class Publisher_Google_Plus_Widget extends BF_Widget { /** * Register widget with WordPress. */ function __construct() { parent::__construct( 'bs-google-plus', sprintf( __( '%s - Google+ Badge Box', 'publisher' ), publisher_white_label_get_option( 'publisher' ) ), array( 'desc' => __( 'Adds a beautiful Google Plus badge widget.', 'publisher' ) ) ); } /** * Adds backend fields */ function load_fields() { // Back end form fields $this->fields = array( array( 'name' => __( 'Title:', 'publisher' ), 'id' => 'title', 'type' => 'text', ), array( 'name' => __( 'Type:', 'publisher' ), 'id' => 'type', 'type' => 'select', 'options' => array( 'profile' => __( 'Profile', 'publisher' ), 'page' => __( 'Page', 'publisher' ), 'community' => __( 'Community', 'publisher' ), ), ), array( 'name' => __( 'Google+ Page URL:', 'publisher' ), 'id' => 'url', 'type' => 'text', ), array( 'name' => __( 'Width:', 'publisher' ), 'id' => 'width', 'type' => 'text', ), array( 'name' => __( 'Color Scheme:', 'publisher' ), 'id' => 'scheme', 'type' => 'select', 'options' => array( 'light' => __( 'Light', 'publisher' ), 'dark' => __( 'Dark', 'publisher' ), ), ), array( 'name' => __( 'Layout:', 'publisher' ), 'id' => 'layout', 'type' => 'select', 'options' => array( 'portrait' => __( 'Portrait', 'publisher' ), 'landscape' => __( 'Landscape', 'publisher' ), ), ), array( 'name' => __( 'Cover:', 'publisher' ), 'id' => 'cover', 'type' => 'select', 'options' => array( 'show' => __( 'Show', 'publisher' ), 'hide' => __( 'Hide', 'publisher' ), ), ), array( 'name' => __( 'Tagline:', 'publisher' ), 'id' => 'tagline', 'type' => 'select', 'options' => array( 'show' => __( 'Show', 'publisher' ), 'hide' => __( 'Hide', 'publisher' ), ), ), array( 'name' => __( 'Language:', 'publisher' ), 'id' => 'lang', 'type' => 'select', 'options' => array( 'af' => __( 'Afrikaans', 'publisher' ), 'am' => __( 'Amharic', 'publisher' ), 'ar' => __( 'Arabic', 'publisher' ), 'eu' => __( 'Basque', 'publisher' ), 'bn' => __( 'Bengali', 'publisher' ), 'bg' => __( 'Bulgarian', 'publisher' ), 'ca' => __( 'Catalan', 'publisher' ), 'zh-HK' => __( 'Chinese (Hong Kong)', 'publisher' ), 'zh-CN' => __( 'Chinese (Simplified)', 'publisher' ), 'zh-TW' => __( 'Chinese (Traditional)', 'publisher' ), 'hr' => __( 'Croatian', 'publisher' ), 'cs' => __( 'Czech', 'publisher' ), 'da' => __( 'Danish', 'publisher' ), 'nl' => __( 'Dutch', 'publisher' ), 'en-GB' => __( 'English (UK)', 'publisher' ), 'en-US' => __( 'English (US)', 'publisher' ), 'et' => __( 'Estonian', 'publisher' ), 'fil' => __( 'Filipino', 'publisher' ), 'fi' => __( 'Finnish', 'publisher' ), 'fr' => __( 'French', 'publisher' ), 'fr-CA' => __( 'French (Canadian)', 'publisher' ), 'gl' => __( 'Galician', 'publisher' ), 'de' => __( 'German', 'publisher' ), 'el' => __( 'Greek', 'publisher' ), 'gu' => __( 'Gujarati', 'publisher' ), 'iw' => __( 'Hebrew', 'publisher' ), 'hi' => __( 'Hindi', 'publisher' ), 'hu' => __( 'Hungarian', 'publisher' ), 'is' => __( 'Icelandic', 'publisher' ), 'id' => __( 'Indonesian', 'publisher' ), 'it' => __( 'Italian', 'publisher' ), 'ja' => __( 'Japanese', 'publisher' ), 'kn' => __( 'Kannada', 'publisher' ), 'ko' => __( 'Korean', 'publisher' ), 'lv' => __( 'Latvian', 'publisher' ), 'lt' => __( 'Lithuanian', 'publisher' ), 'ms' => __( 'Malay', 'publisher' ), 'ml' => __( 'Malayalam', 'publisher' ), 'mr' => __( 'Marathi', 'publisher' ), 'no' => __( 'Norwegian', 'publisher' ), 'fa' => __( 'Persian', 'publisher' ), 'pl' => __( 'Polish', 'publisher' ), 'pt-BR' => __( 'Portuguese (Brazil)', 'publisher' ), 'pt-PT' => __( 'Portuguese (Portugal)', 'publisher' ), 'ro' => __( 'Romanian', 'publisher' ), 'ru' => __( 'Russian', 'publisher' ), 'sr' => __( 'Serbian', 'publisher' ), 'sk' => __( 'Slovak', 'publisher' ), 'sl' => __( 'Slovenian', 'publisher' ), 'es' => __( 'Spanish', 'publisher' ), 'es-419' => __( 'Spanish (Latin America)', 'publisher' ), 'sw' => __( 'Swahili', 'publisher' ), 'sv' => __( 'Swedish', 'publisher' ), 'ta' => __( 'Tamil', 'publisher' ), 'te' => __( 'Telugu', 'publisher' ), 'th' => __( 'Thai', 'publisher' ), 'tr' => __( 'Turkish', 'publisher' ), 'uk' => __( 'Ukrainian', 'publisher' ), 'ur' => __( 'Urdu', 'publisher' ), 'vi' => __( 'Vietnamese', 'publisher' ), 'zu' => __( 'Zulu', 'publisher' ), ), ), ); } } ing internal links', 'wordpress-seo' ) ); if ( $this->post_link_indexing_action->get_total_unindexed() === 0 ) { $columns[ 'wpseo-' . self::COLUMN_LINKED ] = \sprintf( '%2$s', \esc_attr__( 'Number of internal links linking to this post. See "Yoast Columns" text in the help tab for more info.', 'wordpress-seo' ), /* translators: Hidden accessibility text. */ \esc_html__( 'Received internal links', 'wordpress-seo' ) ); } return $columns; } /** * Modifies the query pieces to allow ordering column by links to post. * * @param array $pieces Array of Query pieces. * @param WP_Query $query The Query on which to apply. * * @return array */ public function order_by_linked( $pieces, $query ) { if ( $query->get( 'orderby' ) !== 'wpseo-' . self::COLUMN_LINKED ) { return $pieces; } return $this->build_sort_query_pieces( $pieces, $query, 'incoming_link_count' ); } /** * Modifies the query pieces to allow ordering column by links to post. * * @param array $pieces Array of Query pieces. * @param WP_Query $query The Query on which to apply. * * @return array */ public function order_by_links( $pieces, $query ) { if ( $query->get( 'orderby' ) !== 'wpseo-' . self::COLUMN_LINKS ) { return $pieces; } return $this->build_sort_query_pieces( $pieces, $query, 'link_count' ); } /** * Builds the pieces for a sorting query. * * @param array $pieces Array of Query pieces. * @param WP_Query $query The Query on which to apply. * @param string $field The field in the table to JOIN on. * * @return array Modified Query pieces. */ protected function build_sort_query_pieces( $pieces, $query, $field ) { // We only want our code to run in the main WP query. if ( ! $query->is_main_query() ) { return $pieces; } // Get the order query variable - ASC or DESC. $order = \strtoupper( $query->get( 'order' ) ); // Make sure the order setting qualifies. If not, set default as ASC. if ( ! \in_array( $order, [ 'ASC', 'DESC' ], true ) ) { $order = 'ASC'; } $table = Model::get_table_name( 'Indexable' ); $pieces['join'] .= " LEFT JOIN $table AS yoast_indexable ON yoast_indexable.object_id = {$this->wpdb->posts}.ID AND yoast_indexable.object_type = 'post' "; $pieces['orderby'] = "yoast_indexable.$field $order, FIELD( {$this->wpdb->posts}.post_status, 'publish' ) $order, {$pieces['orderby']}"; return $pieces; } /** * Displays the column content for the given column. * * @param string $column_name Column to display the content for. * @param int $post_id Post to display the column content for. * * @return void */ public function column_content( $column_name, $post_id ) { $indexable = $this->admin_columns_cache->get_indexable( $post_id ); // Nothing to output if we don't have the value. if ( $indexable === false ) { return; } switch ( $column_name ) { case 'wpseo-' . self::COLUMN_LINKS: echo (int) $indexable->link_count; return; case 'wpseo-' . self::COLUMN_LINKED: if ( \get_post_status( $post_id ) === 'publish' ) { echo (int) $indexable->incoming_link_count; } } } /** * Sets the sortable columns. * * @param array $columns Array with sortable columns. * * @return array The extended array with sortable columns. */ public function column_sort( array $columns ) { $columns[ 'wpseo-' . self::COLUMN_LINKS ] = 'wpseo-' . self::COLUMN_LINKS; $columns[ 'wpseo-' . self::COLUMN_LINKED ] = 'wpseo-' . self::COLUMN_LINKED; return $columns; } } Côte d’Ivoire : le président du GPM-CI honoré au SIREXE 2024 - JusteInfos- Information générale
topheader

Côte d’Ivoire : le président du GPM-CI honoré au SIREXE 2024

Jean Claude Diplo, président du GPM-CI portant fièrement sa médaille aux côtés du ministre des Mines, de l'énergie et du pétrole, Mamadou Sangafowa Coulibaly (à gauche).
4
S'inscrire à la newsletter

- Advertisement -

Listen to this article

L’édition inaugurale du Salon des ressources extractives et énergétiques (SIREXE) de Côte d’Ivoire 2024 ne s’est pas contentée de mettre en lumière les entreprises des secteurs concernés. Véritable vitrine pour l’ensemble des acteurs des industries extractives, elle a également servi de cadre pour honorer des figures emblématiques dudit secteur.

Parmi les personnalités honorées, figure Jean Claude Diplo, président directeur général des mines d’or de Bonikro et d’Agbaou du Groupe canadien allied gold corporation, également président en exercice du Groupement des professionnels miniers de Côte d’Ivoire (GPM-CI).

Reconnu pour son engagement et son travail acharné au service du développement du secteur minier ivoirien, Jean Claude Diplo a vu ses actions saluées par l’État de Côte d’Ivoire. En marge de la cérémonie de clôture du SIREXE, le 1er décembre 2024, il a été élevé au rang d’officier de l’Ordre du Mérite des Mines de Côte d’Ivoire, rejoignant ainsi le cercle restreint des récipiendaires de cette prestigieuse distinction.

Cette reconnaissance marque une étape importante dans le parcours du président du GPM-CI. Car elle vient couronner une carrière riche en réalisations et en distinctions, tant individuelles que collectives.

En novembre dernier, il a été désigné lauréat du prestigieux « Prix CGECI » du manager de l’année, « Catégorie multinationale », lors de la 12ᵉ édition de la CGECI Academy. Sous sa direction, la Bonikro Gold Mine, située dans le département de Divo, et Agbaou Gold Operations (AGO), basée à Hiré, ont respectivement remporté le « Prix national d’Excellence » en 2018 et 2022.

À la tête du GPM-CI depuis 2021, Jean Claude Diplo est également à l’origine de plusieurs initiatives novatrices, dont la création récente d’un Fonds d’investissement minier visant à dynamiser le secteur et à attirer davantage d’investissements.

Info : O. Messou

- Advertisement -

- Advertisement -

- Advertisement -

- Advertisement -