zf-commons/zfc-base

There is no license information available for the latest version (v0.1.2) of this package.

A set of genetic (abstract) classes which are commonly used across multiple modules.

v0.1.2 2013-05-02 12:33 UTC

This package is not auto-updated.

Last update: 2024-03-13 09:07:14 UTC


README

Version 0.0.1 Created by Evan Coury and the ZF-Commons team

Build Status

Introduction

ZfcBase provides a suite of common classes used across several ZF2 modules. You probably don't need to install this module unless either A) you are installing a module that depends on ZfcBase, or B) you are building a module that depends on ZfcBase.

Requirements

  • Zend Framework 2

Installation

Simply clone this project into your ./vendor/ directory and enable it in your ./config/application.config.php file.

Provided Classes

  • ZfcBase\Mapper\AbstractDbMapper - An abstract mapper for Zend\Db that makes using hydrators and custom entities very simple.
  • ZfcBase\Form\ProvidesEventsForm - Extends Zend\Form and provides the functionality of ZfcBase\EventManager\EventProvider (basically it's a crutch since we can't use traits yet).
  • ZfcBase\EventManager\EventProvider - Abstract class that gives extending classes an event manager and related methods.