eye4web / eye4web-zfc-user-pm
Private message system for ZfcUser
Installs: 17 849
Dependents: 0
Suggesters: 0
Security: 0
Stars: 4
Watchers: 5
Forks: 3
Open Issues: 1
Language:JavaScript
Requires
- php: ^7.2|~8.0
- eye4web/eye4web-base: ~0.0.1
- laminas/laminas-serializer: ~2.1|~3.0
- ramsey/uuid: ^3.0|^4.0
- zf-commons/zfc-user: ~3.0.0
Requires (Dev)
- codeclimate/php-test-reporter: 0.*
- phpunit/phpunit: ~4.0.0
- squizlabs/php_codesniffer: ~2.0.0@DEV
- zf-commons/zfc-user-doctrine-orm: ~1.0
Suggests
- zf-commons/zfc-user-doctrine-orm: ZF2 Doctrine ORM module for use with the Doctrine ORM mapper
This package is not auto-updated.
Last update: 2024-10-26 17:08:18 UTC
README
Introduction
Eye4webZfcUserPm is a basic private message module which allows for sending of messages between users.
By default this module works with Doctrine ORM(through the DoctrineORM mapper). It's very easy to add your own mapper, ZendDb for example.
- Create your custom mapper
- 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
- PHP 5.4
- Eye4webBase
- ZfcUser
Soft
- ZfcUserDoctrineORM For use with Doctrine mapper
Installation
With composer
-
Add this project composer.json:
"require": { "eye4web/eye4web-zfc-user-pm": "dev-master" }
-
Now tell composer to download the module by running the command:
$ php composer.phar update
-
Copy config/eye4web.zfcuser.pm.global.php.dist to your autoload folder (
config/autoload/
) -
Import the database schema into your database. A SQL schema is located in
data/schema.sql
-
Enable it in your
application.config.php
file.<?php return array( 'modules' => array( // ... 'Eye4web\ZfcUser\Pm' ), // ... );
Extensions
- Eye4webZfcUserPmFolders - Put conversations into folders
- Eye4webZfcUserPmSearch - Search for conversations
- Eye4webZfcUserPmStar - Star important conversations