netforum xweb configuration.

Experimental project

This is a sandbox project, which contains experimental code for developer use only.

netForum Single Sign On (SSO)

Allows users with netforum profiles to sign in into the Drupal website. This provides basic SSO functionality and will create new users in Drupal if they don’t exist. In addition, this also sets certain user attributes using the netForum SSO Tokens, that will let you create cross-site hyperlinks, allowing users to seamlessly move between the Drupal CMS and Netforum eWeb site.

The netForum xWeb Interface API provides a platform to communicate with the 3rd party Association Management System (AMS) called netForum. xWeb is an XML over SOAP based interface, and this API implementation allows developers to have a central interface for developing based on xWeb.

Requirements

  • This package requires PHP 5.4+
  • Git installed.
  • Composer installed
  • Composer Manager Drupal Module

Installation

  • Download this plugin.
  • Install Composer Manager plugin for drupal. Once installed, replace the contents of the composer.json file located at sites/default/files/composer/composer.json with the following.
{
    "require": {
        "php": ">=5.3.0"
    },
    "config": {
        "autoloader-suffix": "ComposerManager",
        "vendor-dir": "../../../all/libraries/composer"
    },
    "repositories": [
        {
            "type": "vcs",
            "url" : "https://bitbucket.org/fsahsen/netforum-basic.git"
        }
    ],
    "require": {
        "fsahsen/netforum-basic": "~0.1@dev"
    }
}
  • Update your dependency with composer update (You will need ssh access to run composer update command).
  • Contribution Guidelines

    Support follows PSR-2 PHP coding standards, and semantic versioning.
    Please report any issue you find in the issues page. Pull requests are welcome.

    Project information