2021-10-23 14:27:46 +03:00
|
|
|
<?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
|
2021-10-23 14:29:31 +03:00
|
|
|
* @since v1.5.0
|
2021-10-23 14:27:46 +03:00
|
|
|
* ---------------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
if ( ! function_exists('storage_path'))
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Get the path to the storage folder.
|
|
|
|
*
|
2021-10-23 14:38:54 +03:00
|
|
|
* Example:
|
|
|
|
*
|
|
|
|
* $logs_path = storage_path('logs'); // Returns "/path/to/installation/dir/storage/logs"
|
|
|
|
*
|
2021-10-23 14:27:46 +03:00
|
|
|
* @param string $path
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
function storage_path(string $path = ''): string
|
|
|
|
{
|
|
|
|
return FCPATH . 'storage/' . trim($path);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( ! function_exists('base_path'))
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Get the path to the base of the current installation.
|
|
|
|
*
|
2021-10-23 14:38:54 +03:00
|
|
|
* $controllers_path = base_path('application/controllers'); // Returns "/path/to/installation/dir/application/controllers"
|
|
|
|
*
|
2021-10-23 14:27:46 +03:00
|
|
|
* @param string $path
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
function base_path(string $path = ''): string
|
|
|
|
{
|
|
|
|
return FCPATH . trim($path);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|