ScContent
This module in process.
At this time, the module works only with the database MySql., (*1)
The module allows you to edit the content, manage themes and widgets., (*2)
You can easily create your own widgets kit for your specific application., (*3)
Introduction
It is a simple module for editing the content based on Zend Framework 2.
details, (*4)
![Screenshot] (/docs/img/sc-content.png?raw=true), (*5)
Requirements
Module update
Attention! The module is still in the development stage.
The versioning of database migration is not supported yet., (*6)
Please, after any update, delete any table from module database!
Sorry for the inconvenience, improvements are planned in the near time., (*7)
Installation
Main Setup
By cloning project
- Install the BjyAuthorize ZF2 module
by cloning it into
./vendor/.
- Install the ZfcBase ZF2 module
by cloning it into
./vendor/.
- Install the ZfcUser ZF2 module
by cloning it into
./vendor/.
- Clone this project into your
./vendor/ directory.
With composer
-
Add this project in your composer.json:, (*8)
"require": {
"dphn/sc-content" : "dev-master"
}
-
Now tell composer to download ScContent by running the command:, (*9)
$ php composer.phar update
Post installation
-
Enabling it in your application.config.phpfile., (*10)
<?php
return array(
'modules' => array(
// ...
'ZfcBase',
'ZfcUser',
'BjyAuthorize',
'ScContent',
),
// ...
);
-
Further installation is automatic., (*11)