/[LeafOK_CVS]/fenglin/bbs/theme.inc.php
ViewVC logotype

Annotation of /fenglin/bbs/theme.inc.php

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.7 - (hide annotations)
Sat Apr 12 05:05:33 2025 UTC (11 months ago) by sysadm
Branch: MAIN
Changes since 1.6: +1 -0 lines
Add post.view.php

1 sysadm 1.1 <?php
2     if (!defined("_BBS_THEME_INIT_"))
3     {
4     define("_BBS_THEME_INIT_",1);
5    
6     $BBS_theme_set = array(
7     "default" => array(
8 sysadm 1.4 "css/default" => "css/default.css",
9     "js/lml_assistant" => "js/lml_assistant.js",
10 sysadm 1.7 "view/list" => "list.view.php",
11 sysadm 1.4 "view/post" => "post.view.php",
12     "view/member_service_guide" => "member_service_guide.view.php",
13     "view/update_profile" => "update_profile.view.php",
14     "view/preference" => "preference.view.php",
15     "view/s_favor" => "s_favor.view.php",
16 sysadm 1.5 "view/section_setting" => "section_setting.view.php",
17 sysadm 1.6 "view/show_profile" => "show_profile.view.php",
18 sysadm 1.1 ),
19     );
20    
21 sysadm 1.2 $BBS_theme_current = "";
22    
23 sysadm 1.4 function get_theme_file(string $view_name, string $theme_name = "") : string | null
24 sysadm 1.1 {
25     global $BBS_theme_set;
26 sysadm 1.2 global $BBS_theme_current;
27    
28     if ($theme_name == "")
29     {
30     $theme_name = $BBS_theme_current; // Use current selected theme
31     }
32 sysadm 1.1
33     if (!isset($BBS_theme_set[$theme_name]) || !isset($BBS_theme_set[$theme_name][$view_name]))
34     {
35     $theme_name = "default"; // fallback
36     }
37    
38 sysadm 1.2 $BBS_theme_current = $theme_name; // Remember current theme for later use
39    
40 sysadm 1.1 if (!isset($BBS_theme_set[$theme_name][$view_name]))
41     {
42     return null; // View not exist
43     }
44    
45     $file = "./themes/" . $theme_name . "/" . $BBS_theme_set[$theme_name][$view_name];
46    
47     if (!file_exists($file))
48     {
49 sysadm 1.2 return $BBS_theme_set[$theme_name][$view_name]; // fallback file without theme
50 sysadm 1.1 }
51    
52     return $file;
53     }
54     }
55     ?>

webmaster@leafok.com
ViewVC Help
Powered by ViewVC 1.3.0-beta1