* @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); }