ogogo/ogogo-zfc-user-pm

Private message system for ZfcUser

Installs: 15

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

Language:JavaScript

dev-master / dev-master 2015-04-22 11:06 UTC

This package is not auto-updated.

Last update: 2020-06-16 12:34:20 UTC


README

basic private messages

By default this module works with Doctrine ORM(through the DoctrineORM mapper). It's very easy to add your own mapper, ZendDb for example.

  1. Create your custom mapper
  2. Change the mapper in the config, to point to your custom mapper

Note: This module is meant to be very basic and only contain very basic, common, functionality. More functionality will be available through extensions, please see below.

Functionality

  • Send messages between users
  • Group conversations
  • Delete conversations(not deleted from database, only from user)

Requirements

Hard

Soft

Installation

With composer

  1. Add this project composer.json:

    "require": {
        "ogogo/ogogo-zfc-user-pm": "dev-master"
    }
  2. Now tell composer to download the module by running the command:

    $ php composer.phar update
  3. Copy config/ogogo.zfcuser.pm.global.php.dist to your autoload folder (config/autoload/)

  4. Import the database schema into your database. A SQL schema is located in data/schema.sql

  5. Enable it in your application.config.php file.

    <?php
    return array(
        'modules' => array(
            // ...
            'Ogogo\ZfcUser\Pm'
        ),
        // ...
    );