mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-11-08 17:12:25 +03:00
26 lines
831 B
PHP
26 lines
831 B
PHP
<?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 - 2020, 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);
|
|
}
|