anroots/notify

This package is abandoned and no longer maintained. No replacement package was suggested.

A simple Kohana 3 module designed to capture messages from different methods and modules to be displayed later with a unified look and feel.

Installs: 1 152

Dependents: 1

Suggesters: 0

Security: 0

Stars: 4

Watchers: 2

Forks: 4

Open Issues: 0

Type:kohana-module

2.0.1 2012-11-09 11:19 UTC

This package is not auto-updated.

Last update: 2022-02-01 12:22:13 UTC


README

Many Applications and Modules need to deliver messages to the user, and there is no uniformity on how that is done. This is where Notify comes in.

Notify is a simple Kohana 3 module designed to capture messages from different methods and modules to be displayed later with a unified look and feel.

Composer

The module can be installed using Composer. An example composer.json file might look like this.

{
	"require": {
		"anroots/notify":"2.*"
	}
}

To download and install the module (you need to have Composer installed first):

$ composer install
Loading composer repositories with package information
Updating dependencies
  - Installing anroots/notify (2.0)
    Downloading: 100%

Writing lock file
Generating autoload files

Requirements

  • Kohana 3.3 (for PSR-0 compliance, rename class files to lowercase to use with Kohana 3.2 or enable the legacy autoloader in bootstrap.php)
  • PHP 5.4

Authors

The module was originally developed by Ricardo de Luna (https://github.com/kaltar/Notify). This is a fork of that work with some added / changed functionality.