feat: 添加开发者社交链接功能和管理员系统信息页面

- 在developers表中添加social_links字段用于存储开发者社交链接
- 新增开发者个人资料编辑页面(profile.php)
- 在开发者应用页面展示社交链接
- 新增管理员系统信息页面(system_info.php)用于管理上传文件
- 更新导航菜单添加相关功能入口
- 修复平台图标显示问题并优化Font Awesome引用方式
This commit is contained in:
2025-07-08 12:40:13 +08:00
parent 06c8f549d3
commit b4b96a444b
8 changed files with 431 additions and 14 deletions

3
app_store_update.sql Normal file
View File

@@ -0,0 +1,3 @@
-- 添加 social_links 字段到 developers 表
ALTER TABLE developers
ADD COLUMN social_links VARCHAR(255) DEFAULT '' AFTER password;