Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/skeeks-cms/cms-backend-admin
Admin controll panel for SkeekS CMS
https://github.com/skeeks-cms/cms-backend-admin
Last synced: 3 months ago
JSON representation
Admin controll panel for SkeekS CMS
- Host: GitHub
- URL: https://github.com/skeeks-cms/cms-backend-admin
- Owner: skeeks-cms
- License: bsd-3-clause
- Created: 2017-03-10T18:15:52.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2024-05-28T08:21:18.000Z (7 months ago)
- Last Synced: 2024-09-30T00:23:49.624Z (3 months ago)
- Language: PHP
- Homepage: https://cms.skeeks.com
- Size: 3.69 MB
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
Admin controll panel for SkeekS CMS
===================================Installation
------------The preferred way to install this extension is through [composer](http://getcomposer.org/download/).
Either run
```
php composer.phar require --prefer-dist skeeks/cms-backend-admin "*"
```or add
```
"skeeks/cms-backend-admin": "*"
``````
"repositories": [
{
"type": "git",
"url": "https://github.com/skeeks-cms/cms-backend-admin.git"
}
]
```Configuration app
----------```php
'components' => [
'admin' =>
[
'class' => '\skeeks\cms\modules\admin\components\settings\AdminSettings',
'allowedIPs' => ['91.219.167.*', '111.*']
],'urlManager' => [
'rules' => [
'cms-admin' => [
"class" => 'skeeks\cms\modules\admin\components\UrlRule',
'controllerPrefix' => '~sx'
],
]
]
],'modules' => [
'admin' =>
[
'class' => '\skeeks\cms\admin\Module'
],
],```
___
> [![skeeks!](https://skeeks.com/img/logo/logo-no-title-80px.png)](https://skeeks.com)
SkeekS CMS (Yii2) — fast, simple, effective!
[skeeks.com](https://skeeks.com) | [cms.skeeks.com](https://cms.skeeks.com)