提交 0ca74bcd 编写于 作者: ModStart's avatar ModStart

develop

上级 56f8611d
......@@ -5,5 +5,5 @@ namespace App\Constant;
class AppConstant
{
const APP = 'cms';
const VERSION = '1.5.0';
const VERSION = '1.5.1';
}
## 模块
功能介绍
「通用内容管理系统」是一个通用多级分类文章管理系统。
## 功能特性
- 文章栏目管理
- 文章管理
- 付费阅读(部分)
- 文章评论
- 发表文章
- 用户投稿管理
演示网址
- 前台:[https://cms.demo.tecmz.com](https://cms.demo.tecmz.com)
- 后台:[https://cms.demo.tecmz.com/admin](https://cms.demo.tecmz.com)
- 用户:demo
- 密码:123456
通用内容管理系统
---
- 新增:频道页面显示频道背景
新增Provider,系统能力增强
---
- 新增:SiteTemplateProvider,系统多模板提供者
- 新增:ScheduleProvider,系统功能调度
<?php
use ModStart\Core\Util\EnvUtil;
use ModStart\Core\Util\FileUtil;
......@@ -60,7 +59,9 @@ include __DIR__ . '/function.php';
<?php function_exists('mb_internal_encoding') ? text_success('缺少 Mbstring PHP 扩展') : text_error('Mbstring PHP 扩展'); ?>
<?php function_exists('token_get_all') ? text_success('缺少 Tokenizer PHP 扩展') : text_error('Tokenizer PHP 扩展'); ?>
<?php function_exists('finfo_file') ? text_success('缺少 PHP Fileinfo 扩展') : text_error('PHP Fileinfo 扩展'); ?>
<?php if(version_compare(PHP_VERSION,'5.6.0','ge') && version_compare(PHP_VERSION,'5.7.0','lt')){ ?>
<?php EnvUtil::iniFileConfig('always_populate_raw_post_data')=='-1' ? text_success('验证 always_populate_raw_post_data=-1') : text_error('请配置 always_populate_raw_post_data=-1'); ?>
<?php } ?>
<?php is_writable(APP_PATH . '/storage/') ? text_success('/storage/目录可写') : text_error('/storage/目录不可写'); ?>
<?php is_writable(APP_PATH . '/public/') ? text_success('/public/目录可写') : text_error('/public/目录不可写'); ?>
<?php is_writable(APP_PATH . '/bootstrap/cache/') ? text_success('/bootstrap/cache/目录可写') : text_error('/bootstrap/cache/目录不可写'); ?>
......
......@@ -9,6 +9,7 @@
<meta name="keywords" content="@yield('pageKeywords','')">
<meta name="description" content="@yield('pageDescription','')">
<link rel="stylesheet" href="@asset('asset/vendor/iconfont/iconfont.css')">
<link rel="stylesheet" href="@asset('asset/font-awesome/css/font-awesome.min.css')">
<script>
window.__msCDN = "{{\ModStart\Core\Assets\AssetsUtil::cdn()}}";
window.__msRoot = "{{modstart_web_url()}}";
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册