iflrandevu/application/helpers/path_helper.php

46 lines
1.3 KiB
PHP
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php defined('BASEPATH') or exit('No direct script access allowed');
/* ----------------------------------------------------------------------------
* IFLRandevu - İzmir Fen Lisesi Randevu Portalı
*
* @package EasyAppointments
* @author A.Tselegidis <alextselegidis@gmail.com>
* @copyright Copyright (c) Alex Tselegidis
* @license https://opensource.org/licenses/GPL-3.0 - GPLv3
* @link https://easyappointments.org
* @since v1.5.0
* ---------------------------------------------------------------------------- */
if (!function_exists('storage_path')) {
/**
* Get the path to the storage folder.
*
* Example:
*
* $logs_path = storage_path('logs'); // Returns "/path/to/installation/dir/storage/logs"
*
* @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.
*
* $controllers_path = base_path('application/controllers'); // Returns "/path/to/installation/dir/application/controllers"
*
* @param string $path
*
* @return string
*/
function base_path(string $path = ''): string
{
return FCPATH . trim($path);
}
}