Files
wavelog/application/core/genericFunctions.php
2024-02-01 16:58:51 +01:00

17 lines
374 B
PHP

<?php
// generic function for return eQsl path //
function wl_getPathEqsl() {
$CI =& get_instance();
$CI->load->model('Eqsl_images');
return $CI->Eqsl_images->get_imagePath();
}
// generic function for return Qsl path //
function wl_getPathQsl() {
$CI =& get_instance();
$CI->load->model('Qsl_model');
return $CI->Qsl_model->get_imagePath();
}
?>