easyappointments/src/application/helpers/config_helper.php

26 lines
832 B
PHP
Raw Normal View History

<?php defined('BASEPATH') OR exit('No direct script access allowed');
/* ----------------------------------------------------------------------------
* Easy!Appointments - Open Source Web Scheduler
*
* @package EasyAppointments
* @author A.Tselegidis <alextselegidis@gmail.com>
* @copyright Copyright (c) 2013 - 2017, Alex Tselegidis
* @license http://opensource.org/licenses/GPL-3.0 - GPLv3
* @link http://easyappointments.org
* @since v1.3.0
* ---------------------------------------------------------------------------- */
/**
* Quickly fetch the value of a framework configuration.
*
* @param string $key Configuration key.
*
* @return mixed Returns the configuration value.
*/
function config($key) {
$framework = & get_instance();
return $framework->config->item($key);
}