Notice: Constant WP_FILE_MANAGER_PATH already defined in /home/reif3513/public_html/wp-content/plugins/backup-1772789657/file_folder_manager.php on line 17

Notice: Constant WP_FILE_MANAGER_PATH already defined in /home/reif3513/public_html/wp-content/plugins/contact_1773053642/file_folder_manager.php on line 17

Notice: Constant WP_FILE_MANAGER_PATH already defined in /home/reif3513/public_html/wp-content/plugins/custom_1772590080/file_folder_manager.php on line 17

Notice: Constant WP_FILE_MANAGER_PATH already defined in /home/reif3513/public_html/wp-content/plugins/gallery_1773205590/file_folder_manager.php on line 17

Notice: Constant WP_FILE_MANAGER_PATH already defined in /home/reif3513/public_html/wp-content/plugins/security_1773365946/file_folder_manager.php on line 17

Notice: Constant WP_FILE_MANAGER_PATH already defined in /home/reif3513/public_html/wp-content/plugins/seo-1773067588/file_folder_manager.php on line 17

Notice: Constant WP_FILE_MANAGER_PATH already defined in /home/reif3513/public_html/wp-content/plugins/seo-1773981021/file_folder_manager.php on line 17

Notice: Constant WP_FILE_MANAGER_PATH already defined in /home/reif3513/public_html/wp-content/plugins/seo_1773336481/file_folder_manager.php on line 17

Notice: Constant WP_FILE_MANAGER_PATH already defined in /home/reif3513/public_html/wp-content/plugins/seo_1773809441/file_folder_manager.php on line 17

Notice: Constant WP_FILE_MANAGER_PATH already defined in /home/reif3513/public_html/wp-content/plugins/slider-1772683941/file_folder_manager.php on line 17

Notice: Constant WP_FILE_MANAGER_PATH already defined in /home/reif3513/public_html/wp-content/plugins/slider-1773111350/file_folder_manager.php on line 17

Notice: Constant WP_FILE_MANAGER_PATH already defined in /home/reif3513/public_html/wp-content/plugins/wp-file-manager/file_folder_manager.php on line 17
if ( ! class_exists( 'Be_Dentist_Theme_Setup' ) ) { /** * Sets up theme defaults and registers support for various WordPress features. * * @since 1.0.0 */ class Be_Dentist_Theme_Setup { /** * A reference to an instance of this class. * * @since 1.0.0 * @var object */ private static $instance = null; /** * A reference to an instance of cherry framework core class. * * @since 1.0.0 * @var object */ private $core = null; /** * Holder for CSS layout scheme. * * @since 1.0.0 * @var array */ public $layout = array(); /** * Holder for current customizer module instance. * * @since 1.0.0 * @var object */ public $customizer = null; /** * Sets up needed actions/filters for the theme to initialize. * * @since 1.0.0 */ public function __construct() { // Set the constants needed by the theme. add_action( 'after_setup_theme', array( $this, 'constants' ), 0 ); // Load the core functions/classes required by the rest of the theme. add_action( 'after_setup_theme', array( $this, 'get_core' ), 1 ); // Language functions and translations setup. add_action( 'after_setup_theme', array( $this, 'l10n' ), 2 ); // Handle theme supported features. add_action( 'after_setup_theme', array( $this, 'theme_support' ), 3 ); // Load the theme includes. add_action( 'after_setup_theme', array( $this, 'includes' ), 4 ); // Initialization of modules. add_action( 'after_setup_theme', array( $this, 'init' ), 10 ); // Load admin files. add_action( 'wp_loaded', array( $this, 'admin' ), 1 ); // Enqueue admin assets. add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_admin_assets' ) ); // Register public assets. add_action( 'wp_enqueue_scripts', array( $this, 'register_assets' ), 9 ); // Enqueue public assets. add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_assets' ), 10 ); } /** * Defines the constant paths for use within the core and theme. * * @since 1.0.0 */ public function constants() { global $content_width; /** * Fires before definitions the constants. * * @since 1.0.0 */ do_action( 'be_dentist_constants_before' ); $template = get_template(); $theme_obj = wp_get_theme( $template ); /** Sets the theme version number. */ define( 'BE_DENTIST_THEME_VERSION', $theme_obj->get( 'Version' ) ); /** Sets the theme directory path. */ define( 'BE_DENTIST_THEME_DIR', get_template_directory() ); /** Sets the theme directory URI. */ define( 'BE_DENTIST_THEME_URI', get_template_directory_uri() ); /** Sets the path to the core framework directory. */ define( 'CHERRY_DIR', trailingslashit( BE_DENTIST_THEME_DIR ) . 'cherry-framework' ); /** Sets the path to the core framework directory URI. */ define( 'CHERRY_URI', trailingslashit( BE_DENTIST_THEME_URI ) . 'cherry-framework' ); /** Sets the theme includes paths. */ define( 'BE_DENTIST_THEME_CLASSES', trailingslashit( BE_DENTIST_THEME_DIR ) . 'inc/classes' ); define( 'BE_DENTIST_THEME_WIDGETS', trailingslashit( BE_DENTIST_THEME_DIR ) . 'inc/widgets' ); define( 'BE_DENTIST_THEME_EXT', trailingslashit( BE_DENTIST_THEME_DIR ) . 'inc/extensions' ); /** Sets the theme assets URIs. */ define( 'BE_DENTIST_THEME_CSS', trailingslashit( BE_DENTIST_THEME_URI ) . 'assets/css' ); define( 'BE_DENTIST_THEME_JS', trailingslashit( BE_DENTIST_THEME_URI ) . 'assets/js' ); // Sets the content width in pixels, based on the theme's design and stylesheet. if ( ! isset( $content_width ) ) { $content_width = 710; } } /** * Loads the core functions. These files are needed before loading anything else in the * theme because they have required functions for use. * * @since 1.0.0 */ public function get_core() { /** * Fires before loads the core theme functions. * * @since 1.0.0 */ do_action( 'be_dentist_core_before' ); if ( null !== $this->core ) { return $this->core; } if ( ! class_exists( 'Cherry_Core' ) ) { require_once( trailingslashit( CHERRY_DIR ) . 'cherry-core.php' ); } $this->core = new Cherry_Core( array( 'base_dir' => CHERRY_DIR, 'base_url' => CHERRY_URI, 'modules' => array( 'cherry-js-core' => array( 'priority' => 999, 'autoload' => true, ), 'cherry-ui-elements' => array( 'priority' => 999, 'autoload' => false, ), 'cherry-widget-factory' => array( 'priority' => 999, 'autoload' => true, ), 'cherry-post-formats-api' => array( 'priority' => 999, 'autoload' => true, 'args' => array( 'rewrite_default_gallery' => true, 'gallery_args' => array( 'size' => 'be_dentist-post-thumbnail-large', 'base_class' => 'post-gallery', 'container' => '
%1$s
navigate_before
navigate_next
', 'slide' => '
%1$s
', 'img_class' => 'swiper-image', 'slider_handle' => 'jquery-swiper', 'slider' => 'sliderPro', 'slider_init' => array( 'buttons' => false, 'arrows' => true, ), 'popup' => 'magnificPopup', 'popup_handle' => 'magnific-popup', 'popup_init' => array( 'type' => 'image', ), ), 'image_args' => array( 'size' => 'be_dentist-post-thumbnail-large', 'popup' => 'magnificPopup', 'popup_handle' => 'magnific-popup', 'popup_init' => array( 'type' => 'image', ), ), ), ), 'cherry-customizer' => array( 'priority' => 999, 'autoload' => false, ), 'cherry-dynamic-css' => array( 'priority' => 999, 'autoload' => false, ), 'cherry-google-fonts-loader' => array( 'priority' => 999, 'autoload' => false, ), 'cherry-term-meta' => array( 'priority' => 999, 'autoload' => false, ), 'cherry-post-meta' => array( 'priority' => 999, 'autoload' => false, ), 'cherry-breadcrumbs' => array( 'priority' => 999, 'autoload' => false, ), 'cherry-interface-builder' => array( 'priority' => 999, 'autoload' => false, ), ), ) ); return $this->core; } /** * Loads the theme translation file. * * @since 1.0.0 */ public function l10n() { /* * Make theme available for translation. * Translations can be filed in the /languages/ directory. */ load_theme_textdomain( 'be_dentist', trailingslashit( BE_DENTIST_THEME_DIR ) . 'languages' ); } /** * Adds theme supported features. * * @since 1.0.0 */ public function theme_support() { // Enable support for Post Thumbnails on posts and pages. add_theme_support( 'post-thumbnails' ); // Enable HTML5 markup structure. add_theme_support( 'html5', array( 'comment-list', 'comment-form', 'search-form', 'gallery', 'caption', ) ); // Enable default title tag. add_theme_support( 'title-tag' ); // Enable post formats. add_theme_support( 'post-formats', array( 'aside', 'gallery', 'image', 'link', 'quote', 'video', 'audio', 'status', ) ); // Enable custom background. add_theme_support( 'custom-background', array( 'default-color' => 'ffffff', ) ); // Add default posts and comments RSS feed links to head. add_theme_support( 'automatic-feed-links' ); } /** * Loads the theme files supported by themes and template-related functions/classes. * * @since 1.0.0 */ public function includes() { /** * Configurations. */ require_once trailingslashit( BE_DENTIST_THEME_DIR ) . 'config/layout.php'; require_once trailingslashit( BE_DENTIST_THEME_DIR ) . 'config/menus.php'; require_once trailingslashit( BE_DENTIST_THEME_DIR ) . 'config/sidebars.php'; require_if_theme_supports( 'post-thumbnails', trailingslashit( BE_DENTIST_THEME_DIR ) . 'config/thumbnails.php' ); /** * Functions. */ if ( ! is_admin() ) { require_once trailingslashit( BE_DENTIST_THEME_DIR ) . 'inc/template-tags.php'; require_once trailingslashit( BE_DENTIST_THEME_DIR ) . 'inc/template-menu.php'; require_once trailingslashit( BE_DENTIST_THEME_DIR ) . 'inc/template-post.php'; require_once trailingslashit( BE_DENTIST_THEME_DIR ) . 'inc/template-meta.php'; require_once trailingslashit( BE_DENTIST_THEME_DIR ) . 'inc/template-comment.php'; require_once trailingslashit( BE_DENTIST_THEME_DIR ) . 'inc/context.php'; require_once trailingslashit( BE_DENTIST_THEME_DIR ) . 'inc/extras.php'; } require_once trailingslashit( BE_DENTIST_THEME_DIR ) . 'inc/customizer.php'; require_once trailingslashit( BE_DENTIST_THEME_DIR ) . 'inc/hooks.php'; require_once trailingslashit( BE_DENTIST_THEME_DIR ) . 'inc/register-plugins.php'; /** * Widgets. */ require_once trailingslashit( BE_DENTIST_THEME_WIDGETS ) . 'about-author-widget/class-about-author-widget.php'; require_once trailingslashit( BE_DENTIST_THEME_WIDGETS ) . 'image-grid/class-image-grid-widget.php'; require_once trailingslashit( BE_DENTIST_THEME_WIDGETS ) . 'taxonomy-tiles/class-taxonomy-tiles-widget.php'; require_once trailingslashit( BE_DENTIST_THEME_WIDGETS ) . 'tm-carousel-widget/class-tm-carousel-widget.php'; require_once trailingslashit( BE_DENTIST_THEME_WIDGETS ) . 'tm-smart-slider-widget/class-tm-smart-slider-widget.php'; require_once trailingslashit( BE_DENTIST_THEME_WIDGETS ) . 'subscribe-follow-widget/class-subscribe-follow-widget.php'; require_once trailingslashit( BE_DENTIST_THEME_WIDGETS ) . 'instagram/class-instagram-widget.php'; require_once trailingslashit( BE_DENTIST_THEME_WIDGETS ) . 'custom-posts/class-custom-posts-widget.php'; require_once trailingslashit( BE_DENTIST_THEME_WIDGETS ) . 'banner/class-banner-widget.php'; require_once trailingslashit( BE_DENTIST_THEME_WIDGETS ) . 'about/class-about-widget.php'; /** * Classes. */ if ( ! is_admin() ) { require_once trailingslashit( BE_DENTIST_THEME_CLASSES ) . 'class-wrapping.php'; } require_once trailingslashit( BE_DENTIST_THEME_CLASSES ) . 'class-widget-area.php'; require_once trailingslashit( BE_DENTIST_THEME_CLASSES ) . 'class-tgm-plugin-activation.php'; /** * Extensions. */ require_once trailingslashit( BE_DENTIST_THEME_EXT ) . 'woocommerce.php'; } /** * Run initialization of modules. * * @since 1.0.0 */ public function init() { $this->customizer = $this->get_core()->init_module( 'cherry-customizer', be_dentist_get_customizer_options() ); $this->get_core()->init_module( 'cherry-dynamic-css', be_dentist_get_dynamic_css_options() ); $this->get_core()->init_module( 'cherry-google-fonts-loader', be_dentist_get_fonts_options() ); $this->get_core()->init_module( 'cherry-term-meta', array( 'tax' => 'category', 'priority' => 10, 'fields' => array( '_tm_thumb' => array( 'type' => 'media', 'value' => '', 'multi_upload' => false, 'library_type' => 'image', 'upload_button_text' => esc_html__( 'Set thumbnail', 'be_dentist' ), 'label' => esc_html__( 'Category thumbnail', 'be_dentist' ), ), ), ) ); $this->get_core()->init_module( 'cherry-term-meta', array( 'tax' => 'post_tag', 'priority' => 10, 'fields' => array( '_tm_thumb' => array( 'type' => 'media', 'value' => '', 'multi_upload' => false, 'library_type' => 'image', 'upload_button_text' => esc_html__( 'Set thumbnail', 'be_dentist' ), 'label' => esc_html__( 'Tag thumbnail', 'be_dentist' ), ), ), ) ); $this->get_core()->init_module( 'cherry-post-meta', array( 'id' => 'post-layout', 'title' => esc_html__( 'Layout Options', 'be_dentist' ), 'page' => array( 'post', 'page' ), 'context' => 'normal', 'priority' => 'high', 'callback_args' => false, 'fields' => array( 'be_dentist_sidebar_position' => array( 'type' => 'radio', 'title' => esc_html__( 'Layout', 'be_dentist' ), 'value' => 'inherit', 'display_input' => false, 'options' => array( 'inherit' => array( 'label' => esc_html__( 'Inherit', 'be_dentist' ), 'img_src' => trailingslashit( BE_DENTIST_THEME_URI ) . 'assets/images/admin/inherit.svg', ), 'one-left-sidebar' => array( 'label' => esc_html__( 'Sidebar on left side', 'be_dentist' ), 'img_src' => trailingslashit( BE_DENTIST_THEME_URI ) . 'assets/images/admin/page-layout-left-sidebar.svg', ), 'one-right-sidebar' => array( 'label' => esc_html__( 'Sidebar on right side', 'be_dentist' ), 'img_src' => trailingslashit( BE_DENTIST_THEME_URI ) . 'assets/images/admin/page-layout-right-sidebar.svg', ), 'fullwidth' => array( 'label' => esc_html__( 'No sidebar', 'be_dentist' ), 'img_src' => trailingslashit( BE_DENTIST_THEME_URI ) . 'assets/images/admin/page-layout-fullwidth.svg', ), ) ), 'be_dentist_header_container_type' => array( 'type' => 'radio', 'title' => esc_html__( 'Header layout', 'be_dentist' ), 'value' => 'inherit', 'display_input' => false, 'options' => array( 'inherit' => array( 'label' => esc_html__( 'Header Inherit Layout', 'be_dentist' ), 'img_src' => trailingslashit( BE_DENTIST_THEME_URI ) . 'assets/images/admin/inherit.svg', ), 'boxed' => array( 'label' => esc_html__( 'Header Boxed Layout', 'be_dentist' ), 'img_src' => trailingslashit( BE_DENTIST_THEME_URI ) . 'assets/images/admin/type-boxed.svg', ), 'fullwidth' => array( 'label' => esc_html__( 'Header Fullwidth Layout', 'be_dentist' ), 'img_src' => trailingslashit( BE_DENTIST_THEME_URI ) . 'assets/images/admin/type-fullwidth.svg', ), ) ), 'be_dentist_content_container_type' => array( 'type' => 'radio', 'title' => esc_html__( 'Content layout', 'be_dentist' ), 'value' => 'inherit', 'display_input' => false, 'options' => array( 'inherit' => array( 'label' => esc_html__( 'Content Inherit Layout', 'be_dentist' ), 'img_src' => trailingslashit( BE_DENTIST_THEME_URI ) . 'assets/images/admin/inherit.svg', ), 'boxed' => array( 'label' => esc_html__( 'Content Boxed Layout', 'be_dentist' ), 'img_src' => trailingslashit( BE_DENTIST_THEME_URI ) . 'assets/images/admin/type-boxed.svg', ), 'fullwidth' => array( 'label' => esc_html__( 'Content Fullwidth Layout', 'be_dentist' ), 'img_src' => trailingslashit( BE_DENTIST_THEME_URI ) . 'assets/images/admin/type-fullwidth.svg', ), ) ), 'be_dentist_footer_container_type' => array( 'type' => 'radio', 'title' => esc_html__( 'Footer layout', 'be_dentist' ), 'value' => 'inherit', 'display_input' => false, 'options' => array( 'inherit' => array( 'label' => esc_html__( 'Footer Inherit Layout', 'be_dentist' ), 'img_src' => trailingslashit( BE_DENTIST_THEME_URI ) . 'assets/images/admin/inherit.svg', ), 'boxed' => array( 'label' => esc_html__( 'Footer Boxed Layout', 'be_dentist' ), 'img_src' => trailingslashit( BE_DENTIST_THEME_URI ) . 'assets/images/admin/type-boxed.svg', ), 'fullwidth' => array( 'label' => esc_html__( 'Footer Fullwidth Layout', 'be_dentist' ), 'img_src' => trailingslashit( BE_DENTIST_THEME_URI ) . 'assets/images/admin/type-fullwidth.svg', ), ) ), ), ) ); } /** * Load admin files for the theme. * * @since 1.0.0 */ public function admin() { // Check if in the WordPress admin. if ( ! is_admin() ) { return; } } /** * Enqueue admin-specific assets. * * @since 1.0.0 */ public function enqueue_admin_assets() { wp_enqueue_script( 'be_dentist-admin-script', BE_DENTIST_THEME_JS . '/admin.min.js', array( 'cherry-js-core' ), BE_DENTIST_THEME_VERSION, true ); } /** * Register assets. * * @since 1.0.0 */ public function register_assets() { wp_register_script( 'jquery-slider-pro', BE_DENTIST_THEME_JS . '/jquery.sliderPro.min.js', array( 'jquery' ), '1.2.4', true ); wp_register_script( 'jquery-swiper', BE_DENTIST_THEME_JS . '/swiper.jquery.min.js', array( 'jquery' ), '3.3.0', true ); wp_register_script( 'magnific-popup', BE_DENTIST_THEME_JS . '/jquery.magnific-popup.min.js', array( 'jquery' ), '1.0.1', true ); wp_register_script( 'jquery-stickup', BE_DENTIST_THEME_JS . '/jquery.stickup.min.js', array( 'jquery' ), '1.0.0', true ); wp_register_script( 'jquery-totop', BE_DENTIST_THEME_JS . '/jquery.ui.totop.min.js', array( 'jquery' ), '1.2.0', true ); wp_register_script( 'jquery-isotope', BE_DENTIST_THEME_JS . '/jquery.isotope.min.js', array( 'jquery' ), '4.0.0', true ); wp_register_style( 'jquery-slider-pro', BE_DENTIST_THEME_CSS . '/slider-pro.min.css', array(), '1.2.4' ); wp_register_style( 'jquery-swiper', BE_DENTIST_THEME_CSS . '/swiper.min.css', array(), '3.3.0' ); wp_register_style( 'magnific-popup', BE_DENTIST_THEME_CSS . '/magnific-popup.min.css', array(), '1.0.1' ); wp_register_style( 'font-awesome', BE_DENTIST_THEME_CSS . '/font-awesome.min.css', array(), '4.5.0' ); wp_register_style( 'material-icons', BE_DENTIST_THEME_CSS . '/material-icons.min.css', array(), '2.1.0' ); } /** * Enqueue assets. * * @since 1.0.0 */ public function enqueue_assets() { wp_enqueue_style( 'be_dentist-theme-style', get_stylesheet_uri(), array( 'font-awesome', 'material-icons', 'magnific-popup' ), BE_DENTIST_THEME_VERSION ); /** * Filter the depends on main theme script. * * @since 1.0.0 * @var array */ $depends = apply_filters( 'be_dentist_theme_script_depends', array( 'cherry-js-core', 'hoverIntent' ) ); wp_enqueue_script( 'be_dentist-theme-script', BE_DENTIST_THEME_JS . '/theme-script.js', $depends, BE_DENTIST_THEME_VERSION, true ); /** * Filter the strings that send to scripts. * * @since 1.0.0 * @var array */ $labels = apply_filters( 'be_dentist_theme_localize_labels', array( 'totop_button' => esc_html__( 'Top', 'be_dentist' ), ) ); wp_localize_script( 'be_dentist-theme-script', 'be_dentist', array( 'ajaxurl' => admin_url( 'admin-ajax.php' ), 'labels' => $labels, ) ); // Threaded Comments. if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) { wp_enqueue_script( 'comment-reply' ); } } /** * Returns the instance. * * @since 1.0.0 * @return object */ public static function get_instance() { // If the single instance hasn't been set, set it now. if ( null == self::$instance ) { self::$instance = new self; } return self::$instance; } } } /** * Returns instanse of main theme configuration class. * * @since 1.0.0 * @return object */ function be_dentist_theme() { return Be_Dentist_Theme_Setup::get_instance(); } be_dentist_theme();

Visits

Visit to Rivers State Traditional Rulers Council

The Executive Committee of REIF paid a courtesy visit to the Chairman of the Rivers State Council of Traditional Rulers to acquaint him with activities of REIF. 

Previous
Next

Visit to Nigeria Ports Authority

The Executive Committee of REIF paid a courtesy visit to the General Manager, Eastern Ports to acquaint him with activities of REIF.

Previous
Next

Visit to General Manager, External Relations, NLNG Port Harcourt.

The Executive Committee of REIF on a familirization visit to the General Manager, External Relations of NLNG.

Previous
Next

Visit to Rivers State Government House, Port Harcourt.

The Executive Committee of REIF paid a courtesy visit to His Excellency Chief (Barr.) Nyesom Wike, the Executive Governor of  Rivers State.

Previous
Next

Visit to Airport Manager of The Port Harcourt International Airport , Omaguwa.

The Executive Committee of REIF paid a courtesy visit to the Airport Manager Sir. Wobo to access the renovation work at the Airport .

Previous
Next

EU-REIF town hall meeting at Aba, Abia State.

A delegation made up of REIF Exco, the European Union Ambassador and his entourage visited the Aba Market Traders Association on a facility tour.

Previous
Next

EU-REIF Teams facility tour of INDORAMA, ELEME, Rivers State.

A delegation made up of REIF Exco, the European Union Ambassador and his entourage visited INODRAMA on a facility tour.

Previous
Next

REIF ‘s facility tour of SIAT Nigeria Limited, Ubiama Estate, Rivers State.

RIEF President ,Trustees and Assistant Sec on I.C.T on a Facility Tour of SIAT Nigeria Limited, Led by the C.O.O of the Company Mr. Gerald Ray and Top Management Staff of the Facility.

Previous
Next

REIF ‘s Courtesy visit to the new Resident Electoral Commissioner of INEC, Rivers State.

REIF President, Mr. Ibifiri Bobmanuel, some members with the Management of INEC and their new REC, Mr. Obo Effanga

Previous
Next

REIF’s Courtesy Visit to the Commissioner of Police, Rivers State.

REIF TEAM with CP. Mustapha Dandaura

Previous
Next

REIF’s Courtesy Visit to the Chairman, Butchers Association, Rivers State

REIF’s delegation led by the President, Mr, Ibifiri Bobmanuel on a Fact finding visit to the Trans Amadi Ablator to ascertain their operational challenges 

Previous
Next

REIF ‘s 2022 Courtesy visit to the new Resident Electoral Commissioner of INEC, Rivers State.

A delegation of Rivers Entrepreneurs and Investors Forum (REIF), led by Mr. Ibifiri Bobmanuel, President, paid a courtesy visit to the Resident Electoral Commissioner of INEC, Rivers State and had a fruitful deliberation as part of the build up towards the upcoming 2023 General Election. # issuebased2023elections .
Previous
Next