nimeso/silverstripe-members

Silverstripe extra member features. Registration page, profile page, send temp password.

Installs: 95

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 2

Forks: 8

Type:silverstripe-module

1.1.0 2015-01-21 03:19 UTC

This package is auto-updated.

Last update: 2024-04-12 18:41:58 UTC


README

A simplified light-weight alternative to the member profiles module. All configuration is handled by developer, rather than in CMS.

Adds various (optional) extra member features. They will not all be enabled by default.

  • Registration page
  • Profile page for updating details.
  • Send temporary password via email.

Registration Page

Becasue the registration page page does not have (or need) a Page model. Add the following director rules to your _config/config.yml file:

Director:
  rules:
    'register//$Action/$ID': 'MemberRegistrationPage_Controller'
MemberRegistrationPage_Controller:
    enabled: true

This will enable registering at mysite.com/profile.

Member Profile Page

Becasue the member profile page does not have (or need) a Page model. To add a profile page to your site, add the following to your _config.php:

Director:
  rules:
    'profile//$Action/$ID': 'MemberProfilePage_Controller'
MemberProfilePage_Controller:
    enabled: true

Once configured, you can edit your profile at mysite.com/profile.

Update Notifications

You can configure front-end member profile updates to be notified to the administrator via email.

Member:
    send_update_notifications: true

Temporary Password Email

This is enabled by default.

CSV Export Fields

This module introduces a way to define export_fields to for CSV exporting in yaml:

Member:
  export_fields:
    FirstName: 'First Name'
    Surname: 'Last Name'
    Organisation.Name: 'Business Name'
    Email: 'Email Address'

Maintainer

Jeremy Shipman, Jedateach, jeremy [at] burnbright.net