Files
wavelog/application/libraries/Paths.php
2024-12-10 15:12:33 +01:00

44 lines
1.0 KiB
PHP

<?php defined('BASEPATH') or exit('No direct script access allowed');
/***
* Paths Library to return specific paths
*/
class Paths
{
// generic function for return eQsl path //
function getPathEqsl()
{
$CI = &get_instance();
$CI->load->model('Eqsl_images');
return $CI->Eqsl_images->get_imagePath();
}
// generic function for return Qsl path //
function getPathQsl()
{
$CI = &get_instance();
$CI->load->model('Qsl_model');
return $CI->Qsl_model->get_imagePath();
}
function make_update_path($path) {
$CI = & get_instance();
$path = "updates/" . $path;
$datadir = $CI->config->item('datadir');
if(!$datadir) {
return $path;
}
return $datadir . "/" . $path;
}
function cache_buster($filepath) {
$fullpath = $_SERVER['DOCUMENT_ROOT'] . $filepath;
if (file_exists($fullpath)) {
return base_url($filepath) . '?v=' . filemtime($fullpath);
}
return base_url($filepath);
}
}