'operate_delete.htm'; break; case 'operate_move': $pre .= $default_pre .= 'operate_move.htm'; break; case '404': $pre .= $default_pre .= '404.htm'; break; case 'read_404': $pre .= $default_pre .= 'read_404.htm'; break; case 'list_404': $pre .= $default_pre .= 'list_404.htm'; break; default: $pre .= $default_pre .= theme_mode_pre(); break; } if ($config['theme']) { $conffile = APP_PATH . 'view/template/' . $config['theme'] . '/conf.json'; $json = is_file($conffile) ? xn_json_decode(file_get_contents($conffile)) : array(); } !empty($json['installed']) and $path_file = APP_PATH . 'view/template/' . $config['theme'] . '/htm/' . ($id ? $id . '_' : '') . $pre; (empty($path_file) || !is_file($path_file)) and $path_file = APP_PATH . 'view/template/' . $config['theme'] . '/htm/' . $pre; if (!empty($config['theme_child']) && is_array($config['theme_child'])) { foreach ($config['theme_child'] as $theme) { if (empty($theme) || is_array($theme)) continue; $path_file = APP_PATH . 'view/template/' . $theme . '/htm/' . ($id ? $id . '_' : '') . $pre; !is_file($path_file) and $path_file = APP_PATH . 'view/template/' . $theme . '/htm/' . $pre; } } !is_file($path_file) and $path_file = APP_PATH . ($dir ? 'plugin/' . $dir . '/view/htm/' : 'view/htm/') . $default_pre; return $path_file; } function theme_mode_pre($type = 0) { global $config; $mode = $config['setting']['website_mode']; $pre = ''; if (1 == $mode) { $pre .= 2 == $type ? 'portal_category.htm' : 'portal.htm'; } elseif (2 == $mode) { $pre .= 2 == $type ? 'flat_category.htm' : 'flat.htm'; } else { $pre .= 2 == $type ? 'index_category.htm' : 'index.htm'; } return $pre; } ?>设备

修复windows系统下mtp驱动设备识别问题.2021-03-16

mtp设备驱动是win系统(winxp,win7,win8.1.....)内置的一个驱动,一般不需要额外安装,但是实际连接设备的时候不知道为什么默认情况下总是出现无法正常识别安装mtp驱动的情况,甚至单独安装设备官方提供的mtp驱动也无法正

2024-10-16520

[3] ADB 设备连接管理

设备连接管理 查询已连接设备模拟器USB 连接无线连接(Android11 及以上)无线连接(需要借助 USB 线) 查询已连接设备模拟器 查看所

2024-10-16980

adb连接设备的多种方式

一、USB 连接通过 USB 连接来正常使用 adb 需要保证几点: 系统支持USB连接(某些系统会禁止USB传输数据的功能) 硬件状态正常。 包括 Android 设备处于正常开机状态,USB 连接线和各种接口完好。

2024-10-16770

如何使用adb连接Android设备?

前提 使用adb连接Android设备的前提1、各种硬件状态是正常的;2、手机的USB连接线是完好无损坏的,可以进行传输数据; adb连接手机可以有两种方式进行连接&am

2024-10-161360