yeesoft / yii2-yee-post
Post Module For Yee CMS
Installs: 6 701
Dependents: 1
Suggesters: 0
Security: 0
Stars: 2
Watchers: 4
Forks: 12
Open Issues: 1
Requires
- nicolasbize/magicsuggest: ~2.0
- paulzi/yii2-nested-intervals: ^1.0
- yeesoft/yii2-yee-core: ~0.1.0
- yeesoft/yii2-yee-media: ~0.1.0
This package is auto-updated.
Last update: 2022-03-29 00:34:37 UTC
README
##Yee CMS - Post Module
####Backend module for managing posts
This module is part of Yee CMS (based on Yii2 Framework).
Post module lets you easily create posts on your site.
Installation
-
Install Yee Media Module if it is not installed yet.
-
Either run
composer require --prefer-dist yeesoft/yii2-yee-post "~0.1.0"
or add
"yeesoft/yii2-yee-post": "~0.1.0"
to the require section of your composer.json
file.
- Run migrations
yii migrate --migrationPath=@vendor/yeesoft/yii2-yee-post/migrations/
Configuration
- In your backend config file
'modules'=>[ 'post' => [ 'class' => 'yeesoft\post\PostModule', ], ],
Dashboard widget
You can use dashboard widget to display short information about recent activity in the module.
Add this code in your control panel dashboard to display widget:
echo \yeesoft\post\widgets\dashboard\Posts::widget();