MaketRandevu/application/helpers/config_helper.php

27 lines
817 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 - 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.
*/
2018-01-23 12:08:37 +03:00
function config($key)
{
$CI = &get_instance();
return $CI->config->item($key);
}