2020-04-22 22:48:56 +03:00
|
|
|
<?php defined('BASEPATH') or exit('No direct script access allowed');
|
2017-11-08 17:22:30 +03:00
|
|
|
|
|
|
|
/* ----------------------------------------------------------------------------
|
|
|
|
* Easy!Appointments - Open Source Web Scheduler
|
|
|
|
*
|
|
|
|
* @package EasyAppointments
|
|
|
|
* @author A.Tselegidis <alextselegidis@gmail.com>
|
2020-03-11 12:10:59 +03:00
|
|
|
* @copyright Copyright (c) 2013 - 2020, Alex Tselegidis
|
2017-11-08 17:22:30 +03:00
|
|
|
* @license http://opensource.org/licenses/GPL-3.0 - GPLv3
|
|
|
|
* @link http://easyappointments.org
|
|
|
|
* @since v1.3.0
|
|
|
|
* ---------------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Assets URL helper function.
|
|
|
|
*
|
|
|
|
* This function will create an asset file URL that includes a cache busting parameter in order
|
|
|
|
* to invalidate the browser cache in case of an update.
|
|
|
|
*
|
|
|
|
* @param string $uri Relative URI (just like the one used in the base_url helper).
|
|
|
|
* @param string|null $protocol Valid URI protocol.
|
|
|
|
*
|
|
|
|
* @return string Returns the final asset URL.
|
|
|
|
*/
|
2018-01-23 12:08:37 +03:00
|
|
|
function asset_url($uri = '', $protocol = NULL)
|
|
|
|
{
|
2020-12-02 23:12:54 +03:00
|
|
|
$debug = config('debug');
|
2018-01-02 15:34:13 +03:00
|
|
|
|
2020-12-02 23:12:54 +03:00
|
|
|
$cache_busting_token = ! $debug ? '?' . config('cache_busting_token') : '';
|
2020-04-22 22:48:56 +03:00
|
|
|
|
|
|
|
if (strpos(basename($uri), '.js') !== FALSE && strpos(basename($uri), '.min.js') === FALSE && ! $debug)
|
2020-03-18 22:20:43 +03:00
|
|
|
{
|
|
|
|
$uri = str_replace('.js', '.min.js', $uri);
|
|
|
|
}
|
|
|
|
|
2020-04-22 22:48:56 +03:00
|
|
|
if (strpos(basename($uri), '.css') !== FALSE && strpos(basename($uri), '.min.css') === FALSE && ! $debug)
|
2020-03-18 22:20:43 +03:00
|
|
|
{
|
|
|
|
$uri = str_replace('.css', '.min.css', $uri);
|
|
|
|
}
|
|
|
|
|
2018-01-02 15:34:13 +03:00
|
|
|
return base_url($uri . $cache_busting_token, $protocol);
|
2017-11-08 17:22:30 +03:00
|
|
|
}
|