mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
调整目录
This commit is contained in:
parent
3d852babf6
commit
823a26b9e9
@ -28,7 +28,7 @@ return [
|
|||||||
// 数据库类型
|
// 数据库类型
|
||||||
'type' => 'mysql',
|
'type' => 'mysql',
|
||||||
// 服务器地址
|
// 服务器地址
|
||||||
'hostname' => '127.0.0.1',
|
'hostname' => 'server.cuci.cc',
|
||||||
// 数据库名
|
// 数据库名
|
||||||
'database' => 'admin_v6',
|
'database' => 'admin_v6',
|
||||||
// 用户名
|
// 用户名
|
||||||
|
@ -147,7 +147,7 @@ class ModuleService extends Service
|
|||||||
$vars = $this->_getModuleVersion($name);
|
$vars = $this->_getModuleVersion($name);
|
||||||
if (is_array($vars) && isset($vars['version']) && preg_match('|^\d{4}\.\d{2}\.\d{2}\.\d{2}$|', $vars['version'])) {
|
if (is_array($vars) && isset($vars['version']) && preg_match('|^\d{4}\.\d{2}\.\d{2}\.\d{2}$|', $vars['version'])) {
|
||||||
$data[$name] = array_merge($vars, ['change' => []]);
|
$data[$name] = array_merge($vars, ['change' => []]);
|
||||||
foreach ($service->scanDirectory($this->_getModulePath($name) . '/module/change/', [], 'md') as $file) {
|
foreach ($service->scanDirectory($this->_getModulePath($name) . 'change/', [], 'md') as $file) {
|
||||||
$data[$name]['change'][pathinfo($file, PATHINFO_FILENAME)] = Parsedown::instance()->parse(file_get_contents($file));
|
$data[$name]['change'][pathinfo($file, PATHINFO_FILENAME)] = Parsedown::instance()->parse(file_get_contents($file));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -143,7 +143,7 @@ class NodeService extends Service
|
|||||||
*/
|
*/
|
||||||
public function scanDirectory($path, $data = [], $ext = 'php')
|
public function scanDirectory($path, $data = [], $ext = 'php')
|
||||||
{
|
{
|
||||||
foreach (scandir($path) as $item) if ($item[0] !== '.') {
|
if (file_exists($path) && is_dir($path)) foreach (scandir($path) as $item) if ($item[0] !== '.') {
|
||||||
$realpath = rtrim($path, '\\/') . DIRECTORY_SEPARATOR . $item;
|
$realpath = rtrim($path, '\\/') . DIRECTORY_SEPARATOR . $item;
|
||||||
if (is_readable($realpath)) if (is_dir($realpath)) {
|
if (is_readable($realpath)) if (is_dir($realpath)) {
|
||||||
$data = $this->scanDirectory($realpath, $data, $ext);
|
$data = $this->scanDirectory($realpath, $data, $ext);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user