This module in process.
- Example widget
- Site title
- Simple banner as image
- Search widget and simple integrated search feature
- Login widget
- 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/
. - Install the [ScContent] (https://github.com/dphn/ScContent)
by cloning it into
./vendor/
. - Clone this project into your
./vendor/
directory.
-
Add this project in your composer.json:
"require": { "dphn/sc-widgets" : "dev-master" }
-
Now tell composer to download ScWidgets by running the command:
$ php composer.phar update
-
Enabling it in your
application.config.php
file.<?php return array( 'modules' => array( // ... 'ZfcBase', 'ZfcUser', 'BjyAuthorize', 'ScContent', 'ScWidgets', ), // ... );
-
Further installation is automatic.