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

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

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

Revision 1.2 by sysadm, Mon Apr 7 08:39:17 2025 UTC Revision 1.15 by sysadm, Fri Apr 18 04:25:28 2025 UTC
# Line 5  if (!defined("_BBS_THEME_INIT_")) Line 5  if (!defined("_BBS_THEME_INIT_"))
5    
6          $BBS_theme_set = array(          $BBS_theme_set = array(
7                  "default" => array(                  "default" => array(
8                          "css" => "css/default.css",                          "css/default" => "css/default.css",
9                          "post" => "post.view.php",                          "js/lml_assistant" => "js/lml_assistant.js",
10                          "member_service_guide" => "member_service_guide.view.php",                          "view/list" => "list.view.php",
11                          "update_profile" => "update_profile.view.php",                          "view/post" => "post.view.php",
12                          "preference" => "preference.view.php",                          "view/view_article" => "view_article.view.php",
13                            "view/search_article" => "search_article.view.php",
14                            "view/member_service_guide" => "member_service_guide.view.php",
15                            "view/update_profile" => "update_profile.view.php",
16                            "view/preference" => "preference.view.php",
17                            "view/s_favor" => "s_favor.view.php",
18                            "view/section_setting" => "section_setting.view.php",
19                            "view/show_profile" => "show_profile.view.php",
20                            "view/score_detail" => "score_detail.view.php",
21                            "view/suicide" => "suicide.view.php",
22                            "view/read_msg" => "read_msg.view.php",
23                    ),
24                    "xml" => array(
25                            "xsl/1" => "xsl/1.xsl",
26                            "view/view_article" => "view_article_xml.view.php",
27                    ),
28                    "gen_ex" => array(
29                            "view/view_article" => "gen_ex_article.view.php",
30                    ),
31                    "portal" => array(
32                            "css/default" => "../www/css/default.css",
33                            "view/view_article" => "view_article.view.php",
34                  ),                  ),
35          );          );
36    
37          $BBS_theme_current = "";          $BBS_theme_current = "";
38    
39          function get_theme_view_file(string $view_name, string $theme_name = "") : string | null          function get_theme_file(string $view_name, string $theme_name = "") : string | null
40          {          {
41                  global $BBS_theme_set;                  global $BBS_theme_set;
42                  global $BBS_theme_current;                  global $BBS_theme_current;
# Line 37  if (!defined("_BBS_THEME_INIT_")) Line 58  if (!defined("_BBS_THEME_INIT_"))
58                          return null; // View not exist                          return null; // View not exist
59                  }                  }
60    
61                  $file = "./themes/" . $theme_name . "/" . $BBS_theme_set[$theme_name][$view_name];                  $file = "../bbs/themes/" . $theme_name . "/" . $BBS_theme_set[$theme_name][$view_name];
62    
63                  if (!file_exists($file))                  if (!file_exists($file))
64                  {                  {


Legend:
Removed lines/characters  
Changed lines/characters
  Added lines/characters

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