Skip to content

Commit

Permalink
Release version 1.1.5.9
Browse files Browse the repository at this point in the history
  • Loading branch information
hungnguyenhp committed Dec 10, 2022
1 parent 7a5a839 commit 80e34e0
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 5 deletions.
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ Dưới đây là danh sách các Helper được hỗ trợ trong bộ thư vi
### Assets Helper

- [x] Helper Function: `assets_url` - Hàm lấy ra Assets Url, điều kiện tồn tại thư mục `assets` trong thư mục `public/`. Trong trường hợp trong file `config.php` tồn tại biến `assets_version` sẽ tự động thêm version vào đằng sau các file CSS, JS
- [x] Helper Function: `static_url` - Hàm lấy ra Static Resource Url, điều kiện tồn tại cấu hình `config_item('static_url')` trong config của website. Trong trường hợp trong file `config.php` tồn tại biến `assets_version` sẽ tự động thêm version vào
đằng sau các file CSS, JS
- [x] Helper Function: `templates_url` - Hàm lấy ra Assets Url, điều kiện tồn tại thư mục `templates` trong thư mục `public/`. Trong trường hợp trong file `config.php` tồn tại biến `assets_version` sẽ tự động thêm version vào đằng sau các file CSS,
JS
- [x] Helper Function: `editor_url` - Hàm lấy ra Assets Url, điều kiện tồn tại thư mục `assets/editors/` trong thư mục `public/`. Trong trường hợp trong file `config.php` tồn tại biến `assets_version` sẽ tự động thêm version vào đằng sau các file
Expand Down Expand Up @@ -206,6 +208,6 @@ Class cung cấp phương thức nhanh gọn để gọi tới các API tuân ch

## Maintainer & Supporter

| STT | Name | Email | Website | Github |
|-----|-------------|----------------------|---------------|---------------|
| 1 | Hung Nguyen | [email protected] | https://nguyenanhung.com |@nguyenanhung |
| STT | Name | Email | Website | Github |
|-----|-------------|----------------------|--------------------------|---------------|
| 1 | Hung Nguyen | [email protected] | https://nguyenanhung.com | @nguyenanhung |
29 changes: 29 additions & 0 deletions helpers/assets_helper.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,35 @@ function assets_url($uri = '', $protocol = null)

}
}
if (!function_exists('static_url')) {
/**
* Function static_url
*
* @param string $uri
*
* @return string
* @author : 713uk13m <[email protected]>
* @copyright: 713uk13m <[email protected]>
* @time : 08/07/2021 11:56
*/
function static_url($uri = '')
{
if (function_exists('base_url') && function_exists('config_item')) {
$fileExt = substr(trim($uri), strrpos(trim($uri), '.') + 1);
$fileExt = strtoupper($fileExt);
$version = '';
if ($fileExt === 'CSS' || $fileExt === 'JS') {
$version = config_item('assets_version');
}
$host = config_item('static_url');

return trim($host) . trim($uri) . trim($version);
}

return trim($uri);

}
}
if (!function_exists('templates_url')) {
/**
* Function templates_url
Expand Down
4 changes: 2 additions & 2 deletions src/BaseHelper.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@
*/
class BaseHelper
{
const VERSION = '1.1.5.8';
const LAST_MODIFIED = '2022-10-26';
const VERSION = '1.1.5.9';
const LAST_MODIFIED = '2022-12-11';
const AUTHOR_NAME = 'Hung Nguyen';
const AUTHOR_EMAIL = '[email protected]';
const PROJECT_NAME = 'CodeIgniter - Basic Helper';
Expand Down

0 comments on commit 80e34e0

Please sign in to comment.