mirror of
https://github.com/Bigherollc/wticreatorstudio.git
synced 2026-08-03 06:16:14 -04:00
101 lines
2.6 KiB
PHP
101 lines
2.6 KiB
PHP
<?php
|
|
|
|
namespace Modules\JobPortal\Helpers;
|
|
|
|
class Assets
|
|
{
|
|
static protected $jsFiles = [];
|
|
static protected $cssFiles = [];
|
|
|
|
static function registerJs($file,$inFooter = true, $pos = 10,$version = false,$in_line = false){
|
|
if(empty($file)) return;
|
|
static::$jsFiles[md5($file)] = [
|
|
'file'=>$file,
|
|
'posision'=>$pos,
|
|
'in_footer'=>$inFooter,
|
|
'version'=>$version,
|
|
'in_line'=>$in_line,
|
|
];
|
|
}
|
|
static function registerCss($file,$inFooter = false, $pos = 10,$version = false){
|
|
if(empty($file)) return;
|
|
|
|
static::$cssFiles[md5($file)] = [
|
|
'file'=>$file,
|
|
'posision'=>$pos,
|
|
'in_footer'=>$inFooter,
|
|
'version'=>$version
|
|
];
|
|
}
|
|
|
|
static function js($inFooter = false)
|
|
{
|
|
$res = [];
|
|
$html = '';
|
|
foreach (static::$jsFiles as $file)
|
|
{
|
|
if($file['in_footer'] == $inFooter){
|
|
$res[] = $file;
|
|
}
|
|
}
|
|
|
|
$res = array_values(\Illuminate\Support\Arr::sort($res, function ($value) {
|
|
return $value['position'] ?? 10;
|
|
}));
|
|
|
|
if(!empty($res))
|
|
{
|
|
foreach ($res as $item) {
|
|
if($item['in_line']){
|
|
$html.=sprintf('<script type="text/javascript">%s</script>'.PHP_EOL,$item['file']);
|
|
}else {
|
|
$html .= sprintf('<script type="text/javascript" src="%s"></script>' . PHP_EOL, static::__handleUrl($item));
|
|
}
|
|
}
|
|
}
|
|
return $html;
|
|
}
|
|
|
|
static function css($inFooter = false)
|
|
{
|
|
$res = [];
|
|
$html = '';
|
|
|
|
foreach (static::$cssFiles as $file)
|
|
{
|
|
if($file['in_footer'] == $inFooter){
|
|
$res[] = $file;
|
|
}
|
|
}
|
|
|
|
$res = array_values(\Illuminate\Support\Arr::sort($res, function ($value) {
|
|
return $value['position'] ?? 10;
|
|
}));
|
|
if(!empty($res))
|
|
{
|
|
foreach ($res as $item) {
|
|
|
|
$html.= sprintf('<link rel="stylesheet" href="%s">'.PHP_EOL,static::__handleUrl($item));
|
|
}
|
|
}
|
|
return $html;
|
|
}
|
|
|
|
static function __handleUrl($item){
|
|
|
|
$url = $item['file'];
|
|
|
|
if(substr($url,0,4) != 'http' and substr($url,0,2) !='//'){
|
|
$url = asset($url);
|
|
|
|
$v = !empty($item['version']) ? $item['version'] : config('app.version');
|
|
if(strpos($url,'?') !== false){
|
|
$url.='&_v='.$v;
|
|
}else{
|
|
$url.='?_v='.$v;
|
|
}
|
|
}
|
|
|
|
return $url;
|
|
}
|
|
} |