Files
OMS/app/desktop/lib/application/theme.php
2025-12-28 23:13:25 +08:00

38 lines
1.2 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?php
/**
* Copyright © ShopeX http://www.shopex.cn. All rights reserved.
* See LICENSE file for license details.
*/
class desktop_application_theme extends base_application_prototype_filepath{
var $path = 'desktop_themes';
function filter(){
$dirname = $this->iterator()->getFilename();
return $dirname[0]!='.' && is_dir($this->getPathname());
}
function content_typename(){
return 'desktop theme';
}
static function get_files($theme_define){
list($theme_app,$theme_dir) = explode('/',$theme_define);
$handle = opendir(app::get($theme_app)->app_dir.'/desktop_themes/'.$theme_dir);
$theme_base_url = kernel::base_url().'/app/'.$theme_app.'/desktop_themes/'.$theme_dir;
while(false!==($file=readdir($handle))){
if($file[0]!='.'){
if(substr($file,-4,4)=='.css'){
$css[] = $theme_base_url.'/'.$file;
}elseif(substr($file,-3,3)=='.js'){
$js[] = $theme_base_url.'/'.$file;
}
}
}
closedir($handle);
return array($js,$css);
}
}