dphn/sc-widgets

The basic example widgets kit for module ScContent.

dev-master 2014-02-23 20:54 UTC

This package is not auto-updated.

Last update: 2024-03-16 12:59:48 UTC


README

This module in process.

Features / Goals

  • Example widget
  • Site title
  • Simple banner as image
  • Search widget and simple integrated search feature
  • Login widget

Installation

Main Setup

By cloning project

  1. Install the BjyAuthorize ZF2 module by cloning it into ./vendor/.
  2. Install the ZfcBase ZF2 module by cloning it into ./vendor/.
  3. Install the ZfcUser ZF2 module by cloning it into ./vendor/.
  4. Install the [ScContent] (https://github.com/dphn/ScContent) by cloning it into ./vendor/.
  5. Clone this project into your ./vendor/ directory.

With composer

  1. Add this project in your composer.json:

    "require": {
        "dphn/sc-widgets" : "dev-master"
    }
  2. Now tell composer to download ScWidgets by running the command:

    $ php composer.phar update

Post installation

  1. Enabling it in your application.config.phpfile.

    <?php
    return array(
        'modules' => array(
            // ...
            'ZfcBase',
            'ZfcUser',
            'BjyAuthorize',
            'ScContent',
            'ScWidgets',
        ),
        // ...
    );
  2. Further installation is automatic.