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();
Warning: Cannot modify header information - headers already sent by (output started at /home/reif3513/public_html/wp-content/plugins/backup-1772789657/file_folder_manager.php:17) in /home/reif3513/public_html/wp-includes/feed-rss2.php on line 8
Beds – REIF https://reif.org.ng ...driving the local economy Mon, 04 Apr 2022 20:46:52 +0000 en-US hourly 1 https://wordpress.org/?v=6.7.5 https://reif.org.ng/wp-content/uploads/2017/10/REIF-WEBSITE-ICON-1.png Beds – REIF https://reif.org.ng 32 32 Home Tour: Cleo & McShane Murnane https://reif.org.ng/home-tour-cleo-mcshane-murnane/ https://reif.org.ng/home-tour-cleo-mcshane-murnane/#respond Thu, 08 Jul 2021 09:06:27 +0000 https://themepanthers.com/wp/creote/v-new/?p=4027 Scandinavian design is a design movement characterized by simplicity, minimal and functionality that emerged in the 1950s in the five Nordic countries.

image
The idea that beautiful and functional everyday objects should not only be affordable to the wealthy, but to all, is a core theme in the development of modernism and functionalism. This is probably most completely realized in post-WWII Scandinavian design.The ideological background was the emergence of a particular Scandinavian form of social democracy in the 1950s, as well as the increased availability of new low-cost materials and methods for mass production. Scandinavian design often makes use of form-pressed wood, plastics, anodized or enameled aluminum
or pressed steel.
icon png

The concept of Scandinavian design has been the subject of many scholarly debates, and marketing agendas since the 1950s.

Lamont Shaun

Many emphasize the democratic design ideals that were a central theme of the movement and are reflected in the rhetoric surrounding contemporary Scandinavian and international design.

The ideological background was the emergence of a particular Scandinavian form of social democracy in the 1950s, as well as the increased availability of new low-cost materials and methods for mass production. Scandinavian design often makes use of form-pressed wood, plastics, anodized or enameled aluminum
or pressed steel.
The idea that beautiful and functional everyday objects should not only be affordable to the wealthy, but to all, is a core theme in the development of modernism and functionalism. This is probably most completely realized in post-WWII Scandinavian design.

]]>
https://reif.org.ng/home-tour-cleo-mcshane-murnane/feed/ 0