2017 © Pedro Peláez
 

contao-module member-submission-post-processor

Perform additional actions after registration of a new member in the RSC web system.

image

rsclg/member-submission-post-processor

Perform additional actions after registration of a new member in the RSC web system.

  • Tuesday, February 14, 2017
  • by cliffparnitzky
  • Repository
  • 1 Watchers
  • 0 Stars
  • 0 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

Latest Version on Packagist Installations via composer per month Installations via composer total, (*1)

Contao Extension: RscMemberSubmissionPostProcessor

Perform additional actions after registration of a new member in the RSC web system., (*2)

Installation

Install the extension via composer: rsclg/member-submission-post-processor., (*3)

If you prefer to install it manually, download the latest release here: https://github.com/rsclg/RscMemberSubmissionPostProcessor/releases, (*4)

Database modification

Execute the following database script to ensure Contao to Roundcube connection:, (*5)

-- add the member number as new column, to get an reference value
ALTER TABLE rcb_contacts ADD rsc_member_number INT( 4 ) UNSIGNED;
UPDATE rcb_contacts SET rsc_member_number = (SELECT xt_club_membernumber FROM tl_member WHERE rcb_contacts.name = CONCAT(tl_member.firstname, " ", tl_member.lastname));

-- add view that are expected from contao
CREATE OR REPLACE VIEW rcb2cto_contactgroups (id, name, tstamp) AS SELECT contactgroup_id, name, changed FROM rcb_contactgroups;
CREATE OR REPLACE VIEW rcb2cto_contacts (id, tstamp, name, firstname, lastname, email, member_number, user_id) AS SELECT contact_id, changed, name, firstname, surname, email, rsc_member_number, user_id FROM rcb_contacts WHERE del = 0;
CREATE OR REPLACE VIEW rcb2cto_users (id, name, tstamp) AS SELECT user_id, username, created FROM rcb_users;

Tracker

https://github.com/rsclg/RscMemberSubmissionPostProcessor/issues, (*6)

Compatibility

  • min. Contao version: >= 3.3.0
  • max. Contao version: < 3.6.0

Dependency

This extension is dependent on the following extensions:, (*7)

The Versions

14/02 2017

dev-master

9999999-dev

Perform additional actions after registration of a new member in the RSC web system.

  Sources   Download

LGPL-3.0+

The Requires

 

registration contao member post processor