Current File : /home/n742ef5/royalanteam.com/wp-content/plugins/myhome-core/legacy/includes/Settings.php
<?php

namespace MyHomeCore;


class Settings {

	public $props = array();

	public function __construct() {
		$this->props = get_option( 'myhome_redux' );
	}

	/**
	 * @param $key
	 *
	 * @return mixed
	 */
	public function get( $key ) {
		$key = 'mh-' . $key;

		if ( isset( $this->props[ $key ] ) ) {
			return $this->props[ $key ];
		}

		return '';
	}

}